/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/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:__anon17828 91 vorbis_look_residue *(*look) (vorbis_dsp_state *, member in struct:__anon17831
|
res0.c | 81 vorbis_look_residue0 *look=(vorbis_look_residue0 *)i; local 86 for(j=0;j<look->parts;j++){ 89 if(look->training_data[k][j]){ 92 codebook *statebook=look->partbooks[j][k]; 95 sprintf(buffer,"res_sub%d_part%d_pass%d.vqd",look->submap,j,k); 99 fprintf(of,"%d:%ld\n",l,look->training_data[k][j][l]); 104 look->training_min[k][j],look->training_max[k][j]);*/ 106 _ogg_free(look->training_data[k][j]); 107 look->training_data[k][j]=NULL 270 vorbis_look_residue0 *look=_ogg_calloc(1,sizeof(*look)); local 416 vorbis_look_residue0 *look=(vorbis_look_residue0 *)vl; local 483 vorbis_look_residue0 *look=(vorbis_look_residue0 *)vl; local 543 vorbis_look_residue0 *look=(vorbis_look_residue0 *)vl; local 662 vorbis_look_residue0 *look=(vorbis_look_residue0 *)vl; local 807 vorbis_look_residue0 *look=(vorbis_look_residue0 *)vl; local [all...] |
/frameworks/rs/java/tests/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);
|
ViewMatrix.java | 213 double[] look = {0, 0, 0};
local 217 v.setLookPoint(look);
261 public void look(char dir, TriData tri, float[] voxelDim, int w, int h) {
method in class:ViewMatrix
|
/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...] |
/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/java/tests/VrDemo/src/com/example/android/rs/vr/ |
VrView.java | 299 mState1.mTransform.look(looks[last_look], mState1.mCubeScreen, getWidth(), getHeight()); 312 mState1.mTransform.look(ViewMatrix.DOWN_AT, mState1.mCubeScreen, getWidth(), getHeight()); 316 protected void look(int k) { method in class:VrView 317 mState1.mTransform.look(looks[k], mState1.mCubeVolume, getWidth(), getHeight()); 337 public void setLook(String look) { 338 int[][] color = mState1.mVolume.getLookColor(look); 339 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);
|
/ndk/sources/host-tools/ndk-stack/regex/ |
engine.c | 849 sopno look; local 924 for (look = 1; 925 OP(s = g->strip[pc+look]) != O_CH; 926 look += OPND(s)) 928 FWD(aft, aft, look);
|
/external/guice/extensions/persist/lib/ |
antlr-2.7.5h3.jar | |
/prebuilts/tools/common/m2/repository/antlr/antlr/2.7.7/ |
antlr-2.7.7.jar | |
/external/opencv3/3rdparty/jinja2/ |
lexer.py | 318 def look(self): member in class:TokenStream 319 """Look at the next token.""" 628 # is the operator rule. do this only if the end tags look
|