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

<<21222324252627282930>>

  /external/webkit/WebCore/platform/
ScrollView.cpp 64 Widget* child = prpChild.get(); local
65 ASSERT(child != this && !child->parent());
66 child->setParent(this);
68 if (child->platformWidget())
69 platformAddChild(child);
72 void ScrollView::removeChild(Widget* child)
74 ASSERT(child->parent() == this);
75 child->setParent(0);
76 m_children.remove(child);
    [all...]
  /external/webkit/WebCore/rendering/
RenderView.cpp 121 for (RenderObject* child = firstChild(); child; child = child->nextSibling()) {
122 if (child->style()->height().isPercent() || child->style()->minHeight().isPercent() || child->style()->maxHeight().isPercent())
123 child->setChildNeedsLayout(true, false);
223 // since iframes/frames with no background in the child document should show the parent's background.
225 frameView()->setUseSlowRepaints(); // The parent must show behind the child
    [all...]
  /dalvik/libcore/prefs/src/test/java/org/apache/harmony/prefs/tests/java/util/prefs/
PreferencesTest.java 247 // assertFalse(prefs.nodeExists("mock/child/grandson"));
256 assertTrue(prefs.nodeExists("mock/child/grandson"));
1018 Preferences child = pref.node("mock"); local
1076 MockAbstractPreferences child = (MockAbstractPreferences) ((MockAbstractPreferences) pref) local
1477 Preferences child = pref.node("child"); local
    [all...]
  /sdk/emulator/qtools/
trace_reader.h 101 // If a child process is a clone of a parent process, the
104 // both the parent and child processes.
204 void CopyRegions(ProcessState *parent, ProcessState *child);
1184 ProcessState *child = new ProcessState; local
    [all...]
  /bionic/libc/arch-arm/bionic/
clone.S 106 # store 'fn' and 'arg' to the child stack
123 1: # in the child - pick arguments
  /bionic/libc/docs/
SYSV-IPC.TXT 60 /* in the child */
76 fprintf(stderr, "child %d FAIL at counter=%d: %d\n", ret,
  /cts/tests/tests/view/src/android/view/animation/cts/
AnimationSetTest.java 108 // After initialize, AnimationSet override the child values.
213 Animation child = null; local
219 child = new AlphaAnimation(0.0f, 1.0f);
220 child.setDuration(originChildDuration[i]);
221 child.setStartOffset(originChildStartOffset[i]);
222 child.setRepeatCount(originChildRepeatCount[i]);
223 originChildDurationHint[i] = child.computeDurationHint();
224 animationSet.addAnimation(child);
  /dalvik/libcore/dom/src/test/java/org/w3c/domts/level1/core/
hc_textwithnomarkup.java 33 * implementing the Text interface that is the only child
36 * Retrieve the textual data from the second child of the
nodegetfirstchildnull.java 31 * If there is not a first child then the "getFirstChild()"
34 * Retrieve the Text node form the second child of the first
nodegetlastchildnull.java 31 * If there is not a last child then the "getLastChild()"
34 * Retrieve the Text node from the second child of the first
processinginstructiongetdata.java 38 * child nodes of this document. Invoke the "getData()"
39 * method on the first child in the list. This should
processinginstructiongettarget.java 37 * child nodes of this document. Invoke the "getTarget()"
38 * method on the first child in the list. This should
textwithnomarkup.java 33 * implementing the Text interface that is the only child
36 * Retrieve the textual data from the second child of the
  /dalvik/libcore/dom/src/test/java/org/w3c/domts/level2/core/
localName03.java 39 * Retrieve the first employeeId node and get the first child of this node.
40 * Since the first child is Text node invoking the "getLocalName()"
prefix02.java 39 * Retrieve the first emp:employeeId node and get the first child of this node.
40 * Since the first child is Text node invoking the "getPrefix()"
  /dalvik/libcore/xml/src/main/java/org/apache/harmony/xml/dom/
DocumentImpl.java 205 * @param deep true to recursively copy any child nodes; false to do no such
287 // change the document on all child nodes
353 for (LeafNodeImpl child : children) {
354 if (child instanceof DocumentType) {
355 return (DocumentType) child;
363 for (LeafNodeImpl child : children) {
364 if (child instanceof Element) {
365 return (Element) child;
  /dalvik/libcore/xml/src/main/java/org/apache/xalan/templates/
ElemApplyImport.java 95 * Add a child to the child list.
  /dalvik/libcore/xml/src/main/java/org/apache/xpath/axes/
ChildIterator.java 112 * @return Axis.CHILD, etc., or -1 if the axis is not known or is of multiple
117 return org.apache.xml.dtm.Axis.CHILD;
  /external/dropbear/
cli-authpasswd.c 63 TRACE(("error creating child pipe"))
75 /* child */
  /external/elfutils/libdw/
dwarf_getabbrev.c 52 abbreviation has child entries or not. [...]
54 [...] Finally, the child encoding is followed by a series of
  /external/iproute2/tc/
m_ematch.c 189 if (t->child) {
235 if (tree->child) {
237 t->next = tree->child;
238 count += flatten_tree(head, tree->child);
251 if (t->child)
252 t->child_ref = t->child->index;
553 if (t->child) {
555 print_ematch_tree(t->child);
  /external/junit/src/junit/swingui/
TestTreeModel.java 103 public int getIndexOfChild(Object parent, Object child) {
108 if (child.equals(e.nextElement()))
  /external/libxml2/include/libxml/
entities.h 42 struct _xmlNode *children; /* First child link */
43 struct _xmlNode *last; /* Last child link */
  /external/webkit/WebCore/accessibility/win/
AXObjectCacheWin.cpp 96 // object for the WebView, passing the child ID that we specify below. We
98 // element, not the index of a child element.
  /external/webkit/WebCore/svg/
SVGElementInstance.cpp 85 void SVGElementInstance::appendChild(PassRefPtr<SVGElementInstance> child)
87 appendChildToContainer<SVGElementInstance, SVGElementInstance>(child.get(), this);

Completed in 342 milliseconds

<<21222324252627282930>>