HomeSort by relevance Sort by last modified time
    Searched defs:down (Results 1 - 25 of 204) sorted by null

1 2 3 4 5 6 7 8 9

  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Other/Maintained/Tools/Pccts/sorcerer/lib/
CASTBase.h 41 struct _nodebase *right, *down; member in struct:_nodebase
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
ANTLRTreeIterator.h 45 id<ANTLRTree> down; variable
52 @property(retain, readwrite) id<ANTLRTree> down; variable
ANTLRBufferedTreeNodeStream.h 64 id<ANTLRTree> down; variable
85 @property (retain, getter=getDown, setter=setDown:) id<ANTLRTree> down; variable
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
ANTLRTreeIterator.h 45 id<ANTLRTree> down; variable
52 @property(retain, readwrite) id<ANTLRTree> down; variable
ANTLRBufferedTreeNodeStream.h 64 id<ANTLRTree> down; variable
85 @property (retain, getter=getDown, setter=setDown:) id<ANTLRTree> down; variable
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
ANTLRTreeIterator.h 45 id<ANTLRTree> down; variable
52 @property(retain, readwrite) id<ANTLRTree> down; variable
ANTLRBufferedTreeNodeStream.h 64 id<ANTLRTree> down; variable
85 @property (retain, getter=getDown, setter=setDown:) id<ANTLRTree> down; variable
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRTreeIterator.h 47 __strong id<ANTLRBaseTree> down; variable
57 @property(retain, readwrite) id<ANTLRBaseTree> down; variable
ANTLRBufferedTreeNodeStream.h 65 id down; variable
86 @property (retain, getter=getDown, setter=setDown:) id down; variable
  /prebuilts/go/darwin-x86/src/container/heap/
heap.go 45 down(h, i, n)
64 down(h, 0, n)
75 if !down(h, i, n) {
87 if !down(h, i, h.Len()) {
103 func down(h Interface, i0, n int) bool { func
  /prebuilts/go/linux-x86/src/container/heap/
heap.go 45 down(h, i, n)
64 down(h, 0, n)
75 if !down(h, i, n) {
87 if !down(h, i, h.Len()) {
103 func down(h Interface, i0, n int) bool { func
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Other/Maintained/Tools/Pccts/sorcerer/h/
SCommonAST.h 18 PCCTS_AST *down() { return _down; } function in class:SORCommonAST
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
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;
  /external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/layout/
TreeWalker.java 17 abstract void down(int ch); method in class:TreeWalker
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/h264/
BTree.java 59 public BTree down(int b) { method in class:BTree
  /device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/h/
ASTBase.h 66 ASTBase *down() { return _down; } function in class:ASTBase
71 PCCTS_AST *down() { return _down; } function in class:ASTBase
ast.h 48 struct _ast *right, *down; member in struct:_ast
58 #define AST_REQUIRED_FIELDS struct _ast *right, *down, *left, *up;
60 #define AST_REQUIRED_FIELDS struct _ast *right, *down;
67 #define zzchild(t) (((t)==NULL)? (AST *) NULL:(t->down)) /* MR19 */
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Other/Maintained/Tools/Pccts/h/
ASTBase.h 66 ASTBase *down() { return _down; } function in class:ASTBase
71 PCCTS_AST *down() { return _down; } function in class:ASTBase
ast.h 48 struct _ast *right, *down; member in struct:_ast
58 #define AST_REQUIRED_FIELDS struct _ast *right, *down, *left, *up;
60 #define AST_REQUIRED_FIELDS struct _ast *right, *down;
67 #define zzchild(t) (((t)==NULL)? (AST *) NULL:(t->down)) /* MR19 */
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
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;
  /frameworks/base/core/java/android/util/
DayOfMonthCursor.java 26 * <li>Provides methods to move the cursor up / down / left / right.</li>
116 * Move down one box, potentially flipping to the next month.
120 public boolean down() { method in class:DayOfMonthCursor
122 // within current month, just move down
  /frameworks/base/core/tests/coretests/src/android/util/
DayOfMonthCursorTest.java 136 // down, same month
137 assertFalse(mc.down());
142 // down, next month
143 assertTrue(mc.down());
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
TreeIterator.java 39 * Emit navigation nodes (DOWN, UP, and EOF) to let show tree structure.
49 public Object down; field in class:TreeIterator
52 /** If we emit UP/DOWN nodes, we need to spit out multiple nodes per
66 down = adaptor.create(Token.DOWN, "DOWN");
103 nodes.add(tree); // real node is next after DOWN
104 return down;
  /external/autotest/client/deps/lansim/src/py/
tuntap.py 197 The interface needs to be down in order to set this hardware (MAC)
219 def down(self): member in class:TunTap
220 """Brings down the interface."""
  /external/jline/src/src/test/java/jline/
JLineTestCase.java 115 public Buffer down() { method in class:JLineTestCase.Buffer

Completed in 2059 milliseconds

1 2 3 4 5 6 7 8 9