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

  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/streams/
interactive.rb 112 def look( i = 1 ) method in class:ANTLR3.InteractiveStringStream
  /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/jmonkeyengine/engine/src/core/com/jme3/scene/control/
BillboardControl.java 53 private Vector3f look; field in class:BillboardControl
85 look = new Vector3f();
149 look.set(camera.getLocation()).subtractLocal(
153 // The xzp vector is the projection of the look vector on the xz plane
154 xzp.set(look.x, 0, look.z);
161 look.normalizeLocal();
163 float cosp = look.dot(xzp);
167 orient.set(0, 1, xzp.x * -look.y);
171 orient.set(1, 2, look.y)
    [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...]
tree.rb 136 look, adaptor = @input.look, @input.tree_adaptor
137 if adaptor.child_count( look ) == 0
178 super( rule_name, rule_index, @input.look )
182 super( rule_name, rule_index, @input.look )
953 of the next node. #look returns the next full tree node.
963 abstract :look
1052 def look( k = 1 ) method in class:ANTLR3.CommonTree.TreeAdaptor.CommonTreeNodeStream
1062 look
1096 @adaptor.type_of look( i
    [all...]
  /external/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/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...]
  /bionic/libc/regex/
engine.c 847 sopno look; local
922 for (look = 1;
923 OP(s = g->strip[pc+look]) != O_CH;
924 look += OPND(s))
926 FWD(aft, aft, look);
  /ndk/sources/host-tools/ndk-stack/regex/
engine.c 847 sopno look; local
922 for (look = 1;
923 OP(s = g->strip[pc+look]) != O_CH;
924 look += OPND(s))
926 FWD(aft, aft, look);
  /cts/tools/signature-tools/lib/
antlr-2.7.7.jar 
  /frameworks/base/core/java/android/text/
DynamicLayout.java 212 int look = TextUtils.indexOf(text, '\n', where + after); local
213 if (look < 0)
214 look = len;
216 look++; // we want the index after the \n
218 int change = look - (where + after);
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
Grammar.java 369 * early when we look for prec rules.
485 * and look for synpreds because that is the only state target whose
1218 LookaheadSet look = altLook[alt]; local
    [all...]
  /external/antlr/antlr-3.4/lib/
antlr-3.4-complete.jar 
  /prebuilt/common/antlr/
antlr-3.4-complete.jar 
  /prebuilt/common/groovy/
groovy-all-1.7.0.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.swt.gtk.linux.x86_3.6.1.v3657a.jar 
org.eclipse.swt.win32.win32.x86_3.6.1.v3657a.jar 

Completed in 389 milliseconds