/external/curl/tests/data/ |
D | test1309 | 79 Tree look: 131 Tree look: 182 Tree look: 232 Tree look: 281 Tree look: 329 Tree look: 376 Tree look: 422 Tree look: 467 Tree look: 511 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/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/swiftshader/third_party/llvm-7.0/llvm/lib/Demangle/ |
D | ItaniumDemangle.cpp | 2027 char look(unsigned Lookahead = 0) { in look() function 2135 if (look() == 'N') in parseName() 2137 if (look() == 'Z') in parseName() 2141 if (look() == 'S' && look(1) != 't') { in parseName() 2145 if (look() != 'I') in parseName() 2158 if (look() == 'I') { in parseName() 2223 if (look() == 'U') in parseUnqualifiedName() 2225 else if (look() >= '1' && look() <= '9') in parseUnqualifiedName() 2343 switch (look()) { in parseOperatorName() 2345 switch (look(1)) { in parseOperatorName() [all …]
|
/external/swiftshader/third_party/LLVM/utils/lit/lit/ |
D | TclUtil.py | 35 def look(self): member in TclLexer 81 elif c == '\\' and self.look() in '{}': 113 if self.look().isspace() or self.look() == ';': 125 elif c == '$' and not self.at_end() and (self.look().isalpha() or 126 self.look() == '{'): 145 if self.at_end() or self.look().isspace(): 154 c = self.look() 178 def look(self): member in TclExecCommand 199 if self.look() is None: 233 next = self.look()
|
D | ShUtil.py | 18 def look(self): member in ShLexer 50 c = self.look() 161 if self.look().isspace(): 179 def look(self): member in ShParser 195 tok = self.look() 222 if self.look() == ('!',): 227 while self.look() == ('|',): 235 while self.look(): 239 if not self.look():
|
/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/antlr/tool/src/main/java/org/antlr/analysis/ |
D | LL1Analyzer.java | 153 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/swiftshader/third_party/llvm-7.0/llvm/utils/lit/lit/ |
D | ShUtil.py | 19 def look(self): member in ShLexer 53 c = self.look() 182 if self.look().isspace(): 200 def look(self): member in ShParser 216 tok = self.look() 245 while self.look() == ('|',): 253 while self.look(): 257 if not self.look():
|
/external/antlr/runtime/Ruby/lib/antlr3/ |
D | streams.rb | 411 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 }"
|
D | debug.rb | 346 def look( steps = 1 ) method 349 @debug_listener.look( steps, token ) 354 look( steps ).type 452 def look( i, tree ) method
|
/external/antlr/runtime/JavaScript/src/org/antlr/runtime/tree/ |
D | TreeParser.js | 56 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/llvm/utils/lit/lit/ |
D | ShUtil.py | 19 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/ |
D | getpathp.c | 657 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/ |
D | TreeParser.java | 108 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/ |
D | jdhuff.h | 192 register int nb, look; \ 201 look = PEEK_BITS(HUFF_LOOKAHEAD); \ 202 if ((nb = (htbl->lookup[look] >> HUFF_LOOKAHEAD)) <= HUFF_LOOKAHEAD) { \ 204 result = htbl->lookup[look] & ((1 << HUFF_LOOKAHEAD) - 1); \
|
/external/guice/extensions/persist/lib/ |
D | antlr-2.7.5h3.jar | ... )
public void generate ()
public antlr.Lookahead look (int)
public java.lang.String toString ... |
/external/tensorflow/tensorflow/core/api_def/base_api/ |
D | api_def_TensorScatterAdd.pbtxt | 51 In Python, this scatter add operation would look like this: 62 The resulting tensor would look like this: 70 In Python, this scatter add operation would look like this: 84 The resulting tensor would look like this:
|
D | api_def_TensorScatterSub.pbtxt | 51 In Python, this scatter subtract operation would look like this: 62 The resulting tensor would look like this: 70 In Python, this scatter add operation would look like this: 84 The resulting tensor would look like this:
|
/external/antlr/runtime/Ruby/lib/antlr3/tree/ |
D | debug.rb | 125 def look( i = 1 ) method in ANTLR3.Debug.TreeNodeStream 130 @debug_listener.look( i, node ) 139 @debug_listener.look( i, node )
|
/external/tensorflow/tensorflow/lite/g3doc/guide/ |
D | faq.md | 3 If you don't find an answer to your question here, please look through our 31 take a look at the question on 46 look for the inputs and outputs in the graph. To visualize a `.pb` file, use the 89 look at our [Python Interpreter example](../convert/python_api.md) that generates 107 For a deeper understanding of different optimization methods, look at 126 on the interpreter. Or take a look at our 134 For a more in-depth discussion on how to optimize performance, take a look at
|
/external/antlr/runtime/Ruby/lib/antlr3/debug/ |
D | rule-tracer.rb | 33 input_symbol = @input.look || :EOF 48 input_symbol = ( @input.look || :EOF )
|
/external/python/cpython3/PC/ |
D | getpathp.c | 925 const wchar_t *look = buf - 1; /* 'buf' is at the end of the buffer */ in calculate_module_search_path() local 928 const wchar_t *lookEnd = look; in calculate_module_search_path() 933 while (look >= start_buf && *look != DELIM) in calculate_module_search_path() 934 look--; in calculate_module_search_path() 935 nchars = lookEnd-look; in calculate_module_search_path() 936 wcsncpy(lookBuf, look+1, nchars); in calculate_module_search_path() 944 if (look < start_buf) { in calculate_module_search_path() 947 look--; in calculate_module_search_path()
|
/external/eigen/cmake/ |
D | FindBLASEXT.cmake | 128 # look for include path if the BLAS vendor is Intel 186 # look for libs 188 # if Intel 10 64 bit -> look for sequential and multithreaded versions 191 ## look for the sequential version 203 ## look for the multithreaded version 228 ## look for the sequential version 237 ## look for the multithreaded version 249 ## look for the sequential version 258 ## look for the multithreaded version
|