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

<<11121314151617181920>>

  /dalvik/libcore/xml/src/main/java/org/apache/xml/dtm/
DTMWSFilter.java 30 * Do not strip whitespace child nodes of this element.
35 * Strip whitespace child nodes of this element.
  /dalvik/libcore/xml/src/main/java/org/apache/xpath/
ExpressionNode.java 27 * give information about child and parent expressions,
45 /** This method returns a child node. The children are numbered
  /external/elfutils/libelf/
elf_end.c 71 the child but here we already have the child lock. We
72 solve this problem by giving free the child lock. The
83 struct Elf *child = parent->state.ar.children; local
85 while (child->next != elf)
86 child = child->next;
88 child->next = elf->next;
  /external/skia/src/svg/
SkSVGElements.cpp 74 bool SkSVGElement::onStartElement(SkSVGElement* child) {
75 *fChildren.append() = child;
  /external/webkit/JavaScriptCore/API/tests/
Node.h 46 extern void Node_appendChild(Node* node, Node* child);
47 extern void Node_removeChild(Node* node, Node* child);
  /external/webkit/WebCore/page/
FrameTree.h 62 Frame* child(unsigned index) const;
63 Frame* child(const AtomicString& name) const;
  /external/webkit/WebCore/platform/qt/
ScrollViewQt.cpp 49 void ScrollView::platformRemoveChild(Widget* child)
51 child->hide();
  /external/webkit/WebCore/rendering/
RenderFlexibleBox.h 51 void placeChild(RenderBox* child, int x, int y);
54 int allowedChildFlex(RenderBox* child, bool expanding, unsigned group);
RenderRubyText.cpp 47 bool RenderRubyText::isChildAllowed(RenderObject* child, RenderStyle*) const
49 return child->isInline();
  /external/webkit/WebCore/xml/
XSLStyleSheetLibxslt.cpp 62 , m_processed(false) // Child sheets get marked as processed when the libxslt engine has finally seen them.
163 // ensure that all child stylesheets use the same dictionaries as their
271 XSLStyleSheet* child = import->styleSheet(); local
272 if (!child)
275 if (child->processed())
278 // Check the URI of the child stylesheet against the doc URI.
289 child->markAsProcessed();
290 return child->document();
  /frameworks/base/awt/resources/org/apache/harmony/beans/internals/nls/
messages.properties 41 beans.17=The child is null
60 beans.2A=Target child can not be null
62 beans.2C=The child can not be null
64 beans.2E=PropertyVetoException was thrown while removing a child: {0}; Original error message:{1}
65 beans.2F=Target child is null
66 beans.30=PropertyVetoException was thrown while adding a child: {0}; Original error message:{1}
88 beans.46=Not a valid child
91 beans.49=Child cannot implement both BeanContextChild and BeanContextProxy
  /frameworks/base/core/tests/coretests/src/android/widget/gridview/touch/
GridTouchSetSelectionTest.java 74 View child = mGridView.getChildAt(i); local
75 if (child.getId() == targetPosition) {
  /packages/apps/Camera/src/com/android/camera/
PreferenceGroup.java 36 public void addChild(CameraPreference child) {
37 list.add(child);
  /packages/apps/IM/src/com/android/im/imps/
WbxmlPrimitiveSerializer.java 69 for(PrimitiveElement child : element.getChildren()) {
70 writeElement(child);
  /dalvik/libcore/dom/src/test/java/org/w3c/domts/level1/core/
hc_commentgetcomment.java 67 Node child; local
76 child = (Node) elementList.item(indexN1005E);
77 childType = (int) child.getNodeType();
80 childName = child.getNodeName();
82 childValue = child.getNodeValue();
84 attributes = child.getAttributes();
hc_textparseintolistofelements.java 31 * Retrieve the textual data from the last child of the
36 * EntityReferences containing one child.
68 Node child; local
89 child = (Node) childList.item(indexN1007C);
90 value = child.getNodeValue();
93 grandChild = child.getFirstChild();
textparseintolistofelements.java 31 * Retrieve the textual data from the last child of the
36 * EntityReferences containing one child.
69 Node child; local
90 child = (Node) childList.item(indexN1007F);
91 value = child.getNodeValue();
94 grandChild = child.getFirstChild();
  /dalvik/libcore/xml/src/main/java/org/apache/xalan/templates/
ElemPI.java 176 * Add a child to the child list.
178 * @param newChild Child to add to child list
180 * @return The child just added to the child list
  /dalvik/libcore/xml/src/test/java/tests/org/w3c/dom/
RemoveNamedItemNS.java 145 // Node child;
155 // child = nList.item(0);
156 // nodeType = (int) child.getNodeType();
159 // child = doc.createEntityReference("ent4");
160 // assertNotNull("createdEntRefNotNull", child);
162 // n2List = child.getChildNodes();
  /external/bluetooth/glib/gobject/
gobject-query.c 87 GType *child; local
94 for (child = children; *child; child++)
95 show_nodes (child[0], child[1], new_indent);
  /external/tagsoup/src/org/ccil/cowan/tagsoup/
Schema.java 89 @param name Name of the child element
94 ElementType child = getElementType(name); local
96 if (child == null) {
97 throw new Error("No child " + name + " for parent " + parentName);
100 throw new Error("No parent " + parentName + " for child " + name);
102 child.setParent(parent);
  /external/v8/tools/
profile.js 467 * Finds an immediate child of the specified parent with the specified
468 * label, creates a child node if necessary. If a parent node isn't
471 * @param {string} label Child node label.
500 var child = (parent ? parent : subTree).findOrAddChild(node.label);
501 child.selfWeight += node.selfWeight;
502 return child;
543 node.forEachChild(function (child) {
544 morePairsToProcess.push({node: child, param: newParam}); });
597 * Adds a child node.
599 * @param {string} label Child node label
    [all...]
  /external/webkit/WebCore/bindings/objc/
DOMHTML.mm 93 WebCore::Node* child = coreHTMLDocument->firstChild();
94 while (child && child->nodeType() == WebCore::Node::DOCUMENT_TYPE_NODE)
95 child = child->nextSibling();
97 return kit(child);
  /external/webkit/WebCore/bridge/qt/
qt_class.cpp 153 QObject *child = children.at(index); local
154 if (child->objectName() == objName)
183 // Child objects
187 QObject *child = children.at(index); local
188 if (child->objectName() == objName) {
189 f = new QtField(child);
  /external/webkit/WebCore/html/
HTMLOptionElement.cpp 93 // Handle the common special case where there's exactly 1 child node, and it's a text node.
94 Node* child = firstChild(); local
95 if (child && child->isTextNode() && !child->nextSibling()) {
96 static_cast<Text *>(child)->setData(text, ec);

Completed in 91 milliseconds

<<11121314151617181920>>