/third_party/python/Lib/json/ |
D | encoder.py | 215 markers = {} 217 markers = None 249 markers, self.default, _encoder, self.indent, 254 markers, self.default, _encoder, self.indent, floatstr, 259 def _make_iterencode(markers, _default, _encoder, _indent, _floatstr, argument 281 if markers is not None: 283 if markerid in markers: 285 markers[markerid] = lst 330 if markers is not None: 331 del markers[markerid] [all …]
|
/third_party/gstreamer/gstplugins_bad/gst/jpegformat/ |
D | gstjifmux.c | 236 for (node = self->markers; node; node = g_list_next (node)) { in gst_jif_mux_reset() 240 g_list_free (self->markers); in gst_jif_mux_reset() 241 self->markers = NULL; in gst_jif_mux_reset() 295 self->markers = g_list_prepend (self->markers, m); in gst_jif_mux_parse_image() 300 self->markers = g_list_prepend (self->markers, m); in gst_jif_mux_parse_image() 309 self->markers = g_list_prepend (self->markers, m); in gst_jif_mux_parse_image() 348 self->markers = g_list_reverse (self->markers); in gst_jif_mux_parse_image() 386 file_hdr = self->markers; in gst_jif_mux_mangle_markers() 387 for (node = self->markers; node; node = g_list_next (node)) { in gst_jif_mux_mangle_markers() 496 self->markers = g_list_insert (self->markers, m, 1); in gst_jif_mux_mangle_markers() [all …]
|
/third_party/ffmpeg/libavformat/ |
D | dtsdec.c | 36 int markers[4*16] = {0}; in dts_probe() local 114 markers[marker] ++; in dts_probe() 121 for (i=0; i<FF_ARRAY_ELEMS(markers); i++) { in dts_probe() 122 sum += markers[i]; in dts_probe() 123 if (markers[max] < markers[i]) in dts_probe() 127 if (markers[max] > 3 && p->buf_size / markers[max] < 32*1024 && in dts_probe() 128 markers[max] * 4 > sum * 3 && in dts_probe()
|
D | s337m.c | 88 int markers[3] = { 0 }; in s337m_probe() local 110 markers[i]++; in s337m_probe() 118 for (i = 0; i < FF_ARRAY_ELEMS(markers); i++) { in s337m_probe() 119 sum += markers[i]; in s337m_probe() 120 if (markers[max] < markers[i]) in s337m_probe() 124 if (markers[max] > 3 && markers[max] * 4 > sum * 3) in s337m_probe()
|
/third_party/python/Tools/c-analyzer/c_common/ |
D | tables.py | 12 def parse_markers(markers, default=None): argument 13 if markers is NOT_SET: 15 if not markers: 17 if type(markers) is not str: 18 return markers 19 if markers == markers[0] * len(markers): 20 return [markers] 21 return list(markers) 24 def fix_row(row, **markers): argument 27 empty = parse_markers(markers.pop('empty', ('-',))) [all …]
|
/third_party/openGLES/extensions/EXT/ |
D | EXT_debug_marker.txt | 42 annotate their command stream with markers for discrete events and groups 43 of commands using descriptive text markers. 81 Debug markers provide a method for annotating a command stream with markers 112 Group markers are strictly hierarchical. Group marker sequences may be 113 nested within other group markers but can not overlap. 134 (1) Should the extension provide a method for querying markers? 138 A great deal of the value of debug markers is the 'when' as well as the 139 'what' - seeing the debug markers within the stream of all OpenGL ES 141 stream - it is not available from querying the markers. However, the 142 ability to query markers would make them available to developer tools [all …]
|
/third_party/skia/third_party/externals/opengl-registry/extensions/EXT/ |
D | EXT_debug_marker.txt | 42 annotate their command stream with markers for discrete events and groups 43 of commands using descriptive text markers. 81 Debug markers provide a method for annotating a command stream with markers 112 Group markers are strictly hierarchical. Group marker sequences may be 113 nested within other group markers but can not overlap. 134 (1) Should the extension provide a method for querying markers? 138 A great deal of the value of debug markers is the 'when' as well as the 139 'what' - seeing the debug markers within the stream of all OpenGL ES 141 stream - it is not available from querying the markers. However, the 142 ability to query markers would make them available to developer tools [all …]
|
/third_party/PyYAML/examples/yaml-highlight/ |
D | yaml_hl.py | 62 markers = [] 69 markers.append([token.start_mark.index, +2, number, substitutions[cls, -1]]) 71 markers.append([token.end_mark.index, -2, number, substitutions[cls, +1]]) 77 markers.append([event.start_mark.index, +1, number, substitutions[cls, -1]]) 79 markers.append([event.end_mark.index, -1, number, substitutions[cls, +1]]) 80 markers.sort() 81 markers.reverse() 84 for index, weight1, weight2, substitution in markers:
|
/third_party/skia/third_party/externals/dawn/docs/ |
D | debug_markers.md | 5 Debugging markers are exposed through this API: 20 Debug markers on D3D12 are implemented with the [PIX Event Runtime](https://blogs.msdn.microsoft.co… 30 D3D12 debug markers have been tested with [Microsoft PIX](https://devblogs.microsoft.com/pix/) and … 36 Debug markers on Vulkan are implemented with [VK_EXT_debug_utils](https://www.khronos.org/registry/… 40 Vulkan markers have been tested with [RenderDoc](https://renderdoc.org/). 44 Debug markers on Metal are used with the XCode debugger. 50 Debug markers on OpenGL are not implemented and will result in a silent no-op. This is due to low a…
|
/third_party/flutter/skia/third_party/externals/dawn/docs/ |
D | DebugMarkers.md | 5 Debugging markers are exposed through this API: 20 Debug markers on D3D12 are implemented with the [PIX Event Runtime](https://blogs.msdn.microsoft.co… 30 D3D12 debug markers have been tested with [Microsoft PIX](https://devblogs.microsoft.com/pix/) and … 36 Debug markers on Vulkan are implemented with [VK_EXT_debug_marker](https://www.khronos.org/registry… 40 Vulkan markers have been tested with [RenderDoc](https://renderdoc.org/). 44 Debug markers on Metal are used with the XCode debugger. 50 Debug markers on OpenGL are not implemented and will result in a silent no-op. This is due to low a…
|
/third_party/flutter/flutter/dev/manual_tests/lib/ |
D | overlay_geometry.dart | 137 Map<MarkerType, Offset> markers = <MarkerType, Offset>{}; 159 for (MarkerType type in markers.keys) { 160 final Offset oldPosition = markers[type]; 161 markers[type] = oldPosition.translate(0.0, dy); 170 markers[MarkerType.touch] = globalPosition; 172 markers[MarkerType.topLeft] = box.localToGlobal(const Offset(0.0, 0.0)); 174 markers[MarkerType.bottomRight] = box.localToGlobal(Offset(size.width, size.height)); 199 for (MarkerType type in markers.keys) 200 layers.add(Marker(type: type, position: markers[type]));
|
/third_party/typescript/tests/cases/fourslash/ |
D | completionsClassPropertiesAssignment.ts | 23 const markers = ["1", "2", "3", "4", "5", "6"]; constant 26 verify.completions({ marker: markers, exact }); 28 for (let marker of markers) {
|
D | tryCatchFinallyFormating.ts | 29 var markers = [ variable 39 markers.forEach((marker) => {
|
D | deleteReopenedModule.ts | 13 var codeLength = test.markers()[1].position - test.markers()[0].position;
|
/third_party/skia/third_party/externals/sfntly/java/src/com/google/typography/font/sfntly/sample/sfview/ |
D | ViewableTaggedData.java | 29 private List<Marker> markers = new ArrayList<Marker>(); field in ViewableTaggedData 33 ViewableTaggedData(List<Marker> markers) { in ViewableTaggedData() argument 34 this(markers, new Style(), new Metrics()); in ViewableTaggedData() 37 private ViewableTaggedData(List<Marker> markers, Style style, Metrics metrics) { in ViewableTaggedData() argument 38 this.markers = markers; in ViewableTaggedData() 117 for (Marker m : markers) { in draw() 137 for (Marker m : markers) { in measure() 144 private final List<Marker> markers = new ArrayList<Marker>(); field in ViewableTaggedData.TaggedDataImpl 160 markers.add(new RangeStart(range)); in tagRange() 162 markers.add(new RangeEnd(range)); in tagRange() [all …]
|
/third_party/flutter/skia/third_party/externals/sfntly/java/src/com/google/typography/font/sfntly/sample/sfview/ |
D | ViewableTaggedData.java | 29 private List<Marker> markers = new ArrayList<Marker>(); field in ViewableTaggedData 33 ViewableTaggedData(List<Marker> markers) { in ViewableTaggedData() argument 34 this(markers, new Style(), new Metrics()); in ViewableTaggedData() 37 private ViewableTaggedData(List<Marker> markers, Style style, Metrics metrics) { in ViewableTaggedData() argument 38 this.markers = markers; in ViewableTaggedData() 117 for (Marker m : markers) { in draw() 137 for (Marker m : markers) { in measure() 144 private final List<Marker> markers = new ArrayList<Marker>(); field in ViewableTaggedData.TaggedDataImpl 160 markers.add(new RangeStart(range)); in tagRange() 162 markers.add(new RangeEnd(range)); in tagRange() [all …]
|
/third_party/python/Modules/ |
D | _json.c | 52 PyObject *markers; member 65 {"markers", T_OBJECT, offsetof(PyEncoderObject, markers), READONLY, "markers"}, 1241 PyObject *markers, *defaultfn, *encoder, *indent, *key_separator; in encoder_new() local 1246 &markers, &defaultfn, &encoder, &indent, in encoder_new() 1251 if (markers != Py_None && !PyDict_Check(markers)) { in encoder_new() 1254 "not %.200s", Py_TYPE(markers)->tp_name); in encoder_new() 1262 s->markers = markers; in encoder_new() 1280 Py_INCREF(s->markers); in encoder_new() 1447 if (s->markers != Py_None) { in encoder_listencode_obj() 1452 has_key = PyDict_Contains(s->markers, ident); in encoder_listencode_obj() [all …]
|
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/ |
D | RBNFChinesePostProcessor.java | 60 final String[][] markers = { in process() local 84 String[] m = markers[format]; in process() 99 String ling = markers[format][3]; in process()
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
D | RBNFChinesePostProcessor.java | 59 final String[][] markers = { in process() local 83 String[] m = markers[format]; in process() 98 String ling = markers[format][3]; in process()
|
/third_party/python/Doc/howto/ |
D | instrumentation.rst | 20 As of Python 3.6, CPython can be built with embedded "markers", also 27 DTrace markers are implementation details of the CPython interpreter. 33 Enabling the static markers 37 build CPython with the embedded markers for SystemTap, the SystemTap 73 On Linux, you can verify if the SystemTap static markers are present in 200 Static SystemTap markers 204 markers directly. This requires you to explicitly state the binary file 257 For a :option:`--enable-shared` build of CPython, the markers are contained within the 274 Available static markers 349 details of the static markers. [all …]
|
/third_party/vk-gl-cts/external/vulkan-docs/src/chapters/VK_NV_device_diagnostic_checkpoints/ |
D | device_diagnostic_checkpoints.adoc | 45 number of checkpoint markers available or queried, as described below. 49 If pname:pCheckpointData is `NULL`, then the number of checkpoint markers 56 If pname:pCheckpointDataCount is less than the number of checkpoint markers 104 number of checkpoint markers available or queried, as described below. 108 If pname:pCheckpointData is `NULL`, then the number of checkpoint markers 116 If pname:pCheckpointDataCount is less than the number of checkpoint markers
|
D | device_diagnostic_checkpoints.txt | 48 number of checkpoint markers available or queried, as described below. 52 If pname:pCheckpointData is `NULL`, then the number of checkpoint markers 59 If pname:pCheckpointDataCount is less than the number of checkpoint markers 107 number of checkpoint markers available or queried, as described below. 111 If pname:pCheckpointData is `NULL`, then the number of checkpoint markers 119 If pname:pCheckpointDataCount is less than the number of checkpoint markers
|
/third_party/flutter/skia/modules/canvaskit/ |
D | skottie_bindings.cpp | 150 JSArray markers = emscripten::val::array(); in getMarkers() local 151 for (const auto& m : fPropMgr->markers()) { in getMarkers() 156 markers.call<void>("push", marker); in getMarkers() 158 return markers; in getMarkers()
|
/third_party/mesa3d/src/mesa/vbo/ |
D | vbo_exec_api.c | 75 const bool last_begin = exec->vtx.markers[last].begin; in vbo_exec_wrap_buffers() 81 exec->vtx.markers[last].end = 0; in vbo_exec_wrap_buffers() 87 !exec->vtx.markers[last].end) { in vbo_exec_wrap_buffers() 116 exec->vtx.markers[0].begin = 0; in vbo_exec_wrap_buffers() 120 exec->vtx.markers[0].begin = last_begin; in vbo_exec_wrap_buffers() 847 exec->vtx.markers[i].begin = 1; in _mesa_Begin() 893 &exec->vtx.markers[prev].end, in try_vbo_merge() 894 exec->vtx.markers[cur].begin, in try_vbo_merge() 895 exec->vtx.markers[cur].end)) in try_vbo_merge() 935 exec->vtx.markers[last].end = 1; in _mesa_End() [all …]
|
/third_party/vk-gl-cts/external/vulkan-docs/src/appendices/ |
D | VK_NV_device_diagnostic_checkpoints.txt | 20 This extension allows applications to insert markers in the command stream 24 implementation for the last markers to cross specific implementation-defined
|