Home
last modified time | relevance | path

Searched refs:look (Results 1 – 25 of 2125) sorted by relevance

12345678910>>...85

/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/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Demangle/
DItaniumDemangle.h2404 char look(unsigned Lookahead = 0) {
2515 if (look() == 'N') in parseName()
2517 if (look() == 'Z') in parseName()
2521 if (look() == 'S' && look(1) != 't') { in parseName()
2525 if (look() != 'I') in parseName()
2538 if (look() == 'I') { in parseName()
2611 if (look() == 'U') in parseUnqualifiedName()
2613 else if (look() >= '1' && look() <= '9') in parseUnqualifiedName()
2657 while (look() == 'T' && in parseUnnamedTypeName()
2658 StringView("yptn").find(look(1)) != StringView::npos) { in parseUnnamedTypeName()
[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/antlr/tool/src/main/java/org/antlr/analysis/
DLL1Analyzer.java153 LookaheadSet look = _FIRST(s, false); in FIRST() local
155 return look; in FIRST()
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()
182 look = f; in LOOK()
185 else if ( grammar.type==Grammar.LEXER && look.member(Label.EOT) ) { in LOOK()
188 look = new LookaheadSet(IntervalSet.COMPLETE_SET); in LOOK()
191 System.out.println("< LOOK("+s+")="+look.toString(grammar)); in LOOK()
193 return look; in LOOK()
/external/cronet/buildtools/third_party/libc++abi/trunk/src/demangle/
DItaniumDemangle.h2504 char look(unsigned Lookahead = 0) const {
2677 if (look() == 'N') in parseName()
2679 if (look() == 'Z') in parseName()
2689 if (look() == 'I') { in parseName()
2761 if (look() == 'S') { in parseUnscopedName()
2797 if (look() >= '1' && look() <= '9') { in parseUnqualifiedName()
2799 } else if (look() == 'U') { in parseUnqualifiedName()
2811 } else if (look() == 'C' || look() == 'D') { in parseUnqualifiedName()
2877 while (look() == 'T' && in parseUnnamedTypeName()
2878 StringView("yptn").find(look(1)) != StringView::npos) { in parseUnnamedTypeName()
[all …]
/external/antlr/runtime/JavaScript/src/org/antlr/runtime/tree/
DTreeParser.js56 var look = this.input.LT(1);
57 if ( this.input.getTreeAdaptor().getChildCount(look)===0 ) {
64 tokenType = this.input.getTreeAdaptor().getType(look);
69 look = this.input.LT(1);
70 tokenType = this.input.getTreeAdaptor().getType(look);
/external/antlr/runtime/Ruby/lib/antlr3/
Dstreams.rb411 def look( k = 1 ) # for 1.9 singletonMethod in ANTLR3.StringStream
446 def look( k = 1 ) # for 1.8 singletonMethod in ANTLR3.StringStream
518 alias >> look
926 tk = look( k ) and return( tk.type )
932 def look( k = 1 ) method in ANTLR3.StringStream.CommonTokenStream
937 alias >> look
1026 while token = look and token.type != EOF
1072 tk = look( -1 ) and string << " #{ tk.inspect } <--"
1073 tk = look( 1 ) and string << " --> #{ tk.inspect }"
Ddebug.rb346 def look( steps = 1 ) method
349 @debug_listener.look( steps, token )
354 look( steps ).type
452 def look( i, tree ) method
Derror.rb117 @token = @symbol = input.look
125 @symbol = @input.look
132 @symbol = @input.look
177 while prior_node = nodes.look( i )
Drecognizers.rb805 @input.look
1189 if symbol = @input.look and symbol != EOF then symbol = symbol.inspect
1196 if symbol = @input.look and symbol != EOF then symbol = symbol.inspect
1285 current = @input.look
1286 current = @input.look( -1 ) if current == ANTLR3::EOF_TOKEN
1316 super( rule_name, rule_index, @input.look.inspect )
1320 super( rule_name, rule_index, @input.look.inspect )
/external/llvm/utils/lit/lit/
DShUtil.py19 def look(self): member in ShLexer
51 c = self.look()
164 if self.look().isspace():
182 def look(self): member in ShParser
198 tok = self.look()
227 while self.look() == ('|',):
235 while self.look():
239 if not self.look():
/external/python/cpython2/PC/
Dgetpathp.c657 char *look = buf - 1; /* 'buf' is at the end of the buffer */ in calculate_path() local
660 char *lookEnd = look; in calculate_path()
665 while (look >= module_search_path && *look != DELIM) in calculate_path()
666 look--; in calculate_path()
667 nchars = lookEnd-look; in calculate_path()
668 strncpy(lookBuf, look+1, nchars); in calculate_path()
676 if (look < module_search_path) in calculate_path()
678 look--; in calculate_path()
/external/antlr/runtime/Java/src/main/java/org/antlr/runtime/tree/
DTreeParser.java108 Object look = input.LT(1); in matchAny() local
109 if ( input.getTreeAdaptor().getChildCount(look)==0 ) { in matchAny()
116 int tokenType = input.getTreeAdaptor().getType(look); in matchAny()
119 look = input.LT(1); in matchAny()
120 tokenType = input.getTreeAdaptor().getType(look); in matchAny()
/external/libjpeg-turbo/
Djdhuff.h198 register int nb, look; \
207 look = PEEK_BITS(HUFF_LOOKAHEAD); \
208 if ((nb = (htbl->lookup[look] >> HUFF_LOOKAHEAD)) <= HUFF_LOOKAHEAD) { \
210 result = htbl->lookup[look] & ((1 << HUFF_LOOKAHEAD) - 1); \
/external/tensorflow/tensorflow/core/api_def/base_api/
Dapi_def_TensorScatterSub.pbtxt51 In Python, this scatter subtract operation would look like this:
61 The resulting tensor would look like this:
69 In Python, this scatter add operation would look like this:
82 The resulting tensor would look like this:
/external/antlr/runtime/Ruby/lib/antlr3/tree/
Ddebug.rb125 def look( i = 1 ) method in ANTLR3.Debug.TreeNodeStream
130 @debug_listener.look( i, node )
139 @debug_listener.look( i, node )
/external/antlr/runtime/Ruby/lib/antlr3/debug/
Drule-tracer.rb33 input_symbol = @input.look || :EOF
48 input_symbol = ( @input.look || :EOF )
/external/selinux/mcstrans/
DTODO3 In compute_raw_from_trans look for conflicting bit patterns and report errors.
5 In emit_whitespace look at whitespace characters for any regex special character and escape them.
/external/python/cpython3/PC/
Dgetpathp.c923 const wchar_t *look = buf - 1; /* 'buf' is at the end of the buffer */ in calculate_module_search_path() local
926 const wchar_t *lookEnd = look; in calculate_module_search_path()
931 while (look >= start_buf && *look != DELIM) in calculate_module_search_path()
932 look--; in calculate_module_search_path()
933 nchars = lookEnd-look; in calculate_module_search_path()
934 wcsncpy(lookBuf, look+1, nchars); in calculate_module_search_path()
942 if (look < start_buf) { in calculate_module_search_path()
945 look--; in calculate_module_search_path()
/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
204 ## look for the multithreaded version
229 ## look for the sequential version
238 ## look for the multithreaded version
250 ## look for the sequential version
259 ## look for the multithreaded version
/external/rust/crates/grpcio-sys/grpc/.github/ISSUE_TEMPLATE/
Dquestion.md12 For general questions and troubleshooting, please ask/look for answers at StackOverflow, with "grpc…
14 For questions that specifically need to be answered by gRPC team members, please ask/look for answe…
/external/antlr/runtime/ActionScript/project/src/org/antlr/runtime/tree/
DTreeParser.as86 var look:Object = input.LT(1);
87 if ( input.treeAdaptor.getChildCount(look)==0 ) {
94 var tokenType:int = input.treeAdaptor.getType(look);
97 look = input.LT(1);
98 tokenType = input.treeAdaptor.getType(look);

12345678910>>...85