Home
last modified time | relevance | path

Searched full:look (Results 1 – 25 of 11440) sorted by relevance

12345678910>>...458

/external/cronet/tot/third_party/rust/chromium_crates_io/vendor/regex-automata-0.4.9/src/util/
Dlook.rs2 Types and routines for working with look-around assertions.
6 * [`Look`] enumerates all of the assertions supported by this crate.
7 * [`LookSet`] provides a way to efficiently store a set of [`Look`] values.
8 * [`LookMatcher`] provides routines for checking whether a `Look` or a
12 // LAMENTATION: Sadly, a lot of the API of `Look` and `LookSet` were basically
15 // in this crate) as free functions, except the `Look` and `LookSet` types
25 /// A look-around assertion.
43 /// Assertions are also called "look-around," "look-behind" and "look-ahead."
44 /// Specifically, some assertions are look-behind (like `^`), other assertions
45 /// are look-ahead (like `$`) and yet other assertions are both look-ahead and
[all …]
/external/cronet/stable/third_party/rust/chromium_crates_io/vendor/regex-automata-0.4.9/src/util/
Dlook.rs2 Types and routines for working with look-around assertions.
6 * [`Look`] enumerates all of the assertions supported by this crate.
7 * [`LookSet`] provides a way to efficiently store a set of [`Look`] values.
8 * [`LookMatcher`] provides routines for checking whether a `Look` or a
12 // LAMENTATION: Sadly, a lot of the API of `Look` and `LookSet` were basically
15 // in this crate) as free functions, except the `Look` and `LookSet` types
25 /// A look-around assertion.
43 /// Assertions are also called "look-around," "look-behind" and "look-ahead."
44 /// Specifically, some assertions are look-behind (like `^`), other assertions
45 /// are look-ahead (like `$`) and yet other assertions are both look-ahead and
[all …]
/external/antlr/runtime/Ruby/test/functional/debugging/
Ddebug-mode.rb100 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/cronet/tot/third_party/rust/chromium_crates_io/vendor/regex-automata-0.4.9/src/util/determinize/
Dmod.rs14 the look-behind assertions that are satisfied by each starting state
48 look::{Look, LookSet},
62 /// also includes any look-behind assertions satisfied by `unit`, in addition
107 // The look-around matcher that our NFA is configured with. We don't in next()
108 // actually use it to match look-around assertions, but we do need its in next()
116 // kind of look-around is used in the DFA. Some ad hoc experiments in next()
125 // Compute look-ahead assertions originating from the current state. Based in next()
129 // we don't enable any look-ahead assertions because we don't know whether in next()
132 // Add look-ahead assertions that are now true based on the current in next()
138 look_have = look_have.insert(Look::EndCRLF); in next()
[all …]
/external/cronet/stable/third_party/rust/chromium_crates_io/vendor/regex-automata-0.4.9/src/util/determinize/
Dmod.rs14 the look-behind assertions that are satisfied by each starting state
48 look::{Look, LookSet},
62 /// also includes any look-behind assertions satisfied by `unit`, in addition
107 // The look-around matcher that our NFA is configured with. We don't in next()
108 // actually use it to match look-around assertions, but we do need its in next()
116 // kind of look-around is used in the DFA. Some ad hoc experiments in next()
125 // Compute look-ahead assertions originating from the current state. Based in next()
129 // we don't enable any look-ahead assertions because we don't know whether in next()
132 // Add look-ahead assertions that are now true based on the current in next()
138 look_have = look_have.insert(Look::EndCRLF); in next()
[all …]
/external/cronet/stable/third_party/rust/chromium_crates_io/vendor/regex-syntax-0.8.5/src/hir/
Dprint.rs174 HirKind::Look(ref look) => match *look { in visit_pre()
175 hir::Look::Start => { in visit_pre()
178 hir::Look::End => { in visit_pre()
181 hir::Look::StartLF => { in visit_pre()
184 hir::Look::EndLF => { in visit_pre()
187 hir::Look::StartCRLF => { in visit_pre()
190 hir::Look::EndCRLF => { in visit_pre()
193 hir::Look::WordAscii => { in visit_pre()
196 hir::Look::WordAsciiNegate => { in visit_pre()
199 hir::Look::WordUnicode => { in visit_pre()
[all …]
Dmod.rs16 equivalent regex pattern string, it is unlikely to look like the original due
146 /// a repetition, a look-around assertion, etc.), where as a `Properties`
199 /// look very different. (And potentially not practically readable by a human.)
369 /// Creates a look-around assertion HIR expression.
371 pub fn look(look: Look) -> Hir { in look() method
372 let props = Properties::look(look); in look()
373 Hir { kind: HirKind::Look(look), props } in look()
593 // Now that it's completely flattened, look for the special case of in alternation()
595 // we look for 'char' first and then bytes. The issue here is that if in alternation()
600 // invalid UTF-8.) So we look for all chars and then all bytes, and in alternation()
[all …]
/external/cronet/tot/third_party/rust/chromium_crates_io/vendor/regex-syntax-0.8.5/src/hir/
Dprint.rs174 HirKind::Look(ref look) => match *look { in visit_pre()
175 hir::Look::Start => { in visit_pre()
178 hir::Look::End => { in visit_pre()
181 hir::Look::StartLF => { in visit_pre()
184 hir::Look::EndLF => { in visit_pre()
187 hir::Look::StartCRLF => { in visit_pre()
190 hir::Look::EndCRLF => { in visit_pre()
193 hir::Look::WordAscii => { in visit_pre()
196 hir::Look::WordAsciiNegate => { in visit_pre()
199 hir::Look::WordUnicode => { in visit_pre()
[all …]
Dmod.rs16 equivalent regex pattern string, it is unlikely to look like the original due
146 /// a repetition, a look-around assertion, etc.), where as a `Properties`
199 /// look very different. (And potentially not practically readable by a human.)
369 /// Creates a look-around assertion HIR expression.
371 pub fn look(look: Look) -> Hir { in look() method
372 let props = Properties::look(look); in look()
373 Hir { kind: HirKind::Look(look), props } in look()
593 // Now that it's completely flattened, look for the special case of in alternation()
595 // we look for 'char' first and then bytes. The issue here is that if in alternation()
600 // invalid UTF-8.) So we look for all chars and then all bytes, and in alternation()
[all …]
/external/curl/tests/data/
Dtest130976 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/
Dtest-trees.rb156 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 …]
Dtest-streams.rb86 @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/resources/org/antlr/codegen/templates/Ruby/
DASTTreeParser.stg29 _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/antlr/tool/src/main/java/org/antlr/analysis/
DLL1Analyzer.java58 /** 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/cronet/tot/base/tracing/stdlib/chrome/scroll_jank/
Dscroll_jank_cause_map.sql27 '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/cronet/stable/base/tracing/stdlib/chrome/scroll_jank/
Dscroll_jank_cause_map.sql27 '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/perfetto/src/trace_processor/perfetto_sql/stdlib/chrome/scroll_jank/
Dscroll_jank_cause_map.sql27 …'This also corresponds to a matching InputLatency::TouchMove. Key ' || 'things to look for: Browse…
39 …'Waiting for a BeginFrame to be sent. Key things to look for: check if ' || 'a fling occurred befo…
45 … but may be ' || 'connected to other processes and threads. Key things to look for: ' || 'check th…
51 …'Key things to look for: if the GPU Main thread is busy, and does not ' || 'release the buffer; sp…
57 'Key things to look for: the toolbar on the Browser may be blocked by ' || 'other tasks.'
63 …ed to wait for another vsync interval to ' || 'latch again. Key things to look for: whether the ev…
69 …ed to wait for another vsync interval to latch again. Key things ' || 'to look for: whether the ev…
75 …'Key things to look for: whether StartDrawToBufferAvailable is also ' || 'present during this Even…
81 …'Key things to look for: whether StartDrawToBufferAvailable is also ' || 'present during this Even…
/external/antlr/runtime/Ruby/lib/antlr3/
Dstreams.rb90 === 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 …]
Ddebug.rb346 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/bazel-skylib/docs/
Ddirectory_utils_doc.md20 | <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/crosvm/devices/src/virtio/fs/
Dmultikey.rs125 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/libcxxabi/src/demangle/
DItaniumDemangle.h2226 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/
DFindBLASEXT.cmake129 # 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/apache-xml/src/main/java/org/apache/xml/utils/
DAttList.java89 * 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/
DAttList.java98 * 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.

12345678910>>...458