HomeSort by relevance Sort by last modified time
    Searched refs:Down (Results 1 - 25 of 42) sorted by null

1 2

  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
TokenTypes.cs 41 public const int Down = 2;
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
TokenConstants.cs 59 public const int Down = 2;
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime.Tests/
ITreeNodeStreamFixture.cs 180 Assert.AreEqual(Token.Down, ((ITree)stream.LT(2)).Type);
182 Assert.AreEqual(Token.Down, ((ITree)stream.LT(4)).Type);
304 Assert.AreEqual(Token.Down, ((ITree)stream.LT(1)).Type);
310 Assert.AreEqual(Token.Down, ((ITree)stream.LT(1)).Type);
314 Assert.AreEqual(Token.Down, ((ITree)stream.LT(1)).Type);
407 Assert.AreEqual(Token.Down, ((ITree)stream.LT(1)).Type);
452 Assert.AreEqual(Token.Down, ((ITree)stream.LT(1)).Type);
462 Assert.AreEqual(Token.Down, ((ITree)stream.LT(1)).Type);
509 Assert.AreEqual(Token.Down, ((ITree)stream.LT(1)).Type);
522 Assert.AreEqual(Token.Down, ((ITree)stream.LT(1)).Type)
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
BufferedTreeNodeStream.cs 46 * includes pointers to DOWN and UP and EOF nodes.
115 protected object down; field in class:Antlr.Runtime.Tree.BufferedTreeNodeStream
120 * This buffer includes pointers to DOWN, UP, and EOF nodes.
125 * of interest for reverseIndexing. Slows us down a wee bit to
139 /** <summary>Reuse same DOWN, UP navigation nodes unless this is true</summary> */
165 down = adaptor.Create(TokenTypes.Down, "DOWN");
248 * Don't do DOWN, UP nodes if its a list (t is isNil).
261 // add DOWN node if t has childre
    [all...]
TreeIterator.cs 39 * Emit navigation nodes (DOWN, UP, and EOF) to let show tree structure.
49 public object down; field in class:Antlr.Runtime.Tree.TreeIterator
52 /** If we emit UP/DOWN nodes, we need to spit out multiple nodes per
66 down = adaptor.Create(TokenTypes.Down, "DOWN");
110 nodes.Enqueue(tree); // real node is next after DOWN
111 Current = down;
TreeParser.cs 45 public const int DOWN = TokenTypes.Down;
115 // if the next node is DOWN, then the current node is a subtree:
118 if (look == DOWN) {
123 case DOWN:
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/
BufferedTreeNodeStream.cs 47 * includes pointers to DOWN and UP and EOF nodes.
124 protected object down; field in class:Antlr.Runtime.Tree.BufferedTreeNodeStream
129 * This buffer includes pointers to DOWN, UP, and EOF nodes.
134 * of interest for reverseIndexing. Slows us down a wee bit to
148 /** <summary>Reuse same DOWN, UP navigation nodes unless this is true</summary> */
177 down = adaptor.Create( TokenTypes.Down, "DOWN" );
283 * Don't do DOWN, UP nodes if its a list (t is isNil).
299 // add DOWN node if t has childre
    [all...]
