| /external/antlr/runtime/Ruby/test/functional/debugging/ |
| D | debug-mode.rb | 100 lt_events, found = listener.events.partition { |event| event.start_with?( "(look): " ) } 128 [ 'look', '1', '0', '4', 'default', '1', '0', '"a"' ], 129 [ 'look', '1', '0', '4', 'default', '1', '0', '"a"' ], 132 [ 'look', '1', '-1', '-1', 'default', '0', '-1', 'nil' ], 133 [ 'look', '1', '-1', '-1', 'default', '0', '-1', 'nil' ], 159 [ "look", "1", "0", "4", "default", "1", "0", "\"a\"" ], 160 [ "look", "1", "0", "4", "default", "1", "0", "\"a\"" ], 164 [ "look", "1", "2", "4", "default", "1", "2", "\"b\"" ], 165 [ "look", "1", "2", "4", "default", "1", "2", "\"b\"" ], 166 [ "look", "2", "-1", "-1", "default", "0", "-1", "nil" ], [all …]
|
| /external/curl/tests/data/ |
| D | test1309 | 76 Tree look: 128 Tree look: 179 Tree look: 229 Tree look: 278 Tree look: 326 Tree look: 373 Tree look: 419 Tree look: 464 Tree look: 508 Tree look: [all …]
|
| /external/antlr/runtime/Ruby/test/unit/ |
| D | test-trees.rb | 156 stream.look(index + 1).type.should == type 158 stream.look(100).type.should == EOF 175 13.times { stream.look(1); stream.consume } # consume until end 177 stream.look(1).type.should == EOF 178 stream.look(-1).type.should == UP 181 13.times { stream.look(1); stream.consume } # consume until end 183 stream.look(1).type.should == EOF 184 stream.look(-1).type.should == UP 202 stream.look(1).type.should == 107 208 stream.look(1).type.should == val [all …]
|
| D | test-streams.rb | 86 @stream.look(1).should == 'o' 87 @stream.look(2).should == 'h' 88 @stream.look(3).should == "\n" 94 @stream.look(1).should == '!' 95 @stream.look(2).should == "\n" 96 @stream.look(3).should be_nil 223 @stream.look(1).should == 'a' 279 @stream.look.should == ANTLR3::EOF_TOKEN 286 @stream.look(1).type.should == 12 295 @stream.look(1).type.should == 13 [all …]
|
| /external/antlr/tool/src/main/java/org/antlr/analysis/ |
| D | LL1Analyzer.java | 58 /** Used during LOOK to detect computation cycles */ 126 public LookaheadSet LOOK(Rule r) { 153 LookaheadSet look = _FIRST(s, false); in FIRST() local 154 …//System.out.println("< FIRST("+s.enclosingRule.name+") in rule "+s.enclosingRule+"="+look.toStrin… in FIRST() 155 return look; in FIRST() 170 public LookaheadSet LOOK(NFAState s) { in LOOK() method in LL1Analyzer 172 System.out.println("> LOOK("+s+")"); in LOOK() 175 LookaheadSet look = _FIRST(s, true); in LOOK() local 177 if ( grammar.type!=Grammar.LEXER && look.member(Label.EOR_TOKEN_TYPE) ) { in LOOK() 180 f.orInPlace(look); in LOOK() [all …]
|
| /external/antlr/tool/src/main/resources/org/antlr/codegen/templates/Ruby/ |
| D | ASTTreeParser.stg | 29 _save_last_<treeLevel> = _last = @input.look 64 _last = @input.look 69 _last = @input.look 95 _last = @input.look 115 _last = @input.look 130 _last = @input.look 155 _last = @input.look 175 _last = @input.look 192 _last = @input.look 207 _last = @input.look [all …]
|
| /external/cronet/base/tracing/stdlib/chrome/scroll_jank/ |
| D | scroll_jank_cause_map.sql | 25 'things to look for: Browser Main thread (CrBrowserMain) is busy, often ' || 39 'Waiting for a BeginFrame to be sent. Key things to look for: check if ' || 44 'connected to other processes and threads. Key things to look for: ' || 49 'Key things to look for: if the GPU Main thread is busy, and does not ' || 53 'Key things to look for: the toolbar on the Browser may be blocked by ' || 60 'latch again. Key things to look for: whether the event duration before ' || 73 'to look for: whether the event duration before BufferReadyToLatch ' || 80 'Key things to look for: whether StartDrawToBufferAvailable is also ' || 85 'Key things to look for: whether StartDrawToBufferAvailable is also ' ||
|
| /external/perfetto/src/trace_processor/perfetto_sql/stdlib/chrome/scroll_jank/ |
| D | scroll_jank_cause_map.sql | 27 'things to look for: Browser Main thread (CrBrowserMain) is busy, often ' || 41 'Waiting for a BeginFrame to be sent. Key things to look for: check if ' || 46 'connected to other processes and threads. Key things to look for: ' || 51 'Key things to look for: if the GPU Main thread is busy, and does not ' || 55 'Key things to look for: the toolbar on the Browser may be blocked by ' || 62 'latch again. Key things to look for: whether the event duration before ' || 75 'to look for: whether the event duration before BufferReadyToLatch ' || 82 'Key things to look for: whether StartDrawToBufferAvailable is also ' || 87 'Key things to look for: whether StartDrawToBufferAvailable is also ' ||
|
| /external/antlr/runtime/Ruby/lib/antlr3/ |
| D | streams.rb | 90 === consume / look / peek 96 to a recognizer at look-ahead position specified by <tt>k</tt>. For 102 <tt>stream.look(k = 1)</tt> is used to retrieve the full object of interest at 103 look-ahead position specified by <tt>k</tt>. While <tt>peek</tt> provides the 105 <tt>look</tt> provides the <i>full object of concern</i> in the stream. For 112 implemented by some method with a name like <tt>LA(k)</tt> and <tt>look</tt> is 115 un-Ruby-like. Thus, I chose <tt>peek</tt> and <tt>look</tt> to represent a 116 quick-look (peek) and a full-fledged look-ahead operation (look). If this causes 183 # :method: look( k = 1 ) 186 abstract :look [all …]
|
| D | debug.rb | 346 def look( steps = 1 ) method 349 @debug_listener.look( steps, token ) 354 look( steps ).type 417 # so that a GUI can easily track what look/consume events are 446 # triggered by both peek and look calls. The debugger will want to know 448 # what token was seen at that depth. A remote debugger cannot look 449 # ahead into a file it doesn't have so look events must pass the token 452 def look( i, tree ) method 456 # The parser is going to look arbitrarily ahead; mark this location, 463 # After an arbitrairly long look as with a cyclic DFA (or with [all …]
|
| /external/crosvm/devices/src/virtio/fs/ |
| D | multikey.rs | 125 assert_eq!(*m.get(&k1).expect("failed to look up main key"), val); in get() 126 assert_eq!(*m.get_alt(&k2).expect("failed to look up alt key"), val); in get() 147 assert_eq!(*m.get(&new_k1).expect("failed to look up main key"), val2); in update_main_key() 148 assert_eq!(*m.get_alt(&k2).expect("failed to look up alt key"), val2); in update_main_key() 169 assert_eq!(*m.get(&k1).expect("failed to look up main key"), val2); in update_alt_key() 171 *m.get_alt(&new_k2).expect("failed to look up alt key"), in update_alt_key() 191 assert_eq!(*m.get(&k1).expect("failed to look up main key"), val2); in update_value() 192 assert_eq!(*m.get_alt(&k2).expect("failed to look up alt key"), val2); in update_value() 220 assert_eq!(*m.get(&k1).expect("failed to look up main key"), val3); in update_both_keys_main() 222 *m.get_alt(&new_k2).expect("failed to look up alt key"), in update_both_keys_main() [all …]
|
| /external/bazel-skylib/docs/ |
| D | directory_utils_doc.md | 20 | <a id="directory_glob-directory"></a>directory | (DirectoryInfo) The directory to look relative … 44 | <a id="directory_glob_chunk-directory"></a>directory | (DirectoryInfo) The directory to look rel… 45 | <a id="directory_glob_chunk-chunk"></a>chunk | (string) A chunk of a glob to look at. | none | 67 | <a id="directory_single_glob-directory"></a>directory | (DirectoryInfo) The directory to look re… 90 | <a id="get_child-directory"></a>directory | (DirectoryInfo) The directory to look within. | n… 91 | <a id="get_child-name"></a>name | (string) The name of the directory/file to look for. | none… 115 | <a id="get_relative-directory"></a>directory | (DirectoryInfo) The directory to look within. |… 116 | <a id="get_relative-path"></a>path | (string) The path of the directory to look for within it. … 140 | <a id="transitive_entries-directory"></a>directory | (DirectoryInfo) The directory to look at …
|
| /external/libcxxabi/src/demangle/ |
| D | ItaniumDemangle.h | 2226 char look(unsigned Lookahead = 0) { 2335 if (look() == 'N') in parseName() 2337 if (look() == 'Z') in parseName() 2341 if (look() == 'S' && look(1) != 't') { in parseName() 2345 if (look() != 'I') in parseName() 2358 if (look() == 'I') { in parseName() 2431 if (look() == 'U') in parseUnqualifiedName() 2433 else if (look() >= '1' && look() <= '9') in parseUnqualifiedName() 2556 switch (look()) { in parseOperatorName() 2558 switch (look(1)) { in parseOperatorName() [all …]
|
| /external/eigen/cmake/ |
| D | FindBLASEXT.cmake | 129 # look for include path if the BLAS vendor is Intel 187 # look for libs 189 # if Intel 10 64 bit -> look for sequential and multithreaded versions 192 ## look for the sequential version 195 message(STATUS "Look for the sequential version Intel10_64lp_seq") 204 ## look for the multithreaded version 207 message(STATUS "Look for the multithreaded version Intel10_64lp") 229 ## look for the sequential version 238 ## look for the multithreaded version 250 ## look for the sequential version [all …]
|
| /external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Demangle/ |
| D | ItaniumDemangle.h | 2406 char look(unsigned Lookahead = 0) { 2517 if (look() == 'N') in parseName() 2519 if (look() == 'Z') in parseName() 2523 if (look() == 'S' && look(1) != 't') { in parseName() 2527 if (look() != 'I') in parseName() 2540 if (look() == 'I') { in parseName() 2613 if (look() == 'U') in parseUnqualifiedName() 2615 else if (look() >= '1' && look() <= '9') in parseUnqualifiedName() 2659 while (look() == 'T' && in parseUnnamedTypeName() 2660 StringView("yptn").find(look(1)) != StringView::npos) { in parseUnnamedTypeName() [all …]
|
| /external/apache-xml/src/main/java/org/apache/xml/utils/ |
| D | AttList.java | 89 * Look up an attribute's Namespace URI by index. 105 * Look up an attribute's local name by index. 118 * Look up an attribute's qualified name by index. 170 * Look up an attribute's type by Namespace name. 185 * Look up an attribute's value by name. 200 * Look up an attribute's value by Namespace name. 215 * Look up the index of an attribute by Namespace name. 238 * Look up the index of an attribute by raw XML 1.0 name.
|
| /external/apache-xml/src/main/java/org/apache/xml/serializer/utils/ |
| D | AttList.java | 98 * Look up an attribute's Namespace URI by index. 114 * Look up an attribute's local name by index. 127 * Look up an attribute's qualified name by index. 179 * Look up an attribute's type by Namespace name. 194 * Look up an attribute's value by name. 209 * Look up an attribute's value by Namespace name. 224 * Look up the index of an attribute by Namespace name. 247 * Look up the index of an attribute by raw XML 1.0 name.
|
| /external/antlr/runtime/Ruby/lib/antlr3/debug/ |
| D | rule-tracer.rb | 33 input_symbol = @input.look || :EOF 34 @device.puts( " look = %p" % input_symbol ) 48 input_symbol = ( @input.look || :EOF ) 49 @device.puts( " look = %p" % input_symbol )
|
| /external/google-cloud-java/java-datacatalog/proto-google-cloud-datacatalog-v1/src/main/java/com/google/cloud/datacatalog/v1/ |
| D | EntryType.java | 193 * A Looker Look. 194 * For more information, see [Looker Look API] 195 * (https://developers.looker.com/api/explorer/4.0/methods/Look). 198 * <code>LOOK = 18;</code> 200 LOOK(18), enumConstant 365 * A Looker Look. 366 * For more information, see [Looker Look API] 367 * (https://developers.looker.com/api/explorer/4.0/methods/Look). 370 * <code>LOOK = 18;</code> 429 return LOOK; in forNumber()
|
| /external/swiftshader/third_party/llvm-16.0/llvm/include/llvm/Demangle/ |
| D | ItaniumDemangle.h | 2496 char look(unsigned Lookahead = 0) const { 2669 if (look() == 'N') in parseName() 2671 if (look() == 'Z') in parseName() 2681 if (look() == 'I') { in parseName() 2753 if (look() == 'S') { in parseUnscopedName() 2789 if (look() >= '1' && look() <= '9') { in parseUnqualifiedName() 2791 } else if (look() == 'U') { in parseUnqualifiedName() 2803 } else if (look() == 'C' || look() == 'D') { in parseUnqualifiedName() 2869 while (look() == 'T' && in parseUnnamedTypeName() 2870 StringView("yptn").find(look(1)) != StringView::npos) { in parseUnnamedTypeName() [all …]
|
| /external/kernel-headers/original/uapi/linux/ |
| D | if_vlan.h | 43 VLAN_NAME_TYPE_PLUS_VID, /* Name will look like: vlan0005 */ 44 VLAN_NAME_TYPE_RAW_PLUS_VID, /* name will look like: eth1.0005 */ 45 VLAN_NAME_TYPE_PLUS_VID_NO_PAD, /* Name will look like: vlan5 */ 46 VLAN_NAME_TYPE_RAW_PLUS_VID_NO_PAD, /* Name will look like: eth0.5 */
|
| /external/libnl/include/linux-private/linux/ |
| D | if_vlan.h | 43 VLAN_NAME_TYPE_PLUS_VID, /* Name will look like: vlan0005 */ 44 VLAN_NAME_TYPE_RAW_PLUS_VID, /* name will look like: eth1.0005 */ 45 VLAN_NAME_TYPE_PLUS_VID_NO_PAD, /* Name will look like: vlan5 */ 46 VLAN_NAME_TYPE_RAW_PLUS_VID_NO_PAD, /* Name will look like: eth0.5 */
|
| /external/iproute2/include/uapi/linux/ |
| D | if_vlan.h | 42 VLAN_NAME_TYPE_PLUS_VID, /* Name will look like: vlan0005 */ 43 VLAN_NAME_TYPE_RAW_PLUS_VID, /* name will look like: eth1.0005 */ 44 VLAN_NAME_TYPE_PLUS_VID_NO_PAD, /* Name will look like: vlan5 */ 45 VLAN_NAME_TYPE_RAW_PLUS_VID_NO_PAD, /* Name will look like: eth0.5 */
|
| /external/cronet/third_party/libc++abi/src/src/demangle/ |
| D | ItaniumDemangle.h | 2746 char look(unsigned Lookahead = 0) const { 2767 return look() == 'T' && in isTemplateParamDecl() 2768 std::string_view("yptnk").find(look(1)) != std::string_view::npos; in isTemplateParamDecl() 2928 if (look() == 'N') in parseName() 2930 if (look() == 'Z') in parseName() 2940 if (look() == 'I') { in parseName() 3016 if (look() == 'S') { in parseUnscopedName() 3054 if (look() >= '1' && look() <= '9') { in parseUnqualifiedName() 3056 } else if (look() == 'U') { in parseUnqualifiedName() 3068 } else if (look() == 'C' || look() == 'D') { in parseUnqualifiedName() [all …]
|
| /external/perfetto/test/trace_processor/diff_tests/metrics/graphics/ |
| D | android_jank_cuj_query_test.sql | 19 -- First query to look at `binder transaction` on the Main Thread 29 -- Second query to look at `JIT compiling` slices on JIT threadpool 38 --- Third query to look at 'sf binder' slices on SF main thread 48 --- Fourth query to look at 'shader compile' slices on SF RenderEngine
|