Searched refs:UP (Results 1 - 25 of 103) sorted by relevance

12345

/external/antlr/antlr-3.4/runtime/Python/antlr3/
H A Dconstants.py52 UP = 3 variable
54 MIN_TOKEN_TYPE = UP+1
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
H A DToken.java36 public static final int UP = 3; field in interface:Token
38 public static final int MIN_TOKEN_TYPE = UP+1;
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
H A DToken.js17 UP: 3,
19 MIN_TOKEN_TYPE: 4, // UP+1,
/external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/
H A DToken.pm20 Readonly my $UP => 3;
21 sub UP { $UP } subroutine
23 Readonly my $MIN_TOKEN_TYPE => $UP + 1;
/external/replicaisland/src/com/replica/replicaisland/
H A DButtonAnimationComponent.java24 public static final int UP = 0; field in class:ButtonAnimationComponent.Animation
54 if (mSprite.getCurrentAnimation() == Animation.UP) {
68 mSprite.playAnimation(Animation.UP);
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/tree/
H A DTreeParser.js15 UP: org.antlr.runtime.Token.UP
51 * corresponding UP node.
61 // current node is a subtree, skip to corresponding UP.
62 // must count nesting level to get right UP
66 !(tokenType===TP.UP && level===0) )
74 else if ( tokenType === TP.UP ) {
78 this.input.consume(); // consume UP
81 /** We have DOWN/UP nodes in the stream that have no line info; override.
106 if ( !org.antlr.lang.isValue(e.token) ) { // could be an UP/DOW
[all...]
H A DCommonTreeNodeStream.js6 * includes pointers to DOWN and UP and EOF nodes.
30 /** Reuse same DOWN, UP navigation nodes unless this is true */
43 this.up = this.adaptor.create(Token.UP, "UP");
81 * Don't do DOWN, UP nodes if its a list (t is isNil).
105 // add UP node if t has children
107 this.addNavigationNode(org.antlr.runtime.Token.UP);
129 /** As we flatten the tree, we use UP, DOWN nodes to represent
145 navNode = this.adaptor.create(org.antlr.runtime.Token.UP, "UP");
[all...]
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/hoistedPredicates/
H A DTParser.h20 UP, enumerator in enum:__anon304
/external/chromium/chrome/browser/ui/views/bookmarks/
H A Dbookmark_bar_view_test.cc280 ui_controls::DOWN | ui_controls::UP,
301 ui_controls::DOWN | ui_controls::UP,
334 ui_controls::DOWN | ui_controls::UP,
352 ui_controls::LEFT, ui_controls::DOWN | ui_controls::UP,
384 ui_controls::DOWN | ui_controls::UP,
401 ui_controls::DOWN | ui_controls::UP,
417 ui_controls::DOWN | ui_controls::UP,
489 ui_controls::DOWN | ui_controls::UP,
506 ui_controls::DOWN | ui_controls::UP, NULL);
519 ui_controls::LEFT, ui_controls::DOWN | ui_controls::UP,
[all...]
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/
H A DTreeParser.as37 public static const UP:int = TokenConstants.UP;
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/DOW
[all...]
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/treeparser/
H A DLangDumpDecl.h20 UP, enumerator in enum:__anon308
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/
H A DSimpleCTP.java10 "<invalid>", "<EOR>", "<DOWN>", "<UP>", "VAR_DEF", "ARG_DEF", "FUNC_HDR", "FUNC_DECL", "FUNC_DEF", "BLOCK", "ID", "EQ", "INT", "FOR", "INT_TYPE", "CHAR", "VOID", "EQEQ", "LT", "PLUS", "WS", "';'", "'('", "','", "')'", "'{'", "'}'"
164 match(input, Token.UP, null);
185 match(input, Token.UP, null);
224 match(input, Token.UP, null);
314 match(input, Token.UP, null);
351 match(input, Token.UP, null);
468 match(input, Token.UP, null);
598 match(input, Token.UP, null);
681 match(input, Token.UP, null);
702 match(input, Token.UP, nul
[all...]
H A DSimpleCTP.h20 UP, enumerator in enum:__anon307
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/output1/
H A DSimpleCTP.java10 "<invalid>", "<EOR>", "<DOWN>", "<UP>", "VAR_DEF", "ARG_DEF", "FUNC_HDR", "FUNC_DECL", "FUNC_DEF", "BLOCK", "ID", "EQ", "INT", "FOR", "INT_TYPE", "CHAR", "VOID", "EQEQ", "LT", "PLUS", "WS", "';'", "'('", "','", "')'", "'{'", "'}'"
164 match(input, Token.UP, null);
185 match(input, Token.UP, null);
224 match(input, Token.UP, null);
314 match(input, Token.UP, null);
351 match(input, Token.UP, null);
468 match(input, Token.UP, null);
598 match(input, Token.UP, null);
681 match(input, Token.UP, null);
702 match(input, Token.UP, nul
[all...]
/external/llvm/utils/lit/lit/
H A DProgressBar.py44 UP = '' #: Move the cursor up one line variable in class:TerminalController
78 BOL=cr UP=cuu1 DOWN=cud1 LEFT=cub1 RIGHT=cuf1
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/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
H A DTreeParser.cs46 public const int UP = TokenTypes.Up; field in class:Antlr.Runtime.Tree.TreeParser
107 * corresponding UP node.
116 // skip to corresponding UP. must count nesting level to get right UP
126 case UP:
140 * We have DOWN/UP nodes in the stream that have no line info; override.
169 if (e.Token == null) { // could be an UP/DOWN node
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
H A DTreeParser.cs48 public const int UP = TokenTypes.Up; field in class:Antlr.Runtime.Tree.TreeParser
117 * corresponding UP node.
127 // skip to corresponding UP. must count nesting level to get right UP
140 case UP:
154 * We have DOWN/UP nodes in the stream that have no line info; override.
188 { // could be an UP/DOWN node
/external/chromium/chrome/browser/automation/
H A Dautomation_provider_gtk.cc121 next_task = new MouseEventTask(next_task, ui_controls::UP);
122 next_task = new MouseEventTask(next_task, ui_controls::UP);
H A Dui_controls.h74 UP = 1, enumerator in enum:ui_controls::MouseButtonState
83 // Same as SendMouseEvents with UP | DOWN.
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
H A DTreeParser.java41 public static final int UP = Token.UP; field in class:TreeParser
98 * corresponding UP node.
108 // current node is a subtree, skip to corresponding UP.
109 // must count nesting level to get right UP
112 while ( tokenType!=Token.EOF && !(tokenType==UP && level==0) ) {
119 else if ( tokenType == UP ) {
123 input.consume(); // consume UP
126 /** We have DOWN/UP nodes in the stream that have no line info; override.
154 if ( e.token==null ) { // could be an UP/DOW
[all...]
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/LL-star/
H A DSimpleCParser.h20 UP, enumerator in enum:__anon303
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/scopes/
H A DSymbolTableParser.h20 UP, enumerator in enum:__anon305
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/treerewrite/
H A DTreeRewriteParser.h20 UP, enumerator in enum:__anon310
/external/chromium/chrome/browser/ui/gtk/
H A Dslide_animator_gtk.h41 UP enumerator in enum:SlideAnimatorGtk::Direction
/external/guava/guava/src/com/google/common/math/
H A DIntMath.java86 case UP:
129 case UP:
217 case UP:
277 case UP:
296 increment = cmpRemToHalfDivisor > 0; // closer to the UP value

Completed in 252 milliseconds

12345