HomeSort by relevance Sort by last modified time
    Searched refs:child (Results 526 - 550 of 1841) sorted by null

<<21222324252627282930>>

  /external/guava/guava-gwt/test-super/com/google/common/net/super/com/google/common/net/
InternetDomainNameTest.java 289 assertEquals("www.foo.com", domain.child("www").toString());
292 domain.child("www.");
304 // These would throw an exception if leniency were not preserved during parent() and child()
306 InternetDomainName child = parent.child(LOTS_OF_DELTAS); local
307 child.child(LOTS_OF_DELTAS);
314 assertEquals(googleDomain, googleDomain.child("mail").topPrivateDomain());
315 assertEquals(googleDomain, googleDomain.child("foo.bar").topPrivateDomain());
  /external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_new_src/javaparser-core/com/github/javaparser/ast/
Node.java 278 for (Node child : getChildrenNodes()) {
279 if (child.getComment() != null) {
280 comments.add(child.getComment());
282 comments.addAll(child.getAllContainedComments());
349 for (Node child : getChildrenNodes()) {
350 if (clazz.isInstance(child)) {
351 nodes.add(clazz.cast(child));
353 nodes.addAll(child.getNodesByType(clazz));
  /external/jsilver/src/com/google/clearsilver/jsilver/syntax/node/
ACsOpenPosition.java 70 void removeChild(@SuppressWarnings("unused") Node child)
72 // Remove child
73 if(this._csOpen_ == child)
79 throw new RuntimeException("Not a child.");
85 // Replace child
92 throw new RuntimeException("Not a child.");
ADataCommand.java 70 void removeChild(@SuppressWarnings("unused") Node child)
72 // Remove child
73 if(this._data_ == child)
79 throw new RuntimeException("Not a child.");
85 // Replace child
92 throw new RuntimeException("Not a child.");
ADecNumberVariable.java 70 void removeChild(@SuppressWarnings("unused") Node child)
72 // Remove child
73 if(this._decNumber_ == child)
79 throw new RuntimeException("Not a child.");
85 // Replace child
92 throw new RuntimeException("Not a child.");
ADecimalExpression.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.");
AExistsExpression.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.");
AHexExpression.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.");
AHexNumberVariable.java 70 void removeChild(@SuppressWarnings("unused") Node child)
72 // Remove child
73 if(this._hexNumber_ == child)
79 throw new RuntimeException("Not a child.");
85 // Replace child
92 throw new RuntimeException("Not a child.");
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/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/ltp/testcases/open_posix_testsuite/conformance/interfaces/fork/
11-1.c 15 * Tests that file locks are not inherited by the child process after a fork.
28 static int child(int fd) function
44 printf("Child found lock is F_UNLCK, should be F_WRLCK\n");
50 printf("PASSED: child did not inherit the lock\n");
59 printf("Child locked file already locked by parent\n");
95 exit(child(fd));
105 printf("Child terminated abnormally!\n");
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_cond_init/
4-1.c 28 * * Parent process waits for the child.
51 /* Max memory for child is 1MB */
55 * The child process - consume memory and exit with
58 static void child(void) function
92 * Exit from this child process with the return code
120 /* Child executes and exits here */
122 child();
124 /* Parent waits for child to complete */
131 printf("Failed: child received signal: %u\n",
  /external/pdfium/core/fxcrt/xml/
cxml_element.h 42 void AppendChild(std::unique_ptr<CXML_Object> child) {
43 m_Children.push_back(std::move(child));
  /external/pdfium/xfa/fwl/
cfwl_widgetmgr.cpp 267 CFWL_Widget* child = GetLastChildWidget(parent); local
268 while (child) {
269 if ((child->GetStates() & FWL_WGTSTATE_Invisible) == 0) {
272 CFX_RectF bounds = child->GetWidgetRect();
275 return GetWidgetAtPoint(child, pos);
278 child = GetPriorSiblingWidget(child);
287 CFWL_Widget* child = pMgr->GetFirstChildWidget(parent); local
288 while (child) {
289 if (focus == child)
339 CFWL_Widget* child = local
463 CFWL_Widget* child = pNextChild; local
    [all...]
  /external/skia/modules/sksg/src/
SkSGClipEffect.cpp 16 ClipEffect::ClipEffect(sk_sp<RenderNode> child, sk_sp<GeometryNode> clip, bool aa)
17 : INHERITED(std::move(child))
SkSGGeometryTransform.cpp 16 GeometryTransform::GeometryTransform(sk_sp<GeometryNode> child, sk_sp<Transform> transform)
17 : fChild(std::move(child))

Completed in 943 milliseconds

<<21222324252627282930>>