Searched defs:UP (Results 1 - 25 of 32) sorted by path

12

/external/antlr/antlr-3.4/lib/
H A Dantlr-3.4-complete.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/antlr/ org/antlr/analysis/ org/antlr/codegen/ org/ ...
/external/antlr/antlr-3.4/runtime/C/include/
H A Dantlr3commontreenodestream.h90 /// As we flatten the tree, we use UP, DOWN nodes to represent
170 ANTLR3_COMMON_TREE UP; member in struct:ANTLR3_COMMON_TREE_NODE_STREAM_struct
183 /// This buffer includes pointers to DOWN, UP, and EOF nodes.
196 /// If set to ANTLR3_TRUE then the navigation nodes UP, DOWN are
/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/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/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/hoistedPredicates/
H A DTParser.h20 UP, enumerator in enum:__anon304
/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/simplecTreeParser/
H A DSimpleCParser.h20 UP, enumerator in enum:__anon306
H A DSimpleCTP.h20 UP, enumerator in enum:__anon307
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/treeparser/
H A DLangDumpDecl.h20 UP, enumerator in enum:__anon308
H A DLangParser.h20 UP, enumerator in enum:__anon309
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/treerewrite/
H A DTreeRewriteParser.h20 UP, enumerator in enum:__anon310
/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/antlr/antlr-3.4/runtime/Python/antlr3/
H A Dconstants.py52 UP = 3 variable
54 MIN_TOKEN_TYPE = UP+1
H A Dtree.py43 from antlr3.constants import UP, DOWN, EOF, INVALID_TOKEN_TYPE namespace
1704 As we flatten the tree, we use UP, DOWN nodes to represent
1760 includes pointers to DOWN and UP and EOF nodes.
1819 self.up = adaptor.createFromType(UP, "UP")
1827 # This buffer includes pointers to DOWN, UP, and EOF nodes.
1848 # Reuse same DOWN, UP navigation nodes unless this is true
1868 Don't do DOWN, UP nodes if its a list (t is isNil).
1890 # add UP node if t has children
1892 self.addNavigationNode(UP)
[all...]
/external/antlr/antlr-3.4/runtime/Python/unittests/
H A Dtesttree.py9 from antlr3 import CommonToken, UP, DOWN, EOF namespace
168 self.failUnlessEqual(UP, stream.LT(6).getType())
170 self.failUnlessEqual(UP, stream.LT(8).getType())
179 # Sequence of types: 101 DN 102 DN 103 106 DN 107 UP UP 104 105 UP EOF
197 self.failUnlessEqual(UP, stream.LT(-1).getType()) #TODO: remove?
206 self.failUnlessEqual(UP, stream.LT(-1).getType()) #TODO: remove?
212 # Sequence of types: 101 DN 102 DN 103 106 DN 107 UP UP 10
[all...]
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
H A DLabel.java108 public static final int UP = org.antlr.runtime.Token.UP; field in class:Label
/external/chromium/chrome/browser/autocomplete/
H A Dautocomplete_edit.h357 UP, // The control key is not depressed. enumerator in enum:AutocompleteEditModel::ControlKeyState
/external/chromium/chrome/browser/automation/
H A Dui_controls.h74 UP = 1, enumerator in enum:ui_controls::MouseButtonState
83 // Same as SendMouseEvents with UP | DOWN.
/external/chromium/chrome/browser/ui/gtk/
H A Dslide_animator_gtk.h41 UP enumerator in enum:SlideAnimatorGtk::Direction
/external/chromium/chrome/browser/ui/views/tabs/
H A Dside_tab_strip.cc76 UP, enumerator in enum:__anon2584::ScrollButton::Type
137 scroll_up_button_ = new ScrollButton(this, ScrollButton::UP);
/external/chromium/chrome/common/extensions/docs/examples/extensions/app_launcher/
H A Dpopup.js163 UP : 38,
176 case keys.UP:
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.swt.gtk.linux.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 439 milliseconds

12