HomeSort by relevance Sort by last modified time
    Searched full:child (Results 326 - 350 of 3947) sorted by null

<<11121314151617181920>>

  /frameworks/base/tests/RenderScriptTests/ModelViewer/src/com/android/modelviewer/
SgTransform.java 60 public void addChild(SgTransform child) {
61 mChildren.add(child);
62 child.setParent(this, mChildren.size() - 1);
95 SgTransform child = (SgTransform)mChildren.get(i); local
96 mChildField.set(child.getData(), i, false);
  /frameworks/support/v4/ics/android/support/v4/view/
AccessibilityDelegateCompatIcs.java 35 public boolean onRequestSendAccessibilityEvent(ViewGroup host, View child,
68 public boolean onRequestSendAccessibilityEvent(ViewGroup host, View child,
70 return bridge.onRequestSendAccessibilityEvent(host, child, event);
106 View child, AccessibilityEvent event) {
107 return ((AccessibilityDelegate) delegate).onRequestSendAccessibilityEvent(host, child,
  /libcore/luni/src/test/java/tests/api/org/xml/sax/helpers/
XMLFilterImplTest.java 55 private XMLFilterImpl child = new XMLFilterImpl(parent); field in class:XMLFilterImplTest
72 child.setContentHandler(handler);
73 child.setDTDHandler(handler);
74 child.setErrorHandler(handler);
91 child.setParent(null);
92 assertEquals(null, child.getParent());
94 child.setParent(parent);
95 assertEquals(parent, child.getParent());
101 child.setFeature("foo", true);
102 assertEquals(true, child.getFeature("foo"))
    [all...]
  /libcore/luni/src/test/java/tests/org/w3c/dom/
ElementGetElementsByTagNameNS.java 73 "dom:child");
74 child2 = doc.createElementNS(nullNS, "child");
76 "dom:child");
80 elementList = element.getElementsByTagNameNS(nullNS, "child");
83 elementList = element.getElementsByTagNameNS("*", "child");
  /external/jsilver/src/com/google/clearsilver/jsilver/syntax/node/
ALoopIncCommand.java 225 void removeChild(@SuppressWarnings("unused") Node child)
227 // Remove child
228 if(this._position_ == child)
234 if(this._variable_ == child)
240 if(this._start_ == child)
246 if(this._end_ == child)
252 if(this._increment_ == child)
258 if(this._command_ == child)
264 throw new RuntimeException("Not a child.");
270 // Replace child
    [all...]
  /external/llvm/lib/Object/
Archive.cpp 56 Archive::Child Archive::Child::getNext() const {
67 return Child(Parent, StringRef(0, 0));
72 return Child(Parent, StringRef(NextLoc, NextSize));
75 error_code Archive::Child::getName(StringRef &Result) const {
113 uint64_t Archive::Child::getSize() const {
117 MemoryBuffer *Archive::Child::getBuffer() const {
126 error_code Archive::Child::getAsBinary(OwningPtr<Binary> &Result) const {
137 , StringTable(Child(this, StringRef(0, 0))) {
163 return Child(this, StringRef(Loc, Size))
    [all...]
  /frameworks/base/core/java/com/android/internal/widget/
AbsActionBarView.java 209 protected int measureChildView(View child, int availableWidth, int childSpecHeight,
211 child.measure(MeasureSpec.makeMeasureSpec(availableWidth, MeasureSpec.AT_MOST),
214 availableWidth -= child.getMeasuredWidth();
220 protected int positionChild(View child, int x, int y, int contentHeight) {
221 int childWidth = child.getMeasuredWidth();
222 int childHeight = child.getMeasuredHeight();
225 child.layout(x, childTop, x + childWidth, childTop + childHeight);
230 protected int positionChildInverse(View child, int x, int y, int contentHeight) {
231 int childWidth = child.getMeasuredWidth();
232 int childHeight = child.getMeasuredHeight()
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/common/layout/
TestNode.java 69 public TestNode add(TestNode child) {
70 mChildren.add(child);
71 child.mParent = this;
77 for (TestNode child : children) {
78 mChildren.add(child);
79 child.mParent = this;
155 TestNode child = new TestNode(viewFqcn); local
157 mChildren.add(child);
159 mChildren.add(index, child);
161 child.mParent = this
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/animation/
FixedGridLayout.java 31 * child order (the order in which they were added, or the index
64 final View child = getChildAt(index); local
65 child.measure(cellWidthSpec, cellHeightSpec);
87 final View child = getChildAt(index); local
89 int w = child.getMeasuredWidth();
90 int h = child.getMeasuredHeight();
95 child.layout(left, top, left+w, top+h);
  /development/samples/FixedGridLayout/src/com/example/android/fixedgridlayout/
FixedGridLayout.java 34 * child order (the order in which they were added, or the index
77 final View child = getChildAt(index); local
78 child.measure(cellWidthSpec, cellHeightSpec);
98 final View child = getChildAt(index); local
100 int w = child.getMeasuredWidth();
101 int h = child.getMeasuredHeight();
106 child.layout(left, top, left+w, top+h);
  /external/collada/include/dae/
daeMetaElement.h 139 * Determines if elements of this type allow for any element as a child.
140 * @return Returns true if this element can have any child element, false otherwise.
144 * Sets if elements of this type allow for any element as a child.
145 * @param allows True if this element allows for any child element, false otherwise.
179 * This includes all meta attributes except those describing child
274 * Places a child element into the <tt><i>parent</i></tt> element where the
277 * @param child Child element to place in the parent.
280 DLLSPEC daeBool place(daeElement *parent, daeElement *child, daeUInt *ordinal = NULL);
282 * Places a child element into the <tt><i>parent</i></tt> element at a specific locatio
    [all...]
  /external/markdown/markdown/extensions/
rss.py 77 for child in root:
79 if child.tag in ["h1", "h2", "h3", "h4", "h5"]:
81 heading = child.text.strip()
93 elif child.tag in ["p"]:
100 if len(child):
102 for node in child])
104 content = child.text
  /external/skia/include/utils/
SkLayer.h 58 /** Return the number of layers in our child list.
62 /** Return the child at the specified index (starting at 0). This does not
63 affect the reference count of the child.
67 /** Add this layer to our child list at the end (top-most), and ref() it.
69 Return the new child.
71 SkLayer* addChild(SkLayer* child);
78 /** Remove, and unref(), all of the layers in our child list.
  /external/valgrind/main/none/tests/
async-sigs.c 25 /* Kill our child, but use a separate kill command. This is so that
40 // In the child, exec 'kill' in order to send the signal.
51 // In the parent, just wait for the child and then check it ran ok.
84 // In the child, install the signal handler, then wait for the signal to
100 nanosleep(&bip, 0); // Wait for child to get going.
113 // Check that the child behaved as expected when it received the signals.
118 fprintf(stderr, "FAILED: child exited with unexpected status %s %d\n",
  /external/webkit/LayoutTests/dom/html/level1/core/
hc_noderemovechildnode.js 81 Retrieve the second p element and remove its first child.
83 children and the first child should now be the child
99 var child;
131 child = childList.item(indexN10098);
132 nodeType = child.nodeType;
134 childName = child.nodeName;
  /external/webkit/LayoutTests/dom/xhtml/level1/core/
hc_noderemovechildnode.js 81 Retrieve the second p element and remove its first child.
83 children and the first child should now be the child
99 var child;
131 child = childList.item(indexN10098);
132 nodeType = child.nodeType;
134 childName = child.nodeName;
  /external/webkit/LayoutTests/dom/xhtml/level3/core/
elementcontentwhitespace02.js 99 var child;
124 child = body.firstChild;
126 assertNotNull("firstChildNotNull",child);
127 childName = child.nodeName;
130 child = child.nextSibling;
132 assertNull("secondChild",child);
noderemovechild20.js 79 Element child and verify the name of the returned node that was removed. Now attempt
80 to do the same on a cloned child and verify if a NOT_FOUND_ERR is thrown.
93 var child;
107 child = doc.createElementNS("http://www.w3.org/1999/xhtml","dom3:br");
108 appendedChild = parent.appendChild(child);
109 removed = parent.removeChild(child);
113 clonedChild = child.cloneNode(true);
noderemovechild21.js 78 Using removeChild on a new Element node attempt to remove a new Element child
80 to the documentElement and attempt to remove the child using removeChild on the
93 var child;
107 child = doc.createElementNS("http://www.w3.org/1999/xhtml","dom3:br");
108 appendedChild = parent.appendChild(child);
110 removed = parent.removeChild(child);
118 removedNode = docElem.removeChild(child);
noderemovechild22.js 78 Using removeChild on a new Element node attempt to remove a new Comment child
79 and verify the name of the rturned node that was removed. Now to remove the child
91 var child;
103 child = doc.createComment("DATA");
104 appendedChild = parent.appendChild(child);
105 removed = parent.removeChild(child);
113 removedNode = parent.removeChild(child);
noderemovechild23.js 78 Using removeChild on a new Element node attempt to remove a new ProcessingInstruction child
79 and verify the name of the returned node that was removed. Now to remove the child
91 var child;
103 child = doc.createProcessingInstruction("TARGET","DATA");
104 appendedChild = parent.appendChild(child);
105 removed = parent.removeChild(child);
113 removedNode = parent.removeChild(child);
  /external/webkit/Source/WebCore/rendering/
RenderTableCol.cpp 60 bool RenderTableCol::isChildAllowed(RenderObject* child, RenderStyle* style) const
62 return !child->isText() && style && (style->display() == TABLE_COLUMN);
95 for (RenderObject* child = firstChild(); child; child = child->nextSibling())
96 child->setPreferredLogicalWidthsDirty(false);
  /external/webkit/Source/WebCore/svg/
SVGTextElement.cpp 109 bool SVGTextElement::childShouldCreateRenderer(Node* child) const
111 if (child->isTextNode()
112 || child->hasTagName(SVGNames::aTag)
114 || child->hasTagName(SVGNames::altGlyphTag)
116 || child->hasTagName(SVGNames::textPathTag)
117 || child->hasTagName(SVGNames::trefTag)
118 || child->hasTagName(SVGNames::tspanTag))
  /frameworks/base/core/java/android/widget/
ViewSwitcher.java 28 * child views, of which only one is shown at a time.
62 public void addView(View child, int index, ViewGroup.LayoutParams params) {
66 super.addView(child, index, params);
80 View child = mFactory.makeView(); local
81 LayoutParams lp = (LayoutParams) child.getLayoutParams();
85 addView(child, lp);
86 return child;
  /frameworks/base/core/tests/coretests/src/android/widget/listview/touch/
ListSetSelectionTest.java 74 View child = mListView.getChildAt(i); local
75 if (child.getId() == targetPosition) {
105 View child = mListView.getChildAt(i); local
106 if (child.getId() == targetPosition) {
107 target = child;
140 View child = mListView.getChildAt(i); local
141 if (child.getId() == 0 && i == 0) {

Completed in 379 milliseconds

<<11121314151617181920>>