HomeSort by relevance Sort by last modified time
    Searched refs:child (Results 676 - 700 of 3822) sorted by null

<<21222324252627282930>>

  /external/jsilver/src/com/google/clearsilver/jsilver/syntax/node/
AMultipleCommand.java 66 void removeChild(@SuppressWarnings("unused") Node child)
68 // Remove child
69 if(this._command_.remove(child))
74 throw new RuntimeException("Not a child.");
80 // Replace child
99 throw new RuntimeException("Not a child.");
ANameVariable.java 70 void removeChild(@SuppressWarnings("unused") Node child)
72 // Remove child
73 if(this._word_ == child)
79 throw new RuntimeException("Not a child.");
85 // Replace child
92 throw new RuntimeException("Not a child.");
ANegativeExpression.java 70 void removeChild(@SuppressWarnings("unused") Node child)
72 // Remove child
73 if(this._expression_ == child)
79 throw new RuntimeException("Not a child.");
85 // Replace child
92 throw new RuntimeException("Not a child.");
ANotExpression.java 70 void removeChild(@SuppressWarnings("unused") Node child)
72 // Remove child
73 if(this._expression_ == child)
79 throw new RuntimeException("Not a child.");
85 // Replace child
92 throw new RuntimeException("Not a child.");
ANumericExpression.java 70 void removeChild(@SuppressWarnings("unused") Node child)
72 // Remove child
73 if(this._expression_ == child)
79 throw new RuntimeException("Not a child.");
85 // Replace child
92 throw new RuntimeException("Not a child.");
ASequenceExpression.java 66 void removeChild(@SuppressWarnings("unused") Node child)
68 // Remove child
69 if(this._args_.remove(child))
74 throw new RuntimeException("Not a child.");
80 // Replace child
99 throw new RuntimeException("Not a child.");
AStringExpression.java 70 void removeChild(@SuppressWarnings("unused") Node child)
72 // Remove child
73 if(this._value_ == child)
79 throw new RuntimeException("Not a child.");
85 // Replace child
92 throw new RuntimeException("Not a child.");
AVariableExpression.java 70 void removeChild(@SuppressWarnings("unused") Node child)
72 // Remove child
73 if(this._variable_ == child)
79 throw new RuntimeException("Not a child.");
85 // Replace child
92 throw new RuntimeException("Not a child.");
  /external/ksoap2/ksoap2-base/src/main/java/org/ksoap2/kdom/
Document.java 59 /** Adds a child at the given index position. Throws
62 public void addChild(int index, int type, Object child) {
72 super.addChild(index, type, child);
  /external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletCollision/Gimpact/
gim_radixsort.h 357 /* k has child(s) */
360 int child = 2*k; local
362 if ((child < (int)n) && CompareFunc(pArr[child - 1] , pArr[child])<0)
364 child++;
366 /* pick larger child */
367 if (CompareFunc(temp , pArr[child - 1])<0)
369 /* move child up */
370 pArr[k - 1] = pArr[child - 1]
    [all...]
  /external/libmtp/examples/
emptyfolders.c 30 if(folderlist->child == NULL) { // this *might* be empty
36 if(file->parent_id == folderlist->folder_id) { // folder has a child
55 prune_empty_folders(device,files,folderlist->child,do_delete); // recurse down
  /external/libweave/src/notification/
xmpp_stream_parser_unittest.cc 166 const XmlNode* child = stanza2->children().back().get(); local
167 EXPECT_EQ("push:push", child->name());
168 ASSERT_EQ(2u, child->attributes().size());
169 EXPECT_TRUE(child->GetAttribute("channel", &value));
171 EXPECT_TRUE(child->GetAttribute("xmlns:push", &value));
173 ASSERT_EQ(2u, child->children().size());
175 child1 = child->children()[0].get();
185 child2 = child->children()[1].get();
  /external/mesa3d/src/mapi/glapi/gen/
gl_XML.py 671 child = element.children
672 while child:
673 if child.type == "element":
674 if child.name == "return":
675 return_type = child.nsProp( "type", None )
676 elif child.name == "param":
677 param = self.context.factory.create_item( "parameter", child, self.context)
680 child = child.next
839 child = element.childre
    [all...]
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/res/
MenuLoader.java 149 private boolean isSubMenuItem(MenuNode child) {
150 List<MenuLoader.MenuNode> ch = child.children;
155 for (MenuNode child : source.children) {
156 String name = child.name;
157 TestAttributeSet attributes = child.attributes;
162 if (isSubMenuItem(child)) {
166 MenuNode subMenuNode = child.children.get(0);
175 addChildrenInGroup(child, newGroupId, root);
  /external/skia/src/svg/parser/
SkSVGElements.cpp 66 bool SkSVGElement::onStartElement(SkSVGElement* child) {
67 *fChildren.append() = child;
  /external/valgrind/drd/tests/
verify-xml-output 19 ../../vg-in-place --tool=drd --xml=yes --xml-file="$b-%q{USER}.xml" --xml-user-comment="<runBy>$(basename $0)</runBy>" --child-silent-after-fork=yes --gen-suppressions=all $vgopts ./$prog $args
  /external/valgrind/helgrind/tests/
stackteardown.c 87 /* Parent creates 1 child, that will detach, and exit after destroying
93 pthread_t child; local
105 r = pthread_create(&child, &attr, child_fn, NULL); assert(!r);
tc21_pthonce.c 69 void* child ( void* argV ) { function
73 printf("child: Hi, I'm thread %d\n", *(int*)argV);
87 r= pthread_create(&threads[i], NULL, child, &id_arg[i]);
tc21_pthonce.stderr.exp 20 at 0x........: child (tc21_pthonce.c:74)
26 at 0x........: child (tc21_pthonce.c:74)
36 at 0x........: child (tc21_pthonce.c:74)
42 at 0x........: child (tc21_pthonce.c:74)
  /external/valgrind/none/tests/
pth_atfork1.c 65 child (void) function
80 pthread_atfork (prepare, parent, child);
104 /* We check whether the `prepare' and `child' function ran. */
111 error (EXIT_FAILURE, errno, "wrong child");
114 error (EXIT_FAILURE, 0, "Child terminated incorrectly");
  /frameworks/base/core/tests/coretests/src/android/widget/gridview/touch/
GridTouchSetSelectionTest.java 74 View child = mGridView.getChildAt(i); local
75 if (child.getId() == targetPosition) {
  /frameworks/base/packages/Osu/src/com/android/hotspot2/omadm/
MgmtTreeRoot.java 27 for (OMANode child : getChildren()) {
28 child.toXml(sb);
  /frameworks/base/packages/Osu/src/com/android/hotspot2/osu/
PostDevDataResponse.java 24 for (XMLNode child : root.getChildren()) {
25 mOSUCommands.add(new OSUCommand(child));
  /frameworks/base/tools/preload/
Operation.java 85 for (Operation child : subops) {
86 exclusive -= child.inclusiveTimeNanos();
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/omadm/
ManagementTreeRoot.java 53 for (OMANode child : getChildren()) {
54 child.toXml(sb);

Completed in 779 milliseconds

<<21222324252627282930>>