Searched refs:look (Results 1 - 25 of 71) sorted by relevance

123

/external/jmonkeyengine/engine/src/core/com/jme3/scene/control/
H A DBillboardControl.java53 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
[all...]
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/tree/
H A 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/llvm/utils/lit/lit/
H A DTclUtil.py35 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() i
[all...]
H A DShUtil.py18 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():
/external/antlr/antlr-3.4/runtime/Ruby/test/unit/
H A 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(
[all...]
H A 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(
[all...]
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
H A DLL1Analyzer.java153 LookaheadSet look = _FIRST(s, false);
154 //System.out.println("< FIRST("+s.enclosingRule.name+") in rule "+s.enclosingRule+"="+look.toString(this.grammar));
155 return look;
175 LookaheadSet look = _FIRST(s, true);
177 if ( grammar.type!=Grammar.LEXER && look.member(Label.EOR_TOKEN_TYPE) ) {
180 f.orInPlace(look);
182 look = f;
183 //look.orInPlace(FOLLOW(s.enclosingRule));
185 else if ( grammar.type==Grammar.LEXER && look.member(Label.EOT) ) {
187 //look
[all...]
/external/jpeg/
H A Djdhuff.h178 { register int nb, look; \
186 look = PEEK_BITS(HUFF_LOOKAHEAD); \
187 if ((nb = htbl->look_nbits[look]) != 0) { \
189 result = htbl->look_sym[look]; \
/external/qemu/distrib/jpeg-6b/
H A Djdhuff.h178 { register int nb, look; \
186 look = PEEK_BITS(HUFF_LOOKAHEAD); \
187 if ((nb = htbl->look_nbits[look]) != 0) { \
189 result = htbl->look_sym[look]; \
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/debug/
H A Drule-tracer.rb33 input_symbol = @input.look || :EOF
34 @device.puts( " look = %p" % input_symbol )
48 input_symbol = ( @input.look || :EOF )
49 @device.puts( " look = %p" % input_symbol )
H A Devent-hub.rb159 def look( i, tree ) method in class:ANTLR3.Debug.EventHub
161 listener.look( i, tree )
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/
H A 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);
/external/dbus/dbus/
H A Ddbus-sockets-win.h51 #error This does not look like Win32 and the Microsoft C library
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
H A DTreeParser.java103 Object look = input.LT(1);
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/runtime/Ruby/lib/antlr3/tree/
H A Ddebug.rb125 def look( i = 1 ) method in class:ANTLR3.Debug.TreeNodeStream
130 @debug_listener.look( i, node )
139 @debug_listener.look( i, node )
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
H A DTreeParser.cs117 int look = input.LA(1);
118 if (look == DOWN) {
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
H A DTreeParser.cs128 int look = input.LA( 1 );
129 if ( look == DOWN )
/external/antlr/antlr-3.4/runtime/Ruby/test/functional/parser/
H A Dll-star.rb29 * Use ANTLRWorks to see the look use (step by Location)
30 * and look for blue tokens in the input window pane. :)
H A Dbacktracking.rb54 * fixed look; k=2 made a few extra thousand lines. ;)
119 : { is_type_name?(@input.look(1).text)}? IDENTIFIER
/external/antlr/antlr-3.4/runtime/Ruby/test/functional/lexer/
H A Dfilter-mode.rb48 * ever match since k=1 look in the QID loop of '.' will make it loop.
182 * ever match since k=1 look in the QID loop of '.' will make it loop.
/external/openssl/crypto/des/times/
H A Dusparc.cc14 actual 'speed' numbers look better which is a realistic version of
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
H A Dstreams.rb90 === 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)
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...]
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/streams/
H A Dinteractive.rb112 def look( i = 1 ) method in class:ANTLR3.InteractiveStringStream
/external/libvpx/examples/includes/geshi/geshi/
H A Dcss.php29 * * Re-look at keywords - possibly to make several CSS language
H A Dmpasm.php24 * Must take a look to dsPIC instructions.

Completed in 288 milliseconds

123