HomeSort by relevance Sort by last modified time
    Searched refs:child (Results 51 - 75 of 3822) sorted by null

1 23 4 5 6 7 8 91011>>

  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
elementgetelementsbytagnameaccessnodelist.java 62 Node child; local
69 child = testEmployee.getFirstChild();
70 childType = (int) child.getNodeType();
73 child = child.getNextSibling();
75 childName = child.getNodeName();
77 child = child.getFirstChild();
78 childValue = child.getNodeValue();
hc_namednodemapchildnoderange.java 32 * last child of the third "p" element and traverse the
67 Node child; local
80 child = attributes.item(2);
81 assertNotNull("attr2", child);
84 child = attributes.item(0);
85 assertNotNull("attr0", child);
86 child = attributes.item(1);
87 assertNotNull("attr1", child);
88 child = attributes.item(3);
89 assertNull("attr3", child);
    [all...]
characterdatasetnodevalue.java 33 * Retrieve the character data from the second child
64 CharacterData child; local
70 child = (CharacterData) nameNode.getFirstChild();
71 child.setNodeValue("Marilyn Martin");
72 childData = child.getData();
74 childValue = child.getNodeValue();
hc_characterdatasetnodevalue.java 33 * Retrieve the character data from the second child
64 CharacterData child; local
70 child = (CharacterData) nameNode.getFirstChild();
71 child.setNodeValue("Marilyn Martin");
72 childData = child.getData();
74 childValue = child.getNodeValue();
  /external/google-breakpad/src/testing/gtest/test/
