HomeSort by relevance Sort by last modified time
    Searched defs:look (Results 1 - 25 of 68) sorted by null

1 2 3

  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/streams/
interactive.rb 112 def look( i = 1 ) method in class:ANTLR3.InteractiveStringStream
  /prebuilts/go/darwin-x86/test/fixedbugs/
bug227.go 17 func look(s string) (string, bool) { func
  /prebuilts/go/linux-x86/test/fixedbugs/
bug227.go 17 func look(s string) (string, bool) { func
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/debug/
trace-event-listener.rb 57 def look( i, tree ) method in class:ANTLR3.Debug.TraceEventListener
event-hub.rb 159 def look( i, tree ) method in class:ANTLR3.Debug.EventHub
161 listener.look( i, tree )
socket.rb 137 def look( i, item ) method in class:ANTLR3.Debug.EventSocketProxy
143 transmit "%s\t%i\t%s", :look, i, serialize_token( item )
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/tree/
debug.rb 125 def look( i = 1 ) method in class:ANTLR3.Debug.TreeNodeStream
130 @debug_listener.look( i, node )
139 @debug_listener.look( i, node )
  /external/llvm/utils/lit/lit/
ShUtil.py 19 def look(self): member in class:ShLexer
51 c = self.look()
164 if self.look().isspace():
182 def look(self): member in class:ShParser
198 tok = self.look()
227 while self.look() == ('|',):
235 while self.look():
239 if not self.look():
  /external/swiftshader/third_party/LLVM/utils/lit/lit/
ShUtil.py 18 def look(self): member in class:ShLexer
50 c = self.look()
161 if self.look().isspace():
179 def look(self): member in class:ShParser
195 tok = self.look()
222 if self.look() == ('!',):
227 while self.look() == ('|',):
235 while self.look():
239 if not self.look():
TclUtil.py 35 def look(self): member in class: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 class:TclExecCommand
199 if self.look() is None
    [all...]
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
profile.rb 205 # tracks the maximum look value for the current decision
299 def look( i, token ) method in class:ANTLR3.Profile.Profiler
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 cause
411 def look( k = 1 ) # for 1.9 method in class:ANTLR3.that.StringStream
446 def look( k = 1 ) # for 1.8 method in class:ANTLR3.that.StringStream
932 def look( k = 1 ) method in class:ANTLR3.that.CommonTokenStream
    [all...]
debug.rb 346 def look( steps = 1 ) method in class:ANTLR3.Debug.TokenStream
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 in class:ANTLR3.Debug.EventListener
456 # The parser is going to look arbitrarily ahead; mark this location,
463 # After an arbitrairly long look as with a cyclic DFA (or wit
    [all...]
  /external/libvorbis/lib/
floor0.c 59 vorbis_look_floor0 *look=(vorbis_look_floor0 *)i; local
60 if(look){
62 if(look->linearmap){
64 if(look->linearmap[0])_ogg_free(look->linearmap[0]);
65 if(look->linearmap[1])_ogg_free(look->linearmap[1]);
67 _ogg_free(look->linearmap);
69 memset(look,0,sizeof(*look));
147 vorbis_look_floor0 *look=_ogg_calloc(1,sizeof(*look)); local
158 vorbis_look_floor0 *look=(vorbis_look_floor0 *)i; local
195 vorbis_look_floor0 *look=(vorbis_look_floor0 *)i; local
    [all...]
backends.h 33 vorbis_look_floor *(*look) (vorbis_dsp_state *,vorbis_info_floor *); member in struct:__anon24517
91 vorbis_look_residue *(*look) (vorbis_dsp_state *, member in struct:__anon24520
  /frameworks/rs/tests/java_api/VrDemo/src/com/example/android/rs/vr/engine/
Transform.java 123 public void look(char dir, TriData tri, int w, int h) { method in class:Transform
124 mViewMatrix.look(dir, tri, mVoxelDim, w, h);
178 float[] look = {0, 0, 1}; local
179 m.mult3v(look, ret);
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
TreeParser.java 103 Object look = input.LT(1); local
104 if ( input.getTreeAdaptor().getChildCount(look)==0 ) {
111 int tokenType = input.getTreeAdaptor().getType(look);
114 look = input.LT(1);
115 tokenType = input.getTreeAdaptor().getType(look);
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
LL1Analyzer.java 58 /** Used during LOOK to detect computation cycles */
126 public LookaheadSet LOOK(Rule r) {
153 LookaheadSet look = _FIRST(s, false); local
154 //System.out.println("< FIRST("+s.enclosingRule.name+") in rule "+s.enclosingRule+"="+look.toString(this.grammar));
155 return look;
170 public LookaheadSet LOOK(NFAState s) {
172 System.out.println("> LOOK("+s+")");
175 LookaheadSet look = _FIRST(s, true); local
177 if ( grammar.type!=Grammar.LEXER && look.member(Label.EOR_TOKEN_TYPE) ) {
180 f.orInPlace(look);
    [all...]
  /external/python/cpython2/PC/
getpathp.c 16 * We look in the registry for "application paths" - that is, sub-keys
657 char *look = buf - 1; /* 'buf' is at the end of the buffer */ local
660 char *lookEnd = look;
661 /* 'look' will end up one character before the
665 while (look >= module_search_path && *look != DELIM)
666 look--;
667 nchars = lookEnd-look;
668 strncpy(lookBuf, look+1, nchars);
676 if (look < module_search_path
    [all...]
  /toolchain/binutils/binutils-2.25/bfd/
verilog.c 146 verilog_data_list_type **look; local
148 for (look = &tdata->head;
149 *look != NULL && (*look)->where < entry->where;
150 look = &(*look)->next)
152 entry->next = *look;
153 *look = entry;
  /frameworks/rs/tests/java_api/VrDemo/src/com/example/android/rs/vr/
VrView.java 298 mState1.mTransform.look(looks[last_look], mState1.mCubeScreen, getWidth(), getHeight());
311 mState1.mTransform.look(ViewMatrix.DOWN_AT, mState1.mCubeScreen, getWidth(), getHeight());
315 protected void look(int k) { method in class:VrView
316 mState1.mTransform.look(looks[k], mState1.mCubeVolume, getWidth(), getHeight());
336 public void setLook(String look) {
337 int[][] color = mState1.mVolume.getLookColor(look);
338 int[][] opacity = mState1.mVolume.getLookOpactiy(look);
  /bionic/libc/upstream-netbsd/lib/libc/regex/
engine.c 979 sopno look; local
1056 for (look = 1;
1057 OP(s = g->strip[pc+look]) != O_CH;
1058 look += OPND(s))
1060 FWD(aft, aft, look);
  /device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/h/
AParser.cpp 179 // if demand_look, then I guess we don't look backwards for these tokens.
263 look(int k) function in class:ANTLRParser
304 labase = (labase+1)&(LLk-1); // labase maintained even if !demand look
319 labase = (labase+1)&(LLk-1); // labase maintained even if !demand look
344 labase = (labase+1)&(LLk-1); // labase maintained even if !demand look
356 labase = (labase+1)&(LLk-1); // labase maintained even if !demand look
554 for (i=1; i<=k; i++) /* look for offending token */
618 labase = (labase+1)&(LLk-1); // labase maintained even if !demand look
644 labase = (labase+1)&(LLk-1); // labase maintained even if !demand look
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Other/Maintained/Tools/Pccts/h/
AParser.cpp 170 // if demand_look, then I guess we don't look backwards for these tokens.
254 look(int k) function in class:ANTLRParser
294 labase = (labase+1)&(LLk-1); // labase maintained even if !demand look
309 labase = (labase+1)&(LLk-1); // labase maintained even if !demand look
333 labase = (labase+1)&(LLk-1); // labase maintained even if !demand look
345 labase = (labase+1)&(LLk-1); // labase maintained even if !demand look
523 for (i=1; i<=k; i++) /* look for offending token */
587 labase = (labase+1)&(LLk-1); // labase maintained even if !demand look
613 labase = (labase+1)&(LLk-1); // labase maintained even if !demand look
  /external/guice/extensions/persist/lib/
antlr-2.7.5h3.jar 

Completed in 3514 milliseconds

1 2 3