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

1 2 3 4 5 67 8 91011>>

  /dalvik/libcore/xml/src/main/java/org/apache/xalan/templates/
ElemChoose.java 126 * Add a child to the child list.
128 * @param newChild Child to add to this node's child list
130 * @return The child that was just added to the child list
ElemComment.java 95 * Add a child to the child list.
97 * @param newChild Child to add to this node's child list
99 * @return Child that was just added to child list
ElemExtensionDecl.java 210 for (ElemTemplateElement child = getFirstChildElem(); child != null;
211 child = child.getNextSiblingElem())
213 if (Constants.ELEMNAME_EXTENSIONSCRIPT == child.getXSLToken())
215 ElemExtensionScript sdecl = (ElemExtensionScript) child;
291 for (ElemTemplateElement child = getFirstChildElem(); child != null;
292 child = child.getNextSiblingElem()
    [all...]
ElemApplyTemplates.java 188 * Perform a query if needed, and call transformNode for each child.
260 int child; local
261 while (DTM.NULL != (child = sourceNodes.nextNode()))
263 currentNodes.setTop(child);
264 currentExpressionNodes.setTop(child);
266 if(xctxt.getDTM(child) != dtm)
268 dtm = xctxt.getDTM(child);
271 final int exNodeType = dtm.getExpandedTypeID(child);
273 final int nodeType = dtm.getNodeType(child);
277 ElemTemplate template = tl.getTemplateFast(xctxt, child, exNodeType, mode,
296 transformer.pushPairCurrentMatched(sroot.getDefaultTextRule(), child); local
    [all...]
  /external/webkit/WebCore/dom/
ContainerNode.h 48 virtual bool removeChild(Node* child, ExceptionCode&);
85 friend void appendChildToContainer(GenericNode* child, GenericNodeContainer* container);
90 void setFirstChild(Node* child) { m_firstChild = child; }
91 void setLastChild(Node* child) { m_lastChild = child; }
ContainerNodeAlgorithms.h 69 void appendChildToContainer(GenericNode* child, GenericNodeContainer* container)
71 child->setParent(container);
75 child->setPreviousSibling(lastChild);
76 lastChild->setNextSibling(child);
78 container->setFirstChild(child);
80 container->setLastChild(child);
  /external/webkit/WebCore/rendering/
RenderApplet.cpp 65 for (Node* child = element->firstChild(); child; child = child->nextSibling()) {
66 if (child->hasTagName(paramTag)) {
67 HTMLParamElement* p = static_cast<HTMLParamElement*>(child);
  /external/webkit/WebCore/svg/
SVGElementInstance.h 127 void appendChild(PassRefPtr<SVGElementInstance> child);
131 friend void appendChildToContainer(GenericNode* child, GenericNodeContainer* container);
141 void setFirstChild(SVGElementInstance* child) { m_firstChild = child; }
142 void setLastChild(SVGElementInstance* child) { m_lastChild = child; }
SVGTextPathElement.cpp 99 bool SVGTextPathElement::childShouldCreateRenderer(Node* child) const
101 if (child->isTextNode()
103 || child->hasTagName(SVGNames::altGlyphTag)
105 || child->hasTagName(SVGNames::trefTag) || child->hasTagName(SVGNames::tspanTag) || child->hasTagName(SVGNames::textPathTag))
  /frameworks/base/awt/org/apache/harmony/awt/wtk/
CreationParams.java 60 * Non-MDI child window
86 * Window is child of parent, otherwise it's
87 * toplevel(child of desktop) window owned by parent.
89 public boolean child = false; field in class:CreationParams
124 * Id of parent or owner window, see child field
125 * For non-child window without owner equals 0.
  /frameworks/base/core/tests/coretests/src/android/widget/listview/arrowscroll/
ListItemFocusablesFarApartTest.java 46 * Get the child of a list item.
48 * @param index The index of the child.
57 View child = listItem.getChildAt(index); local
58 return child.getTop() + listItem.getTop();
63 View child = listItem.getChildAt(index); local
64 return child.getBottom() + listItem.getTop();
  /cts/tests/tests/widget/src/android/widget/cts/
HorizontalScrollViewTest.java 120 + "HorizontalScrollView#addView(View) when there is already one child in the view.")
131 fail("did not throw IllegalStateException when add more than one child");
146 + "is already one child in the view.")
157 fail("did not throw IllegalStateException when add more than one child");
172 fail("did not throw IllegalStateException when add more than one child");
196 + " one child in the view or the layoutparams is null")
209 fail("did not throw IllegalStateException when add more than one child");
234 + " one child in the view or the layoutparams is null")
247 fail("did not throw IllegalStateException when add more than one child");
274 fail("did not throw IllegalStateException when add more than one child");
386 MyView child = new MyView(mActivity); local
412 MyView child = new MyView(mActivity); local
    [all...]
  /external/clearsilver/perl/
