/external/antlr/antlr-3.4/runtime/ObjC/Framework/ |
ANTLRRewriteRuleElementStream.m | 34 @synthesize singleElement; 73 singleElement = nil; 88 singleElement = nil; 104 singleElement = nil; 116 if ( singleElement && isSingleElement ) [singleElement release]; 151 if (singleElement == nil) { 152 singleElement = anElement; 153 singleElement = [anElement retain]; 158 [elements addObject:singleElement]; [all...] |
ANTLRRewriteRuleElementStream.h | 35 id singleElement; 45 @property (assign) id singleElement;
|
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/tree/ |
RewriteRuleElementStream.js | 15 /** Cursor 0..n-1. If singleElement!=null, cursor is 0 until you next(), 34 this.singleElement = null; 61 if ( !org.antlr.lang.isValue(this.singleElement) ) { // no elements yet, track w/o list 62 this.singleElement = el; 67 this.elements.push(this.singleElement); 68 this.singleElement = null; 103 return this.toTree(this.singleElement); 109 if ( org.antlr.lang.isValue(this.singleElement) ) { 111 return this.toTree(this.singleElement); 130 return (org.antlr.lang.isValue(this.singleElement) && this.cursor < 1) | [all...] |
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/ |
RewriteRuleElementStream.cs | 57 * Cursor 0..n-1. If singleElement!=null, cursor is 0 until you next(), 64 protected object singleElement; 100 this.singleElement = null; 125 if (singleElement == null) { // no elements yet, track w/o list 126 singleElement = el; 131 elements.Add(singleElement); 132 singleElement = null; 170 return ToTree(singleElement); 176 if (singleElement != null) { 178 return ToTree(singleElement); [all...] |
RewriteRuleSubtreeStream.cs | 70 //System.Console.WriteLine("nextNode: elements={0}, singleElement={1}", elements, ((ITree)singleElement).ToStringTree());
|
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/ |
RewriteRuleElementStream.cs | 59 * Cursor 0..n-1. If singleElement!=null, cursor is 0 until you next(), 66 protected object singleElement; 105 this.singleElement = null; 134 if ( singleElement == null ) 136 singleElement = el; 141 elements.Add( singleElement ); 142 singleElement = null; 186 return ToTree( singleElement ); 192 if ( singleElement != null ) 195 return ToTree( singleElement ); [all...] |
RewriteRuleSubtreeStream.cs | 76 //System.Console.WriteLine("nextNode: elements={0}, singleElement={1}", elements, ((ITree)singleElement).ToStringTree());
|
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/ |
RewriteRuleElementStream.java | 47 /** Cursor 0..n-1. If singleElement!=null, cursor is 0 until you next(), 53 protected Object singleElement; 97 this.singleElement = null; 120 if ( singleElement == null ) { // no elements yet, track w/o list 121 singleElement = el; 126 elements.add(singleElement); 127 singleElement = null; 161 return toTree(singleElement); 167 if ( singleElement!=null ) { 169 return toTree(singleElement); [all...] |
RewriteRuleSubtreeStream.java | 68 //System.out.println("nextNode: elements="+elements+", singleElement="+((Tree)singleElement).toStringTree());
|
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/ |
RewriteRuleElementStream.as | 44 /** Cursor 0..n-1. If singleElement!=null, cursor is 0 until you next(), 50 protected var singleElement:Object; 106 if ( singleElement == null ) { // no elements yet, track w/o list 107 singleElement = el; 112 elements.push(singleElement); 113 singleElement = null; 148 return toTree(singleElement); 154 if ( singleElement!=null ) { 156 return toTree(singleElement); 181 return (singleElement != null && cursor < 1) | [all...] |
/external/antlr/antlr-3.4/runtime/C/src/ |
antlr3rewritestreams.c | 154 if (stream->singleElement != NULL) 156 tree = (pANTLR3_BASE_TREE)(stream->singleElement); 163 stream->singleElement = NULL; 237 stream->singleElement = NULL; 537 if (stream->singleElement == NULL) 539 stream->singleElement = el; 555 stream->elements->add (stream->elements, stream->singleElement, freePtr); 557 stream->singleElement = NULL; 647 return stream->toTree(stream, stream->singleElement); 659 if (stream->singleElement != NULL [all...] |
/external/antlr/antlr-3.4/runtime/C/include/ |
antlr3rewritestreams.h | 65 /// Cursor 0..n-1. If singleElement!=NULL, cursor is 0 until you next(), 72 void * singleElement;
|
/cts/tests/tests/renderscript/src/android/renderscript/cts/ |
AllocationTest.java | 748 Allocation singleElement = Allocation.createTyped(mRS, b.setX(1).create()); 753 script.forEach_memset(singleElement); 758 script.forEach_setLargeArray(singleElement); 764 script.forEach_getCompareResult(singleElement); 765 singleElement.copyTo(result); 772 Allocation singleElement = Allocation.createTyped(mRS, b.setX(1).create()); 778 script.forEach_memset(singleElement); 784 script.forEach_setLargeArray2D(singleElement); 790 script.forEach_getCompareResult(singleElement); 791 singleElement.copyTo(result) [all...] |
/cts/tests/tests/rscpp/librscpptest/ |
rs_jni_allocation.cpp | 624 sp<Allocation> singleElement = Allocation::createTyped(rs, b.create()); 629 script->forEach_memset(singleElement); 634 script->forEach_setLargeArray(singleElement); 640 script->forEach_getCompareResult(singleElement); 641 singleElement->copy1DTo(&result);
|
/external/antlr/antlr-3.4/runtime/Python/antlr3/ |
tree.py | [all...] |
/external/clang/include/clang/AST/ |
DeclBase.h | [all...] |
/external/llvm/unittests/IR/ |
ConstantRangeTest.cpp | 102 TEST_F(ConstantRangeTest, SingleElement) {
|
/prebuilts/tools/common/m2/repository/org/antlr/ST4/4.0.8/ |
ST4-4.0.8.jar | |
/prebuilts/tools/common/offline-m2/org/antlr/ST4/4.0.8/ |
ST4-4.0.8.jar | |
/external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/ |
Antlr.Runtime.Tree.pas | [all...] |
/external/guice/extensions/persist/lib/ |
db4o-6.4.14.8131-java5.jar | |
/prebuilts/tools/common/m2/repository/org/antlr/antlr-runtime/3.5.2/ |
antlr-runtime-3.5.2.jar | |
/prebuilts/tools/common/offline-m2/org/antlr/antlr-runtime/3.5.2/ |
antlr-runtime-3.5.2.jar | |
/prebuilts/devtools/tools/lib/ |
guava-13.0.1.jar | |
/prebuilts/tools/common/guava-tools/ |
guava-13.0.1.jar | |