TreeIterator.cs 40 * Emit navigation nodes (DOWN, UP, and EOF) to let show tree structure.
52 public object down; field in class:Antlr.Runtime.Tree.TreeIterator
55 /** If we emit UP/DOWN nodes, we need to spit out multiple nodes per
71 down = adaptor.Create( TokenTypes.Down, "DOWN" );
129 nodes.Enqueue( tree ); // real node is next after DOWN
130 Current = down;
TreeParser.cs 47 public const int DOWN = TokenTypes.Down;
126 // if the next node is DOWN, then the current node is a subtree:
129 if ( look == DOWN )
137 case DOWN:
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/CSharp3/Sources/Antlr3.Runtime.Test/BuildOptions/
DebugTreeGrammar.cs 29 "<invalid>", "<EOR>", "<DOWN>", "<UP>", "CALL", "FUNC", "ID", "INT", "NEWLINE", "WS", "'-'", "'%'", "'('", "')'", "'*'", "'/'", "'+'", "'='"
299 Match(input, TokenTypes.Down, null);
324 Match(input, TokenTypes.Down, null);
522 Match(input, TokenTypes.Down, null);
551 Match(input, TokenTypes.Down, null);
580 Match(input, TokenTypes.Down, null);
609 Match(input, TokenTypes.Down, null);
638 Match(input, TokenTypes.Down, null);
757 Match(input, TokenTypes.Down, null);
ProfileTreeGrammar.cs 29 "<invalid>", "<EOR>", "<DOWN>", "<UP>", "CALL", "FUNC", "ID", "INT", "NEWLINE", "WS", "'-'", "'%'", "'('", "')'", "'*'", "'/'", "'+'", "'='"
304 Match(input, TokenTypes.Down, null);
329 Match(input, TokenTypes.Down, null);
527 Match(input, TokenTypes.Down, null);
556 Match(input, TokenTypes.Down, null);
585 Match(input, TokenTypes.Down, null);
614 Match(input, TokenTypes.Down, null);
643 Match(input, TokenTypes.Down, null);
762 Match(input, TokenTypes.Down, null);
  /external/pdfium/core/fpdfdoc/
cpdf_annot.h 39 enum AppearanceMode { Normal, Rollover, Down };
cpdf_annot.cpp 167 if (mode == CPDF_Annot::Down)
  /external/libvncserver/libvncclient/
zrle.c 39 #define HandleZRLE CONCAT3E(HandleZRLE,REALBPP,Down)
40 #define HandleZRLETile CONCAT3E(HandleZRLETile,REALBPP,Down)
67 #define CPIXEL CONCAT2E(REALBPP,Down)
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CSharp2/
ASTTreeParser.stg 87 if (input.LA(1) == TokenTypes.Down) {
88 Match(input, TokenTypes.Down, null); <checkRuleBacktrackFailure()>
93 Match(input, TokenTypes.Down, null); <checkRuleBacktrackFailure()>
CSharp2.stg 282 "\<invalid>", "\<EOR>", "\<DOWN>", "\<UP>", <tokenNames; separator=", ">
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CSharp3/
ASTTreeParser.stg 88 if (input.LA(1) == TokenTypes.Down) {
89 Match(input, TokenTypes.Down, null); <checkRuleBacktrackFailure()>
94 Match(input, TokenTypes.Down, null); <checkRuleBacktrackFailure()>
CSharp3.stg 277 "\<invalid>", "\<EOR>", "\<DOWN>", "\<UP>", <tokenNames; separator=", ">
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Usb/UsbKbDxe/
EfiKey.h 59 BOOLEAN Down;
  /external/pdfium/fpdfsdk/formfiller/
cffl_formfiller.cpp 665 if (pWidget->IsWidgetAppearanceValid(CPDF_Annot::Down))
666 pWidget->DrawAppearance(pDevice, pUser2Device, CPDF_Annot::Down, nullptr);
  /external/libjpeg-turbo/doc/html/search/
search.js 301 if (e.keyCode==40 && this.searchIndex<this.SelectItemCount()) // Down
661 else if (this.lastKey==40) // Down
716 else if (this.lastKey==40) // Down
  /external/pdfium/fpdfsdk/
cpdfsdk_baannot.cpp 75 if (mode == CPDF_Annot::Down)
cpdfsdk_widget.cpp 470 if (mode == CPDF_Annot::Down)
    [all...]
  /prebuilts/tools/common/m2/repository/com/amazonaws/aws-java-sdk-directconnect/1.11.18/
aws-java-sdk-directconnect-1.11.18.jar 
  /external/vixl/src/aarch32/
macro-assembler-aarch32.h 160 void Down() {
181 ~ContextScope() { masm_->GetContext()->Down(); }
    [all...]

Completed in 958 milliseconds

1 2