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

1 2 3 45 6 7 8 91011>>

  /packages/apps/Mms/src/com/android/mms/dom/smil/
ElementSequentialTimeContainerImpl.java 63 ElementTime child = (ElementTime) children.item(i); local
64 if (child.getDur() < 0) {
65 // Return "indefinite" since containing a child whose duration is indefinite.
68 dur += child.getDur();
  /external/skia/src/views/
SkListWidget.cpp 438 const SkDOM::Node* child; local
440 if ((child = dom.getFirstChild(node, "bindings")) != NULL)
446 SkListSource* listSrc = SkListSource::Factory(dom.findAttr(child, "data-fields"));
448 fSkinName.set(dom.findAttr(child, "skin-slots"));
453 int count = dom.countChildren(child, "bind");
459 child = dom.getFirstChild(child, "bind");
460 SkASSERT(child);
462 const char* fieldName = dom.findAttr(child, "field");
463 const char* slotName = dom.findAttr(child, "slot")
547 const SkDOM::Node* child; local
    [all...]
  /bionic/libc/arch-x86/bionic/
clone.S 18 # insert arguments onto the child stack
40 # we're in the child thread now, call __thread_entry
41 # with the appropriate arguments on the child stack
  /dalvik/libcore/xml/src/main/java/org/apache/xalan/templates/
ElemCopyOf.java 164 // generated, so we need to only walk the child nodes.
167 for (int child = dtm.getFirstChild(pos); child != DTM.NULL;
168 child = dtm.getNextSibling(child))
170 tw.traverse(child);
211 * Add a child to the child list.
213 * @param newChild Child to add to this node's child lis
    [all...]
  /external/opencore/oscl/oscl/osclutil/src/
oscl_priqueue.cpp 57 * parent-child relationship is satisfied (i.e., parent not less than
65 int child = 2 * index + 1; local
68 while (child < new_last_index)
70 if (((child + 1) < new_last_index)
71 && (pOpaqueType->compare_LT(pVec->increment_T(first, child), pVec->increment_T(first, child + 1))))
73 // make certain the child index is ordered according the comparison
74 child += 1;
77 if (pOpaqueType->compare_LT(pVec->increment_T(first, index), pVec->increment_T(first, child)))
80 pOpaqueType->swap(pVec->increment_T(first, index), pVec->increment_T(first, child));
    [all...]
  /external/skia/src/svg/
SkSVGClipPath.cpp 36 SkSVGElement* child = *fChildren.begin(); local
37 SkASSERT(child->getType() == SkSVGType_Use);
38 SkSVGUse* use = (SkSVGUse*) child;
  /external/skia/src/utils/
SkLayer.cpp 92 SkLayer* SkLayer::addChild(SkLayer* child) {
93 SkASSERT(this != child);
94 child->ref();
95 child->detachFromParent();
96 SkASSERT(child->fParent == NULL);
97 child->fParent = this;
99 *m_children.append() = child;
100 return child;
116 SkLayer* child = m_children[i]; local
117 SkASSERT(child->fParent == this)
    [all...]
  /frameworks/base/core/java/android/widget/
HeterogeneousExpandableList.java 28 * and one view type for its child items. Although adapted for most {@link ExpandableListView}s,
30 * different types of group and/or child item views, should use an adapter that implements this
35 * will be of the appropriate group or child type, resulting in a more efficient reuse of the
56 * Get the type of child View that will be created by
58 * for the specified child item.
60 * @param groupPosition the position of the group that the child resides in
61 * @param childPosition the position of the child with respect to other children in the group
62 * @return An integer representing the type of child View. Two child views should share the same
93 * Returns the number of types of child Views that will be created b
    [all...]
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;
  /sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/internal/repository/
RepoSource.java 489 for (Node child = oldDoc.getFirstChild(); child != null; child = child.getNextSibling()) {
490 if (child.getNodeType() == Node.ELEMENT_NODE) {
492 String name = child.getNodeName();
499 NamedNodeMap attrs = child.getAttributes();
508 oldRoot = child;
653 * element child in a root XML node.
657 Node child = after == null ? rootNode.getFirstChild() : after.getNextSibling(); local
    [all...]
  /external/webkit/WebCore/inspector/front-end/
DataGrid.js 429 appendChild: function(child)
431 this.insertChild(child, this.children.length);
434 insertChild: function(child, index)
436 if (!child)
438 if (child.parent === this)
439 throw("insertChild: Node is already a child of this node.");
441 if (child.parent)
442 child.parent.removeChild(child);
444 this.children.splice(index, 0, child);
    [all...]
  /external/icu4c/tools/toolutil/
xmlparser.h 61 * Append the contents of all text child nodes.
63 * text child nodes of element children.
88 * Get the number of child nodes.
92 * Get the i-th child node.
93 * @param i Index of the child node.
94 * @param type The child node type.
95 * @return A pointer to the child node object, or NULL if i is out of bounds.
99 * Get the next child element node, skipping non-element child nodes.
100 * @param i Enumeration index; initialize to 0 before getting the first child element
    [all...]
  /external/webkit/JavaScriptCore/API/tests/
Node.c 40 void Node_appendChild(Node* node, Node* child)
42 Node_ref(child);
44 nodeLink->node = child;
49 void Node_removeChild(Node* node, Node* child)
55 if (current->node == child) {
  /external/webkit/WebCore/editing/
ReplaceNodeWithSpanCommand.cpp 61 for (Node* child = nodeToReplace->firstChild(); child; child = nextChild) {
62 nextChild = child->nextSibling();
63 newNode->appendChild(child, ec);
  /external/webkit/WebCore/rendering/
RenderSVGShadowTreeRootContainer.cpp 83 for (Node* child = m_shadowRoot->firstChild(); child; child = child->nextSibling())
84 child->attach();
RenderSVGContainer.cpp 107 for (RenderObject* child = firstChild(); child; child = child->nextSibling())
108 child->paint(childPaintInfo, 0, 0);
145 // width or height, so we union all of our child rects as our repaint rect.
175 for (RenderObject* child = lastChild(); child; child = child->previousSibling())
    [all...]
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->setPrefWidthsDirty(false);
  /dalvik/libcore/dom/src/test/java/org/w3c/domts/level1/core/
hc_noderemovechildnode.java 34 * Retrieve the second p element and remove its first child.
36 * children and the first child should now be the child
70 Node child; local
95 child = (Node) childList.item(indexN10098);
96 nodeType = (int) child.getNodeType();
97 childName = child.getNodeName();
  /dalvik/libcore/dom/src/test/java/org/w3c/domts/level2/core/
elementgetelementsbytagnamens04.java 36 * Create a new element node ('root') and append three newly created child nodes (all have
37 * local name 'child' and defined in different namespaces).
86 child1 = doc.createElementNS("http://www.w3.org/DOM/Level1", "dom:child");
87 child2 = doc.createElementNS(nullNS, "child");
88 child3 = doc.createElementNS("http://www.w3.org/DOM/Level2", "dom:child");
92 elementList = element.getElementsByTagNameNS(nullNS, "child");
94 elementList = element.getElementsByTagNameNS("*", "child");
  /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/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/webkit/WebCore/svg/
SVGTextElement.cpp 102 bool SVGTextElement::childShouldCreateRenderer(Node* child) const
104 if (child->isTextNode()
106 || child->hasTagName(SVGNames::altGlyphTag)
108 || child->hasTagName(SVGNames::tspanTag) || child->hasTagName(SVGNames::trefTag) || child->hasTagName(SVGNames::aTag) || child->hasTagName(SVGNames::textPathTag))
  /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) {
  /frameworks/base/media/libdrm/mobile2/src/util/xml/
DomExpatAgent.cpp 210 NodeImpl *child = root->getFirstChild(); local
212 while (child != NULL)
214 NodeType what = child->getNodeType();
218 traverse(static_cast<ElementImpl*>(child));
221 mXMLostream << *(static_cast<TextImpl*>(child)->getData()) << endl;
224 child = child->getNextSibling();
  /dalvik/libcore/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/
LoggerTest.java 479 // child part
481 "testGetLogger_WithParent_ParentLogger.child"));
482 // create the child logger
483 Logger child = Logger local
484 .getLogger("testGetLogger_WithParent_ParentLogger.child");
485 assertNull(child.getFilter());
486 assertEquals(0, child.getHandlers().length);
487 assertNull(child.getLevel());
488 assertEquals("testGetLogger_WithParent_ParentLogger.child", child
523 assertSame(childOfChild.getParent(), child); local
1728 Logger child = Logger.getLogger("testGetParent_NormalNamed.child"); local
2056 Logger child = new MockLogger("childLogger", null); local
2116 Logger child = new MockLogger("childLogger", null); local
2178 Logger child = new MockLogger("childLogger", null); local
2245 Logger child = new MockLogger("childLogger", null); local
2349 Logger child = new MockLogger("childLogger", null); local
2411 Logger child = new MockLogger("childLogger", null); local
2472 Logger child = new MockLogger("childLogger", null); local
2536 Logger child = new MockLogger("childLogger", null); local
2600 Logger child = new MockLogger("childLogger", null); local
2664 Logger child = new MockLogger("childLogger", null); local
2728 Logger child = new MockLogger("childLogger", null); local
2792 Logger child = new MockLogger("childLogger", null); local
2856 Logger child = new MockLogger("childLogger", null); local
2922 Logger child = new MockLogger("childLogger", null); local
3007 Logger child = new MockLogger("childLogger", null); local
3098 Logger child = new MockLogger("childLogger", null); local
3182 Logger child = new MockLogger("childLogger", null); local
3266 Logger child = new MockLogger("childLogger", null); local
3354 Logger child = new MockLogger("childLogger", null); local
3449 Logger child = new MockLogger("childLogger", null); local
3537 Logger child = new MockLogger("childLogger", null); local
4236 Logger child = new MockLogger("childLogger", VALID_RESOURCE_BUNDLE); local
4294 Logger child = new MockLogger("childLogger", VALID_RESOURCE_BUNDLE); local
4346 Logger child = new MockLogger("childLogger", VALID_RESOURCE_BUNDLE); local
4403 Logger child = new MockLogger("childLogger", VALID_RESOURCE_BUNDLE); local
4488 Logger child = new MockLogger("childLogger", null); local
4524 Logger child = new MockLogger("childLogger", null); local
    [all...]

Completed in 600 milliseconds

1 2 3 45 6 7 8 91011>>