gtest_xml_test_utils.py 64 * It has an equivalent set of child nodes (including elements and
99 'number of child elements differ in element ' + actual_node.tagName)
100 for child_id, child in expected_children.iteritems():
104 self.AssertEquivalentNodes(child, actual_children[child_id])
115 Fetches all of the child nodes of element, a DOM Element object.
122 four is encountered, if two child elements with the same identifying
127 for child in element.childNodes:
128 if child.nodeType == Node.ELEMENT_NODE:
129 self.assert_(child.tagName in self.identifying_attribute,
130 'Encountered unknown element <%s>' % child.tagName
    [all...]
  /external/gtest/test/
gtest_xml_test_utils.py 64 * It has an equivalent set of child nodes (including elements and
103 'number of child elements differ in element ' + actual_node.tagName)
104 for child_id, child in expected_children.iteritems():
108 self.AssertEquivalentNodes(child, actual_children[child_id])
119 Fetches all of the child nodes of element, a DOM Element object.
126 four is encountered, if two child elements with the same identifying
131 for child in element.childNodes:
132 if child.nodeType == Node.ELEMENT_NODE:
133 self.assert_(child.tagName in self.identifying_attribute,
134 'Encountered unknown element <%s>' % child.tagName
    [all...]
  /external/protobuf/gtest/test/
gtest_xml_test_utils.py 63 * It has an equivalent set of child nodes (including elements and
98 "number of child elements differ in element " + actual_node.tagName)
99 for child_id, child in expected_children.iteritems():
103 self.AssertEquivalentNodes(child, actual_children[child_id])
114 Fetches all of the child nodes of element, a DOM Element object.
121 four is encountered, if two child elements with the same identifying
126 for child in element.childNodes:
127 if child.nodeType == Node.ELEMENT_NODE:
128 self.assert_(child.tagName in self.identifying_attribute,
129 "Encountered unknown element <%s>" % child.tagName
    [all...]
  /external/vulkan-validation-layers/tests/gtest-1.7.0/test/
gtest_xml_test_utils.py 64 * It has an equivalent set of child nodes (including elements and
103 'number of child elements differ in element ' + actual_node.tagName)
104 for child_id, child in expected_children.iteritems():
108 self.AssertEquivalentNodes(child, actual_children[child_id])
119 Fetches all of the child nodes of element, a DOM Element object.
126 four is encountered, if two child elements with the same identifying
131 for child in element.childNodes:
132 if child.nodeType == Node.ELEMENT_NODE:
133 self.assert_(child.tagName in self.identifying_attribute,
134 'Encountered unknown element <%s>' % child.tagName
    [all...]
  /ndk/sources/third_party/googletest/googletest/test/
gtest_xml_test_utils.py 64 * It has an equivalent set of child nodes (including elements and
101 'number of child elements differ in element ' + actual_node.tagName)
102 for child_id, child in expected_children.iteritems():
106 self.AssertEquivalentNodes(child, actual_children[child_id])
117 Fetches all of the child nodes of element, a DOM Element object.
124 four is encountered, if two child elements with the same identifying
129 for child in element.childNodes:
130 if child.nodeType == Node.ELEMENT_NODE:
131 self.assert_(child.tagName in self.identifying_attribute,
132 'Encountered unknown element <%s>' % child.tagName
    [all...]
  /packages/apps/Gallery/src/com/android/camera/
EvenlySpacedLayout.java 54 View child = getChildAt(i); local
55 if (child.getVisibility() == GONE) continue;
56 measureChild(child, widthMeasureSpec, heightMeasureSpec);
58 width += child.getMeasuredWidth();
59 height = Math.max(height, child.getMeasuredHeight());
61 height += child.getMeasuredHeight();
62 width = Math.max(width, child.getMeasuredWidth());
75 View child = getChildAt(i); local
76 if (child.getVisibility() == GONE) continue;
77 usedWidth += child.getMeasuredWidth()
86 View child = getChildAt(i); local
102 View child = getChildAt(i); local
113 View child = getChildAt(i); local
    [all...]
  /external/elfutils/tests/
backtrace-subr.sh 115 child=$1
116 tempfiles $child.{bt,err}
117 (set +ex; testrun ${abs_builddir}/backtrace --backtrace-exec=${abs_builddir}/$child 1>$child.bt 2>$child.err; true)
118 cat $child.{bt,err}
119 check_native_unsupported $child.err $child
120 check_all $child.{bt,err} $child
    [all...]
  /frameworks/support/design/src/android/support/design/internal/
BaselineLayout.java 55 final View child = getChildAt(i); local
56 if (child.getVisibility() == GONE) {
60 measureChild(child, widthMeasureSpec, heightMeasureSpec);
61 final int baseline = child.getBaseline();
64 maxChildDescent = Math.max(maxChildDescent, child.getMeasuredHeight() - baseline);
66 maxWidth = Math.max(maxWidth, child.getMeasuredWidth());
67 maxHeight = Math.max(maxHeight, child.getMeasuredHeight());
69 ViewCompat.getMeasuredState(child));
92 final View child = getChildAt(i); local
93 if (child.getVisibility() == GONE)
    [all...]
  /toolchain/binutils/binutils-2.25/gprof/
cg_arcs.c 56 * range covered by CHILD.
59 arc_lookup (Sym *parent, Sym *child)
63 if (!parent || !child)
65 printf ("[arc_lookup] parent == 0 || child == 0\n");
68 DBG (LOOKUPDEBUG, printf ("[arc_lookup] parent %s child %s\n",
69 parent->name, child->name));
72 DBG (LOOKUPDEBUG, printf ("[arc_lookup]\t parent %s child %s\n",
73 arc->parent->name, arc->child->name));
74 if (child->addr >= arc->child->add
167 Sym *child; local
441 Sym *old_head, *child; local
    [all...]
alpha.c 97 Sym *child; local
102 indirect_child.name = _("<indirect child>");
150 child = sym_lookup (&symtab, dest_pc);
151 if (child)
155 (unsigned long) dest_pc, child->name,
156 (unsigned long) child->addr));
157 if (child->addr == dest_pc || child->addr == dest_pc - 8)
161 arc_add (parent, child, (unsigned long) 0);
cg_dfn.c 60 * Is CHILD already numbered?
63 is_numbered (Sym *child)
65 return child->cg.top_order != DFN_NAN && child->cg.top_order != DFN_BUSY;
70 * Is CHILD already busy?
73 is_busy (Sym *child)
75 if (child->cg.top_order == DFN_NAN)
84 * CHILD is part of a cycle. Find the top caller into this cycle
90 find_cycle (Sym *child)
100 if (child == head
    [all...]
  /external/bison/lib/
wait-process.h 38 - child is the pid of the subprocess.
57 extern int wait_subprocess (pid_t child, const char *progname,
66 extern void register_slave_subprocess (pid_t child);
  /external/chromium-trace/catapult/telemetry/telemetry/util/mac/
keychain_helper.py 23 child = subprocess.Popen(path, stdout=subprocess.PIPE)
24 child.communicate()
25 return child.returncode != 0
35 child = subprocess.Popen(command, stderr=subprocess.PIPE)
36 stderr = child.communicate()[1]
55 child = subprocess.Popen(command)
56 child.communicate()
57 return child.returncode == 0
  /frameworks/support/compat/ics/android/support/v4/view/
ViewGroupCompatIcs.java 27 public static boolean onRequestSendAccessibilityEvent(ViewGroup group, View child,
29 return group.onRequestSendAccessibilityEvent(child, event);
ViewParentCompatICS.java 28 ViewParent parent, View child, AccessibilityEvent event) {
29 return parent.requestSendAccessibilityEvent(child, event);
  /frameworks/support/compat/kitkat/android/support/v4/view/
ViewParentCompatKitKat.java 23 public static void notifySubtreeAccessibilityStateChanged(ViewParent parent, View child,
25 parent.notifySubtreeAccessibilityStateChanged(child, source, changeType);
  /ndk/sources/host-tools/make-3.81/
commands.h 40 extern void delete_child_targets PARAMS ((struct child *child));
  /cts/tools/utils/
android_api_description_splitter.py 105 for child in elem.childNodes:
106 if child.nodeType == xml.dom.minidom.Node.ELEMENT_NODE:
107 children.append(child)
109 for child in children:
110 if child.nodeName == "doc":
111 elem.removeChild(child)
112 children.remove(child)
114 for child in children:
115 child = self.__trimElem(child)
    [all...]
  /frameworks/base/core/java/android/view/
ViewParent.java 31 * child of this view parent. This will schedule a layout pass of the view
44 * Called when a child wants the view hierarchy to gather and report
51 * @param child the view requesting the transparent region computation
54 public void requestTransparentRegion(View child);
57 * All or part of a child is dirty and needs to be redrawn.
59 * @param child The child which is dirty
60 * @param r The area within the child that is invalid
62 public void invalidateChild(View child, Rect r);
65 * All or part of a child is dirty and needs to be redrawn
    [all...]
  /external/sfntly/cpp/src/test/
test_xml_utils.cc 27 for (const TiXmlNode* child = node->FirstChild();
28 child != NULL; child = child->NextSibling()) {
29 InternalGetNodesWithName(child, name, wanted_nodes);
  /frameworks/support/fragment/java/android/support/v4/app/
NoSaveStateFrameLayout.java 31 static ViewGroup wrap(View child) {
32 NoSaveStateFrameLayout wrapper = new NoSaveStateFrameLayout(child.getContext());
33 ViewGroup.LayoutParams childParams = child.getLayoutParams();
39 child.setLayoutParams(lp);
40 wrapper.addView(child);
49 * Override to prevent freezing of any child views.
57 * Override to prevent thawing of any child views.

Completed in 1348 milliseconds

1 23 4 5 6 7 8 91011>>