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

1 2 3 4 5 6 7

  /external/antlr/antlr-3.4/runtime/C/src/
antlr3basetree.c 349 pANTLR3_VECTOR newChildren; // Iterator for whatever we are going to add in
363 newChildren = newTree->children;
368 newChildren = antlr3VectorNew(1);
369 if (newChildren == NULL)
374 newChildren->add(newChildren, (void *)newTree, NULL);
382 replacingWithHowMany = newChildren->size(newChildren);
384 numNewChildren = newChildren->size(newChildren);
    [all...]
  /external/antlr/antlr-3.4/tool/src/test/java/org/antlr/test/
TestTrees.java 309 CommonTree newChildren = (CommonTree)adaptor.nil();
310 newChildren.addChild(new CommonTree(new CommonToken(99,"x")));
311 newChildren.addChild(new CommonTree(new CommonToken(99,"y")));
313 t.replaceChildren(0, 0, newChildren);
325 CommonTree newChildren = (CommonTree)adaptor.nil();
326 newChildren.addChild(new CommonTree(new CommonToken(99,"x")));
327 newChildren.addChild(new CommonTree(new CommonToken(99,"y")));
329 t.replaceChildren(2, 2, newChildren);
341 CommonTree newChildren = (CommonTree)adaptor.nil();
342 newChildren.addChild(new CommonTree(new CommonToken(99,"x")))
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/descriptors/
ElementDescriptor.java 338 public void setChildren(ElementDescriptor[] newChildren) {
339 mChildren = newChildren;
351 public void setChildren(Collection<ElementDescriptor> newChildren) {
352 setChildren(newChildren.toArray(new ElementDescriptor[newChildren.size()]));
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/makedict/
FusionDictionary.java 396 PtNodeArray newChildren = new PtNodeArray();
403 newChildren.mData.add(newOldWord);
410 isNotAWord, isPossiblyOffensive, newChildren);
416 newChildren);
423 newChildren.mData.add(addIndex, newWord);
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
BaseTree.java 193 List newChildren = null;
194 // normalize to a list of children to add: newChildren
196 newChildren = newTree.children;
199 newChildren = new ArrayList(1);
200 newChildren.add(newTree);
202 replacingWithHowMany = newChildren.size();
203 int numNewChildren = newChildren.size();
209 BaseTree child = (BaseTree)newChildren.get(j);
219 children.set(startChildIndex+j, newChildren.get(j));
231 children.set(startChildIndex+j, newChildren.get(j))
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
SelectionManager.java     [all...]
  /packages/apps/Messaging/src/com/android/messaging/datamodel/
BugleNotifications.java 275 final ConversationIdSet newChildren = new ConversationIdSet();
280 newChildren.add(child.mConversationIds.first());
285 if (!newChildren.contains(childConversationId)) {
    [all...]
  /prebuilts/tools/common/m2/repository/com/firebase/firebase-client-jvm/2.5.2/
firebase-client-jvm-2.5.2.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.ecf_3.1.0.v20100529-0735.jar 
org.eclipse.equinox.common_3.6.0.v20100503.jar 
org.eclipse.core.resources_3.6.1.R36x_v20101007-1215.jar 
  /external/icu/tools/srcgen/currysrc/libs/
org.eclipse.equinox.common_3.7.0.v20150402-1709.jar 
org.eclipse.core.resources_3.10.0.v20150423-0755.jar 
  /prebuilts/devtools/tools/lib/
org-eclipse-equinox-common-3.6.0.jar 
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-bundles-external/0.20.0/eclipse/plugins/
org.eclipse.ecf_3.2.0.v20130604-1622.jar 
org.eclipse.equinox.common_3.6.200.v20130402-1505.jar 
  /prebuilts/tools/common/eclipse/
org.eclipse.equinox.common_3.4.0.v20080421-2006.jar 
org.eclipse.equinox.common_3.6.0.v20100503.jar 
  /prebuilts/tools/common/m2/repository/com/android/external/eclipse/org-eclipse-equinox-common/3.6.0/
org-eclipse-equinox-common-3.6.0.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/
org.eclipse.ecf_3.2.0.v20130604-1622.jar 
org.eclipse.equinox.common_3.6.200.v20130402-1505.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 
  /external/guice/extensions/persist/lib/
ognl-2.6.7.jar 
  /external/guice/extensions/struts2/lib/
jetty-util-6.1.0.jar 

Completed in 1381 milliseconds

1 2 3 4 5 6 7