Home
last modified time | relevance | path

Searched refs:markers (Results 1 – 25 of 90) sorted by relevance

1234

/OK3568_Linux_fs/buildroot/dl/qt5location/git/examples/location/mapviewer/map/
H A DRectangleItem.qml62 function setGeometry(markers, index){
63 …topLeft.latitude = Math.max(markers[index].coordinate.latitude, markers[index + 1].coordinate.lati…
64 …topLeft.longitude = Math.min(markers[index].coordinate.longitude, markers[index + 1].coordinate.lo…
65 …bottomRight.latitude = Math.min(markers[index].coordinate.latitude, markers[index + 1].coordinate.…
66 …bottomRight.longitude = Math.max(markers[index].coordinate.longitude, markers[index + 1].coordinat…
H A DMapComponent.qml60 property variant markers
62 …ty int markerCounter: 0 // counter for total amount of markers. Resets to 0 when number of markers
144 var count = map.markers.length
146 map.removeMapItem(map.markers[i])
147 map.markers[i].destroy()
149 map.markers = []
165 var count = map.markers.length
172 //update list of markers
175 myArray.push(markers[i])
178 markers = myArray
[all …]
H A DCircleItem.qml63 function setGeometry(markers, index){
64 center.latitude = markers[index].coordinate.latitude
65 center.longitude = markers[index].coordinate.longitude
66 radius= center.distanceTo(markers[index + 1].coordinate)
H A DImageItem.qml61 function setGeometry(markers, index) {
62 coordinate.latitude = markers[index].coordinate.latitude
63 coordinate.longitude = markers[index].coordinate.longitude
H A DPolylineItem.qml62 function setGeometry(markers, index){
63 for (var i = index; i<markers.length; i++){
64 addCoordinate(markers[i].coordinate)
H A DPolygonItem.qml63 function setGeometry(markers, index){
64 for (var i = index; i<markers.length; i++){
65 addCoordinate(markers[i].coordinate)
/OK3568_Linux_fs/yocto/poky/bitbake/lib/progressbar/
H A Dwidgets.py197 def __init__(self, markers='|/-\\'): argument
198 self.markers = markers
205 if pbar.finished: return self.markers[0]
207 self.curmark = (self.curmark + 1) % len(self.markers)
208 return self.markers[self.curmark]
/OK3568_Linux_fs/buildroot/dl/sox/git/src/
H A Dsmp.c53 struct marker markers[8]; /* markers */ member
93 if (lsx_readbuf(ft, trailer->markers[i].name, MARKERLEN) != MARKERLEN) in readtrailer()
98 trailer->markers[i].name[MARKERLEN] = 0; in readtrailer()
99 lsx_readdw(ft, &(trailer->markers[i].position)); in readtrailer()
136 strcpy(trailer->markers[i].name, " "); in settrailer()
137 trailer->markers[i].position = ~0u; in settrailer()
161 if (lsx_writes(ft, trailer->markers[i].name) == SOX_EOF) in writetrailer()
166 lsx_writedw(ft, trailer->markers[i].position); in writetrailer()
/OK3568_Linux_fs/kernel/scripts/dtc/
H A Dyamltree.c32 static void yaml_propval_int(yaml_emitter_t *emitter, struct marker *markers, char *data, int len, … in yaml_propval_int() argument
36 int off, start_offset = markers->offset; in yaml_propval_int()
66 m = markers; in yaml_propval_int()
116 struct marker *m = prop->val.markers; in yaml_propval()
H A Ddata.c12 m = d.markers; in data_free()
132 struct marker **mp = &d.markers; in data_append_markers()
144 struct marker *m2 = d2.markers; in data_merge()
152 d2.markers = NULL; /* So data_free() doesn't clobber them */ in data_merge()
H A Dtreesource.c167 struct marker *m = prop->val.markers; in guess_value_type()
199 struct marker *m = prop->val.markers; in write_propval()
222 dummy_marker.next = prop->val.markers; in write_propval()
/OK3568_Linux_fs/kernel/Documentation/userspace-api/media/v4l/
H A Dext-ctrls-jpeg.rst56 markers (m = 0..7). The purpose of these markers is to additionally
62 markers will not be inserted.
83 Specify which JPEG markers are included in compressed stream. This
H A Dvidioc-g-jpegcomp.rst40 markers control.
89 - See :ref:`jpeg-markers`. Deprecated. If
96 .. _jpeg-markers:
/OK3568_Linux_fs/u-boot/scripts/dtc/
H A Dtreesource.c68 struct marker *m = val.markers; in write_propval_string()
141 struct marker *m = val.markers; in write_propval_cells()
171 struct marker *m = val.markers; in write_propval_bytes()
199 struct marker *m = prop->val.markers; in write_propval()
H A Ddata.c27 m = d.markers; in data_free()
145 struct marker **mp = &d.markers; in data_append_markers()
157 struct marker *m2 = d2.markers; in data_merge()
165 d2.markers = NULL; /* So data_free() doesn't clobber them */ in data_merge()
/OK3568_Linux_fs/kernel/arch/riscv/mm/
H A Dptdump.c56 const struct addr_marker *markers; member
82 .markers = address_markers,
96 .markers = efi_addr_markers,
283 .marker = pinfo->markers, in ptdump_walk()
/OK3568_Linux_fs/kernel/scripts/
H A Dkallsyms.c391 unsigned int *markers; in write_src() local
460 markers = malloc(sizeof(unsigned int) * ((table_cnt + 255) / 256)); in write_src()
461 if (!markers) { in write_src()
471 markers[i >> 8] = off; in write_src()
484 printf("\t.long\t%u\n", markers[i]); in write_src()
487 free(markers); in write_src()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/examples/location/mapviewer/
H A Dmapviewer.qml294 mapPopupMenu.markersCount = map.markers.length
330 markerPopupMenu.markersCount = map.markers.length
339 "coordinate": map.markers[map.currentMarker].coordinate}})
346 map.markers[map.currentMarker].coordinate = coordinate;
358 …map.coordinatesCaptured(map.markers[map.currentMarker].coordinate.latitude, map.markers[map.curren…
368 var coordinate1 = map.markers[currentMarker].coordinate;
369 var coordinate2 = map.markers[currentMarker+1].coordinate;
/OK3568_Linux_fs/yocto/poky/meta/lib/oeqa/utils/
H A Dlogparser.py29markers = ("PASS:", "FAIL:", "SKIP:", "BEGIN:", "END:", "DURATION:", "ERROR: Exit", "TIMEOUT:")
38 if not line.startswith(markers):
/OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-support/lcov/files/
H A D0001-geninfo-Add-intermediate-text-format-support.patch445 + # Get data on exclusion markers and checksums if requested
547 -# Scan specified source code file for exclusion markers and return
550 +# Scan specified source code file for exclusion markers and checksums. Return
607 +# Scan specified source code files for exclusion markers and return
633 + warn("WARNING: some exclusion markers may be ignored\n");
658 - # Add to collection if there are markers
664 - warn("WARNING: some exclusion markers may be ignored\n");
668 # Skip if no markers were found
/OK3568_Linux_fs/kernel/arch/arm/include/asm/
H A Dptdump.h18 const struct addr_marker *markers; member
/OK3568_Linux_fs/kernel/arch/arm64/include/asm/
H A Dptdump.h20 const struct addr_marker *markers; member
/OK3568_Linux_fs/yocto/poky/meta-skeleton/recipes-kernel/hello-mod/files/
H A DMakefile13 rm -f Module.markers Module.symvers modules.order
/OK3568_Linux_fs/u-boot/test/py/
H A Dpytest.ini9 markers = key
/OK3568_Linux_fs/buildroot/package/openlayers/
H A DConfig.in5 page. It can display map tiles, vector data and markers

1234