Home
last modified time | relevance | path

Searched refs:UP (Results 1 – 25 of 166) sorted by relevance

1234567

/external/chromium/chrome/browser/ui/views/bookmarks/
Dbookmark_bar_view_test.cc280 ui_controls::DOWN | ui_controls::UP, in DoTestOnMessageLoop()
301 ui_controls::DOWN | ui_controls::UP, in Step2()
334 ui_controls::DOWN | ui_controls::UP, in DoTestOnMessageLoop()
352 ui_controls::LEFT, ui_controls::DOWN | ui_controls::UP, in Step2()
384 ui_controls::DOWN | ui_controls::UP, in DoTestOnMessageLoop()
401 ui_controls::DOWN | ui_controls::UP, in Step2()
417 ui_controls::DOWN | ui_controls::UP, in Step3()
489 ui_controls::DOWN | ui_controls::UP, in DoTestOnMessageLoop()
506 ui_controls::DOWN | ui_controls::UP, NULL); in Step2()
519 ui_controls::LEFT, ui_controls::DOWN | ui_controls::UP, in Step3()
[all …]
/external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/
DToken.pm20 Readonly my $UP => 3;
21 sub UP { $UP } method
23 Readonly my $MIN_TOKEN_TYPE => $UP + 1;
/external/antlr/antlr-3.4/runtime/ObjC/Framework/test/runtime/token/
DANTLRCommonTokenTest.m33 token.text = @"<UP>";
36 STAssertNotNil(token.text, @"Token text was nil, was expecting <UP>");
37 …STAssertTrue([token.text isEqualToString:@"<UP>"], @"Token text was not <UP> was instead: %@", tok…
43 ANTLRCommonToken *token = [[ANTLRCommonToken newToken:ANTLRTokenTypeUP Text:@"<UP>"] retain];
46 STAssertNotNil(token.text, @"Token text was nil, was expecting <UP>");
47 …STAssertTrue([token.text isEqualToString:@"<UP>"], @"Token text was not <UP> was instead: %@", tok…
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/
DTreeParser.as37 public static const UP:int = TokenConstants.UP; constant in org.antlr.runtime.tree.TreeParser
81 * corresponding UP node.
91 // current node is a subtree, skip to corresponding UP.
92 // must count nesting level to get right UP
95 while ( tokenType!=TokenConstants.EOF && !(tokenType==UP && level==0) ) {
102 else if ( tokenType == UP ) {
106 input.consume(); // consume UP
109 /** We have DOWN/UP nodes in the stream that have no line info; override.
133 if ( e.token==null ) { // could be an UP/DOWN node
DCommonTreeNodeStream.as39 * includes pointers to DOWN and UP and EOF nodes.
62 * This buffer includes pointers to DOWN, UP, and EOF nodes.
81 /** Reuse same DOWN, UP navigation nodes unless this is true */
105 up = this.adaptor.createFromType(TokenConstants.UP, "UP");
126 * Don't do DOWN, UP nodes if its a list (t is isNil).
149 // add UP node if t has children
151 addNavigationNode(TokenConstants.UP);
171 /** As we flatten the tree, we use UP, DOWN nodes to represent
187 navNode = adaptor.createFromType(TokenConstants.UP, "UP");
399 if ( adaptor.getType(stop)==TokenConstants.UP ) {
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/output1/
DSimpleCTP.java164 match(input, Token.UP, null); in declaration()
185 match(input, Token.UP, null); in declaration()
224 match(input, Token.UP, null); in variable()
314 match(input, Token.UP, null); in functionHeader()
351 match(input, Token.UP, null); in formalParameter()
468 match(input, Token.UP, null); in block()
598 match(input, Token.UP, null); in forStat()
681 match(input, Token.UP, null); in expr()
702 match(input, Token.UP, null); in expr()
723 match(input, Token.UP, null); in expr()
[all …]
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/
DSimpleCTP.java164 match(input, Token.UP, null); in declaration()
185 match(input, Token.UP, null); in declaration()
224 match(input, Token.UP, null); in variable()
314 match(input, Token.UP, null); in functionHeader()
351 match(input, Token.UP, null); in formalParameter()
468 match(input, Token.UP, null); in block()
598 match(input, Token.UP, null); in forStat()
681 match(input, Token.UP, null); in expr()
702 match(input, Token.UP, null); in expr()
723 match(input, Token.UP, null); in expr()
[all …]
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/tree/
DTreeParser.js15 UP: org.antlr.runtime.Token.UP property
66 !(tokenType===TP.UP && level===0) )
74 else if ( tokenType === TP.UP ) {
DCommonTreeNodeStream.js43 this.up = this.adaptor.create(Token.UP, "UP");
107 this.addNavigationNode(org.antlr.runtime.Token.UP);
145 navNode = this.adaptor.create(org.antlr.runtime.Token.UP, "UP");
355 if ( this.adaptor.getType(stop)===org.antlr.runtime.Token.UP ) {
/external/replicaisland/src/com/replica/replicaisland/
DButtonAnimationComponent.java24 public static final int UP = 0; field in ButtonAnimationComponent.Animation
54 if (mSprite.getCurrentAnimation() == Animation.UP) { in update()
68 mSprite.playAnimation(Animation.UP); in update()
/external/antlr/antlr-3.4/runtime/Python/antlr3/
Dconstants.py52 UP = 3 variable
54 MIN_TOKEN_TYPE = UP+1
/external/llvm/utils/lit/lit/
DProgressBar.py44 UP = '' #: Move the cursor up one line variable in TerminalController
214 if not (self.term.CLEAR_EOL and self.term.UP and self.term.BOL):
222 self.BOL = self.term.UP + self.term.BOL
256 self.BOL + self.term.UP + self.term.CLEAR_EOL +
266 self.term.UP + self.term.CLEAR_EOL +
267 self.term.UP + self.term.CLEAR_EOL)
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
DToken.java36 public static final int UP = 3; field
38 public static final int MIN_TOKEN_TYPE = UP+1;
/external/antlr/antlr-3.4/runtime/Ruby/test/unit/
Dtest-trees.rb155 [101, DOWN, 102, DOWN, 103, UP, 104, UP, EOF].each_with_index do |type, index|
178 stream.look(-1).type.should == UP
184 stream.look(-1).type.should == UP
207 [107, UP, UP, 104].each do |val|
212 [105, UP].each do |val|
217 stream.look(-1).type.should == UP
297 buffer << type.to_s unless type == DOWN or type == UP
356 stream.look(1).type.should == UP
395 stream.look(1).type.should == UP
398 stream.look(1).type.should == UP
[all …]
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
DTreeParser.java41 public static final int UP = Token.UP; field in TreeParser
112 while ( tokenType!=Token.EOF && !(tokenType==UP && level==0) ) { in matchAny()
119 else if ( tokenType == UP ) { in matchAny()
DBufferedTreeNodeStream.java135 up = adaptor.create(Token.UP, "UP"); in BufferedTreeNodeStream()
165 addNavigationNode(Token.UP); in fillBuffer()
201 navNode = adaptor.create(Token.UP, "UP"); in addNavigationNode()
441 if ( adaptor.getType(stop)==Token.UP ) { in toString()
/external/chromium/chrome/browser/automation/
Dui_controls_win.cc285 last_event = (state & UP) ? WM_LBUTTONUP : WM_LBUTTONDOWN; in SendMouseEventsImpl()
291 last_event = (state & UP) ? WM_MBUTTONUP : WM_MBUTTONDOWN; in SendMouseEventsImpl()
297 last_event = (state & UP) ? WM_RBUTTONUP : WM_RBUTTONDOWN; in SendMouseEventsImpl()
315 if ((state & UP) && !::SendInput(1, &input, sizeof(INPUT))) in SendMouseEventsImpl()
366 return SendMouseEventsImpl(type, UP | DOWN, NULL); in SendMouseClick()
Dautomation_provider_gtk.cc121 next_task = new MouseEventTask(next_task, ui_controls::UP); in WindowSimulateDrag()
122 next_task = new MouseEventTask(next_task, ui_controls::UP); in WindowSimulateDrag()
/external/antlr/antlr-3.4/tool/src/test/java/org/antlr/test/
DTestTreeNodeStream.java159 assertEquals(Token.UP, ((Tree)stream.LT(6)).getType()); in testLT()
161 assertEquals(Token.UP, ((Tree)stream.LT(8)).getType()); in testLT()
228 assertEquals(Token.UP, ((Tree)stream.LT(1)).getType()); in testMarkRewindInMiddle()
230 assertEquals(Token.UP, ((Tree)stream.LT(1)).getType()); in testMarkRewindInMiddle()
237 assertEquals(Token.UP, ((Tree)stream.LT(1)).getType()); in testMarkRewindInMiddle()
240 assertEquals(Token.UP, ((Tree)stream.LT(-1)).getType()); in testMarkRewindInMiddle()
366 if ( !(type==Token.DOWN||type==Token.UP) ) { in toNodesOnlyString()
/external/antlr/antlr-3.4/runtime/ObjC/Framework/
DANTLRTreeParser.m117 * corresponding UP node.
128 // current node is a subtree, skip to corresponding UP.
129 // must count nesting level to get right UP
143 [input consume]; // consume UP
146 /** We have DOWN/UP nodes in the stream that have no line info; override.
173 if ( e.token == nil ) { // could be an UP/DOWN node
/external/antlr/antlr-3.4/runtime/Python/unittests/
Dtesttree.py9 from antlr3 import CommonToken, UP, DOWN, EOF
168 self.failUnlessEqual(UP, stream.LT(6).getType())
170 self.failUnlessEqual(UP, stream.LT(8).getType())
197 self.failUnlessEqual(UP, stream.LT(-1).getType()) #TODO: remove?
206 self.failUnlessEqual(UP, stream.LT(-1).getType()) #TODO: remove?
238 self.failUnlessEqual(UP, stream.LT(1).getType())
240 self.failUnlessEqual(UP, stream.LT(1).getType())
247 self.failUnlessEqual(UP, stream.LT(1).getType())
250 self.failUnlessEqual(UP, stream.LT(-1).getType())
376 101, DOWN, 102, DOWN, 103, 106, DOWN, 107, UP, UP, 104, 105, UP]
[all …]
/external/guava/guava/src/com/google/common/math/
DIntMath.java86 case UP: in log2()
129 case UP: in log10()
217 case UP: in sqrt()
277 case UP: in divide()
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
DTokenConstants.as8 public static const UP:int = 3; constant in org.antlr.runtime.TokenConstants
10 public static const MIN_TOKEN_TYPE:int = UP+1;
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
DTreeParser.cs48 public const int UP = TokenTypes.Up; field in Antlr.Runtime.Tree.TreeParser
140 case UP: in MatchAny()
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
DTreeParser.cs46 public const int UP = TokenTypes.Up; field in Antlr.Runtime.Tree.TreeParser
126 case UP: in MatchAny()

1234567