/external/antlr/runtime/ActionScript/project/src/org/antlr/runtime/tree/ |
TreeAdaptor.as | 82 /** Is tree considered a nil node used to make lists of child nodes? */ 85 /** Add a child to the tree t. If child is a flat tree (a list), make all 86 * in list children of t. Warning: if t has no children, but child does 87 * and child isNil then you can decide it is ok to move children to t via 88 * t.children = child.children; i.e., without copying the array. Just 90 * ASTs. Do nothing if t or child is null. 92 function addChild(t:Object, child:Object):void; 95 * If not a nil root, make oldRoot a child of newRoot. 100 * If newRoot is a nil-rooted single child tree, use the singl [all...] |
/external/antlr/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/ |
IDebugEventListener.cs | 363 /** <summary>Make childID a child of rootID.</summary> 372 void AddChild(object root, object child);
|
/external/antlr/runtime/CSharp3/Sources/Antlr3.Runtime/Debug/ |
IDebugEventListener.cs | 365 /** <summary>Make childID a child of rootID.</summary> 374 void AddChild( object root, object child );
|
/external/antlr/runtime/Java/src/main/java/org/antlr/runtime/debug/ |
DebugEventListener.java | 308 /** Make childID a child of rootID. 315 public void addChild(Object root, Object child);
|
/external/antlr/runtime/JavaScript/src/org/antlr/runtime/ |
Token.js | 14 /** imaginary tree navigation type; traverse "get child" link */ 16 /** imaginary tree navigation type; finish with a child list */
|
/external/antlr/runtime/ObjC/Framework/ |
TreeAdaptor.h | 66 /** Is tree considered a nil node used to make lists of child nodes? */ 70 - (void) addChild:(id)child toTree:(id)aTree; 73 * If not a nil root, make oldRoot a child of newRoot. 78 * If newRoot is a nil-rooted single child tree, use the single 79 * child as the new root node. 90 * simple node or nil root with a single child node--it must be a root 130 /** Get a child 0..n-1 node */ 132 /** Set ith child (0..n-1) to t; t must be non-null and non-nil node */ 133 - (void) setChild:(id)aTree At:(NSInteger)index Child:(id)child; [all...] |
/external/antlr/runtime/Python/antlr3/ |
debug.py | 250 # walk the tree and emit create and add child events 258 """^(A B C): emit create A, create B, add child, ...""" 261 child = self.adaptor.getChild(t, i) 262 self.simulateTreeConstruction(child) 263 self.dbg.addChild(t, child) 282 def addChild(self, t, child): 283 if isinstance(child, Token): 284 n = self.createWithPayload(child) 288 if t is None or child is None: 291 self.adaptor.addChild(t, child) [all...] |
/external/antlr/runtime/Python/unittests/ |
testdottreegen.py | 38 template="$parent$ -> $child$\n"
|
/external/antlr/runtime/Python3/antlr3/ |
debug.py | 257 # walk the tree and emit create and add child events 265 """^(A B C): emit create A, create B, add child, ...""" 268 child = self.adaptor.getChild(t, i) 269 self.simulateTreeConstruction(child) 270 self.dbg.addChild(t, child) 289 def addChild(self, t, child): 290 if isinstance(child, Token): 291 n = self.createWithPayload(child) 295 if t is None or child is None: 298 self.adaptor.addChild(t, child) [all...] |
/external/autotest/client/site_tests/documentscan_AppTestWithFakeLorgnette/document_scan_test_app/ |
scan.js | 11 function setOnlyChild(parent, child) { 15 parent.appendChild(child);
|
/external/cldr/tools/cldr-unittest/src/org/unicode/cldr/unittest/ |
TestLanguageGroup.java | 63 String child = entry.getKey(); local 68 errln("\tThere are multiple parents\t" + parentsString + "\tfor\t" + getName(child)); 85 for (ULocale child : locales) { 86 String childString = child.toLanguageTag();
|
/external/cldr/tools/java/org/unicode/cldr/util/ |
Containment.java | 92 for (String child : contained) { 93 if (!nonLeaf.contains(child)) { 94 target.add(child); 96 addLeaves(child, target, nonLeaf);
|
/external/elfutils/backends/ |
aarch64_retval.c | 43 skip_until (Dwarf_Die *child, int tag) 46 while (DWARF_TAG_OR_RETURN (child) != tag) 47 if ((i = dwarf_siblingof (child, child)) != 0)
|
/external/fsck_msdos/ |
dosfs.h | 121 *child; /* if this is a directory */ member in struct:dosDirEntry
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/translit/ |
CompoundTransliteratorTest.java | 120 //String child= ct1.getTransliterator(i).getID(); 121 String child = elems[i].getID(); local 122 if(!child.equals(array[i])){ 123 errln("Error getTransliterator() failed: Expected->" + array[i] + " Got->" + child); 125 logln("OK: getTransliterator() passed: Expected->" + array[i] + " Got->" + child);
|
/external/icu/icu4c/source/common/ |
locutil.cpp | 263 LocaleUtility::isFallbackOf(const UnicodeString& root, const UnicodeString& child) 265 return child.indexOf(root) == 0 && 266 (child.length() == root.length() || 267 child.charAt(root.length()) == UNDERSCORE_CHAR);
|
/external/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/test/translit/ |
CompoundTransliteratorTest.java | 117 //String child= ct1.getTransliterator(i).getID(); 118 String child = elems[i].getID(); local 119 if(!child.equals(array[i])){ 120 errln("Error getTransliterator() failed: Expected->" + array[i] + " Got->" + child); 122 logln("OK: getTransliterator() passed: Expected->" + array[i] + " Got->" + child);
|
/external/iproute2/tc/ |
emp_ematch.y | 71 $$->child = $3;
|
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_src/proper_source/com/github/javaparser/ |
ASTHelper.java | 288 for (Node child : container.getChildrenNodes()) { 289 if (clazz.isInstance(child)) { 290 nodes.add(clazz.cast(child)); 292 nodes.addAll(getNodesByType(child, clazz));
|
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/node/ |
AOptimizedMultipleCommand.java | 35 void removeChild(Node child) { 44 // Replace child 53 throw new RuntimeException("Not a child.");
|
Node.java | 25 abstract void removeChild(Node child);
|
/external/libchrome/third_party/jinja2/ |
nativetypes.py | 75 for child in node.nodes: 80 const = child.as_const(frame.eval_ctx) 84 body.append(child) 100 body.append(child)
|
/external/libxml2/python/tests/ |
nsdel.py | 45 # Remove a namespace refered to by a child 49 child = root.newChild(namespace, "child", None) variable
|
/external/ltp/testcases/kernel/fs/fs_bind/bin/ |
setup | 48 otherpid="$(cat ${lockfile}child 2> /dev/null)" 60 echo $$ >| ${lockfile}child
|
/external/ltp/testcases/kernel/mem/shmt/ |
shmt07.c | 32 * and then fork a child. The child verifies that the shared memory segment 57 int child();
|