/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/SlimParsing/Tree/ |
ITreeFactory.cs | 45 TTree Nil();
|
ITreeAdaptor`1.cs | 60 * Return a nil node (an empty but non-null node) that can hold 62 * use "t=adaptor.nil(); t.addChild(x); t.addChild(y);" 65 T Nil(); 87 /** <summary>Is tree considered a nil node used to make lists of child nodes?</summary> */ 102 * If oldRoot is a nil root, just copy or move the children to newRoot. 103 * If not a nil root, make oldRoot a child of newRoot. 107 * old=^(nil a b c), new=r yields ^(r a b c) 110 * If newRoot is a nil-rooted single child tree, use the single 113 * old=^(nil a b c), new=^(nil r) yields ^(r a b c [all...] |
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/ |
ITreeAdaptor.cs | 72 * Return a nil node (an empty but non-null node) that can hold 74 * use "t=adaptor.nil(); t.addChild(x); t.addChild(y);" 77 object Nil(); 99 /** <summary>Is tree considered a nil node used to make lists of child nodes?</summary> */ 114 * If oldRoot is a nil root, just copy or move the children to newRoot. 115 * If not a nil root, make oldRoot a child of newRoot. 119 * old=^(nil a b c), new=r yields ^(r a b c) 122 * If newRoot is a nil-rooted single child tree, use the single 125 * old=^(nil a b c), new=^(nil r) yields ^(r a b c [all...] |
TreePatternParser.cs | 128 if (tokenName.Equals("nil")) { 129 return adaptor.Nil();
|
BaseTreeAdaptor.cs | 51 public virtual object Nil() { 124 * If oldRoot is a nil root, just copy or move the children to newRoot. 125 * If not a nil root, make oldRoot a child of newRoot. 129 * old=^(nil a b c), new=r yields ^(r a b c) 132 * If newRoot is a nil-rooted single child tree, use the single 135 * old=^(nil a b c), new=^(nil r) yields ^(r a b c) 136 * old=^(a b c), new=^(nil r) yields ^(r ^(a b c)) 141 * old=null, new=^(nil r) yields ^(nil r [all...] |
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime.Tests/ |
ITreeFixture.cs | 78 // ^(nil 101 102 103) 98 // Add child ^(nil 101 102 103) to root 5 125 // Add child ^(nil 101 102 103) to root ^(5 6) 174 // 5 becomes new root of ^(nil 101 102 103) 205 // ^(nil 5) becomes new root of ^(nil 101 102 103) 222 // ^(nil 5) becomes new root of ^(101 102 103) 240 CommonTree root_0 = (CommonTree)adaptor.Nil(); 241 CommonTree root_1 = (CommonTree)adaptor.Nil(); 339 CommonTree newChildren = (CommonTree)adaptor.Nil(); [all...] |
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/ |
ITreeAdaptor.cs | 128 * Return a nil node (an empty but non-null node) that can hold 130 * use "t=adaptor.nil(); t.addChild(x); t.addChild(y);" 133 object Nil(); 155 /** <summary>Is tree considered a nil node used to make lists of child nodes?</summary> */ 170 * If oldRoot is a nil root, just copy or move the children to newRoot. 171 * If not a nil root, make oldRoot a child of newRoot. 175 * old=^(nil a b c), new=r yields ^(r a b c) 178 * If newRoot is a nil-rooted single child tree, use the single 181 * old=^(nil a b c), new=^(nil r) yields ^(r a b c [all...] |
TreePatternParser.cs | 150 if ( tokenName.Equals( "nil" ) ) 152 return adaptor.Nil();
|
BaseTreeAdaptor.cs | 54 public virtual object Nil() 158 * If oldRoot is a nil root, just copy or move the children to newRoot. 159 * If not a nil root, make oldRoot a child of newRoot. 163 * old=^(nil a b c), new=r yields ^(r a b c) 166 * If newRoot is a nil-rooted single child tree, use the single 169 * old=^(nil a b c), new=^(nil r) yields ^(r a b c) 170 * old=^(a b c), new=^(nil r) yields ^(r ^(a b c)) 175 * old=null, new=^(nil r) yields ^(nil r [all...] |
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/ |
DebugTreeAdaptor.cs | 106 public virtual object Nil() { 107 object node = adaptor.Nil();
|
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/BuildOptions/ |
DebugGrammarParser.cs | 158 root_0 = (CommonTree)adaptor.Nil(); 356 root_0 = (CommonTree)adaptor.Nil(); 406 root_0 = (CommonTree)adaptor.Nil(); 412 CommonTree root_1 = (CommonTree)adaptor.Nil(); 460 root_0 = (CommonTree)adaptor.Nil(); 495 root_0 = (CommonTree)adaptor.Nil(); 634 root_0 = (CommonTree)adaptor.Nil(); 640 CommonTree root_1 = (CommonTree)adaptor.Nil(); 733 root_0 = (CommonTree)adaptor.Nil(); 826 root_0 = (CommonTree)adaptor.Nil(); [all...] |
ProfileGrammarParser.cs | 162 root_0 = (CommonTree)adaptor.Nil(); 360 root_0 = (CommonTree)adaptor.Nil(); 410 root_0 = (CommonTree)adaptor.Nil(); 416 CommonTree root_1 = (CommonTree)adaptor.Nil(); 464 root_0 = (CommonTree)adaptor.Nil(); 499 root_0 = (CommonTree)adaptor.Nil(); 638 root_0 = (CommonTree)adaptor.Nil(); 644 CommonTree root_1 = (CommonTree)adaptor.Nil(); 737 root_0 = (CommonTree)adaptor.Nil(); 830 root_0 = (CommonTree)adaptor.Nil(); [all...] |
/build/blueprint/ |
unpack_test.go | 46 Unset: nil, 48 nil, 61 nil, 74 nil, 90 IsUgly: nil, 92 nil, 105 Nil []string 109 Nil: nil, 111 nil, [all...] |
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/ |
DebugTreeAdaptor.cs | 138 public virtual object Nil() 140 object node = adaptor.Nil();
|
/prebuilts/go/darwin-x86/test/chan/ |
select5.go | 53 if err := t.Execute(out, a); err != nil { 141 if err != nil { 190 {{/* Nil channel send, receive to keep compiler from optimizing select. */}} 257 {{/* Nil channel send, receive to keep compiler from optimizing select. */}} 302 {{/* Nil channel send, receive to keep compiler from optimizing select. */}} 351 {{/* Nil channel send, receive to keep compiler from optimizing select. */}} 394 case **(**int)(nil) = <-dummy: 406 case **(**int)(nil) = <-nilch:
|
/prebuilts/go/linux-x86/test/chan/ |
select5.go | 53 if err := t.Execute(out, a); err != nil { 141 if err != nil { 190 {{/* Nil channel send, receive to keep compiler from optimizing select. */}} 257 {{/* Nil channel send, receive to keep compiler from optimizing select. */}} 302 {{/* Nil channel send, receive to keep compiler from optimizing select. */}} 351 {{/* Nil channel send, receive to keep compiler from optimizing select. */}} 394 case **(**int)(nil) = <-dummy: 406 case **(**int)(nil) = <-nilch:
|
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CSharp2/ |
AST.stg | 111 root_0 = (<ASTLabelType>)adaptor.Nil(); 194 root_0 = (<ASTLabelType>)adaptor.Nil(); 310 <ASTLabelType> root_<treeLevel> = (<ASTLabelType>)adaptor.Nil();
|
ASTTreeParser.stg | 74 <ASTLabelType> root_<treeLevel> = (<ASTLabelType>)adaptor.Nil();
|
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CSharp3/ |
AST.stg | 111 root_0 = (<ASTLabelType>)adaptor.Nil(); 192 root_0 = (<ASTLabelType>)adaptor.Nil(); 308 <ASTLabelType> root_<treeLevel> = (<ASTLabelType>)adaptor.Nil();
|
ASTTreeParser.stg | 75 <ASTLabelType> root_<treeLevel> = (<ASTLabelType>)adaptor.Nil();
|
/prebuilts/go/darwin-x86/src/go/types/ |
object.go | 24 Pkg() *Package // nil for objects in the Universe scope and labels 67 // TODO(gri): shouldn't !ast.IsExported(name) => pkg != nil be an precondition? 68 // if pkg == nil { 69 // panic("nil package in lookup of unexported name") 71 if pkg != nil { 118 // not exported, so packages must be the same (pkg == nil for 121 if pkg == nil || obj.pkg == nil { 124 // pkg != nil && obj.pkg != nil [all...] |
/prebuilts/go/linux-x86/src/go/types/ |
object.go | 24 Pkg() *Package // nil for objects in the Universe scope and labels 67 // TODO(gri): shouldn't !ast.IsExported(name) => pkg != nil be an precondition? 68 // if pkg == nil { 69 // panic("nil package in lookup of unexported name") 71 if pkg != nil { 118 // not exported, so packages must be the same (pkg == nil for 121 if pkg == nil || obj.pkg == nil { 124 // pkg != nil && obj.pkg != nil [all...] |
/prebuilts/go/darwin-x86/src/net/http/ |
header_test.go | 19 {Header{}, nil, ""}, 25 nil, 32 nil, 64 "Nil": nil, 69 nil, 119 if err != nil { 191 testHeader.WriteSubset(&buf, nil) 207 testHeader.WriteSubset(&buf, nil)
|
/prebuilts/go/linux-x86/src/net/http/ |
header_test.go | 19 {Header{}, nil, ""}, 25 nil, 32 nil, 64 "Nil": nil, 69 nil, 119 if err != nil { 191 testHeader.WriteSubset(&buf, nil) 207 testHeader.WriteSubset(&buf, nil)
|
/prebuilts/go/darwin-x86/src/cmd/vet/ |
doc.go | 120 Nil function comparison 124 Comparisons between functions and nil.
|