ClearSilver.xs 227 perlHDF* child;
235 child = (perlHDF*)malloc(sizeof(perlHDF));
236 if (!child) {
240 child->hdf = tmp_hdf;
241 child->err = STATUS_OK;
242 RETVAL = child;
254 perlHDF* child;
262 child = (perlHDF*)malloc(sizeof(perlHDF));
263 if (!child) {
267 child->hdf = tmp_hdf
    [all...]
  /external/qemu/android/
config.c 439 AConfig* child; local
444 for (child = node->first_child; child; child = child->next)
445 writer_node(w,child,margin+4);
456 AConfig* child; local
462 for (child = root->first_child; child; child = child->next
    [all...]
config.h 43 /* locate a named child of a config node */
46 /* add a named child to a config node (or modify it if it already exists) */
50 /* look up a child by name and return its value, eventually converted
  /frameworks/base/core/java/android/content/
UriMatcher.java 165 UriMatcher child;
168 child = children.get(j);
169 if (token.equals(child.mText)) {
170 node = child;
175 // Child not found, create it
176 child = new UriMatcher();
178 child.mWhich = NUMBER;
180 child.mWhich = TEXT;
182 child.mWhich = EXACT;
184 child.mText = token
    [all...]
  /frameworks/base/media/libdrm/mobile2/include/util/xml/
ExpatWrapper.h 47 * virtual funtion to deal with the start element in expat, need implement by child class.
52 * virtual funtion to deal with the end element in expat, need implement by child class.
57 * virtual funtion to deal with the data handler in expat, need implement by child class.
  /packages/apps/Email/src/org/apache/james/mime4j/field/
ContentTypeField.java 100 * Gets the MIME type defined in the child's
102 * if child is <code>null</code> or hasn't got a MIME type value set.
103 * If child's MIME type is multipart but no boundary
104 * has been set the MIME type of child will be derived from
107 * @param child the child.
111 public static String getMimeType(ContentTypeField child,
114 if (child == null || child.getMimeType().length() == 0
115 || child.isMultipart() && child.getBoundary() == null) {
    [all...]
  /packages/apps/Launcher2/src/com/android/launcher2/
CellLayout.java 122 final View child = getChildAt(i); local
123 child.cancelLongPress();
136 public void addView(View child, int index, ViewGroup.LayoutParams params) {
142 super.addView(child, index, params);
146 public void requestChildFocus(View child, View focused) {
147 super.requestChildFocus(child, focused);
148 if (child != null) {
150 child.getDrawingRect(r);
174 final View child = getChildAt(i); local
176 if ((child.getVisibility()) == VISIBLE || child.getAnimation() != null)
528 View child = getChildAt(i); local
558 View child = getChildAt(i); local
826 View child = getChildAt(i); local
    [all...]
  /system/extras/tests/cpueater/
cpueater.c 16 * Simple cpu eater busy loop. Runs as a daemon. prints the child PID to
39 case 0: /* child */
48 case 0: /* second child */
  /dalvik/libcore/dalvik/src/main/java/dalvik/system/
Zygote.java 54 * new child is expected to eventually call forkAndSpecialize()
56 * @return 0 if this is the child, pid of the child
78 * @return 0 if this is the child, pid of the child
97 * common actions performed in forkAndSpecialize, the pid of the child
98 * process is recorded such that the death of the child process will cause
113 * @return 0 if this is the child, pid of the child
  /dalvik/libcore/dom/src/test/java/org/w3c/domts/level1/core/
characterdatagetdata.java 33 * Retrieve the character data from the second child
66 CharacterData child; local
71 child = (CharacterData) nameNode.getFirstChild();
72 childData = child.getData();
hc_characterdatagetdata.java 33 * Retrieve the character data from the second child
65 CharacterData child; local
70 child = (CharacterData) nameNode.getFirstChild();
71 childData = child.getData();
nodelistindexequalzero.java 32 * employee and access its first child by using an index
64 Node child; local
70 child = employeeList.item(0);
71 childName = child.getNodeName();
  /external/bluetooth/glib/gio/fam/
fam-helper.c 105 GFile *child, *parent; local
116 child = g_file_new_for_path (path);
117 parent = g_file_get_parent (child);
118 g_file_monitor_emit_event (monitor, child, NULL, eflags);
120 g_object_unref (child);
125 GFile *child; local
133 child = g_file_new_for_path (path);
134 g_file_monitor_emit_event (monitor, child, NULL, eflags);
136 g_object_unref (child);

Completed in 575 milliseconds

1 2 3 4 5 67 8 91011>>