HomeSort by relevance Sort by last modified time
    Searched defs:child (Results 451 - 475 of 1770) sorted by null

<<11121314151617181920>>

  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
ObservableScrollView.java 62 View child = getChildAt(0); local
64 child.getHeight() - (getHeight() - mPaddingBottom - mPaddingTop));
  /frameworks/base/tools/aapt2/
XmlDom.cpp 321 void Node::addChild(std::unique_ptr<Node> child) {
322 child->parent = this;
323 children.push_back(std::move(child));
336 for (auto& child : children) {
337 ns->addChild(child->clone());
353 for (auto& child : children) {
354 el->addChild(child->clone());
375 Node* child = childNode.get(); local
376 while (child->type == NodeType::kNamespace) {
377 if (child->children.empty())
403 Node* child = childNode.get(); local
    [all...]
  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/bars/
CustomBar.java 106 View child = getChildAt(index); local
107 if (child instanceof ImageView) {
108 ImageView imageView = (ImageView) child;
139 View child = getChildAt(index); local
140 if (child instanceof TextView) {
141 TextView textView = (TextView) child;
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/omadm/
XMLNode.java 53 public void addChild(XMLNode child) {
54 mChildren.add(child);
118 for (XMLNode child : mChildren)
119 child.toString(subIndent, sb);
  /frameworks/rs/java/tests/VrDemo/src/com/example/android/rs/vr/
VrActivity.java 207 final View child = p.getChildAt(i); local
208 if (child instanceof ViewGroup) {
209 uncheckOthers((ViewGroup) child, v);
211 if (v != child && child instanceof ToggleButton) {
212 ToggleButton t = (ToggleButton) child;
  /frameworks/support/v7/appcompat/src/android/support/v7/widget/
LinearLayoutCompat.java 44 * You can also specify gravity, which specifies the alignment of all the child elements by
101 * use the child at this index as the baseline.
109 * The additional offset to the child's baseline.
293 final View child = getVirtualChildAt(i); local
295 if (child != null && child.getVisibility() != GONE) {
297 final LayoutParams lp = (LayoutParams) child.getLayoutParams();
298 final int top = child.getTop() - lp.topMargin - mDividerHeight;
305 final View child = getVirtualChildAt(count - 1); local
307 if (child == null)
321 final View child = getVirtualChildAt(i); local
338 final View child = getVirtualChildAt(count - 1); local
428 final View child = getChildAt(mBaselineAlignedChildIndex); local
613 final View child = getVirtualChildAt(i); local
733 final View child = getVirtualChildAt(i); local
776 final View child = getVirtualChildAt(i); local
850 final View child = getVirtualChildAt(i); local
893 final View child = getVirtualChildAt(i); local
959 final View child = getVirtualChildAt(i); local
1113 final View child = getVirtualChildAt(i); local
1164 final View child = getVirtualChildAt(i); local
1271 final View child = getVirtualChildAt(i); local
1316 final View child = getVirtualChildAt(i); local
1457 final View child = getVirtualChildAt(i); local
1568 final View child = getVirtualChildAt(childIndex); local
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vpx_mem/memory_manager/include/
cavl_impl.h 526 AVL_HANDLE child; variable
565 ** leaf node, or a node with a single leaf as its child, to put
572 child = AVL_GET_LESS(h, 1);
576 child = AVL_GET_GREATER(h, 1);
584 if (child != AVL_NULL) {
589 h = child;
592 child = AVL_GET_LESS(h, 1);
595 child = AVL_GET_GREATER(h, 1);
601 } while (child != AVL_NULL);
610 /* Get the handle of the opposite child, which may not be null. *
795 AVL_HANDLE child; variable
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/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/main/java/java/util/prefs/
FilePreferencesImpl.java 101 throw new BackingStoreException("Cannot get child names for " + toString()
109 FilePreferencesImpl child = new FilePreferencesImpl(this, name); local
110 return child;
  /libcore/luni/src/main/java/org/apache/harmony/xml/dom/
InnerNodeImpl.java 104 * Inserts {@code newChild} at {@code index}. If it is already child of
204 Node child = getFirstChild(); local
205 if (child == null) {
209 Node next = child.getNextSibling();
211 return hasTextContent(child) ? child.getTextContent() : "";
220 Node child = getFirstChild(); local
221 while (child != null) {
222 if (hasTextContent(child)) {
223 ((NodeImpl) child).getTextContent(buf)
    [all...]
  /libcore/luni/src/test/java/tests/org/w3c/dom/
GetElementsByTagNameNS.java 98 Node child; local
121 child = (Node) elementList.item(indexN10076);
122 childName = child.getNodeName();
130 Node child; local
144 child = (Node) elementList.item(indexN10059);
145 childName = child.getNodeName();
205 Node child; local
230 child = (Node) elementList.item(indexN1007E);
231 childName = child.getNodeName();
240 Node child; local
    [all...]
ImportNode.java 50 * Create a child Text node with value "importedText" for the attribute node
53 * whose name matches "elem:attr1" and a child node whose value equals
104 Node child; local
130 child = aNode.getFirstChild();
131 childValue = child.getNodeValue();
185 Node child; local
195 child = aNode.getFirstChild();
196 childValue = child.getNodeValue();
233 Node child; local
246 child = aNode.getFirstChild()
    [all...]
  /libcore/support/src/test/java/org/apache/harmony/security/tests/support/cert/
TestUtils.java 256 PolicyNode child = new PolicyNode() { local
258 // child
287 s.add(child);
    [all...]
  /ndk/sources/third_party/googletest/googletest/test/
gtest_filter_unittest.py 54 # Checks if this platform can pass empty environment variables to child
57 # os.environ. We then use 'eval' to parse the child's output so that an
60 child = gtest_test_utils.Subprocess( variable
62 CAN_PASS_EMPTY_ENV = eval(child.output)
65 # Check if this platform can unset environment variables in child processes.
69 # We use 'eval' to parse the child's output so that an exception
73 child = gtest_test_utils.Subprocess( variable
75 CAN_UNSET_ENV = eval(child.output)
  /packages/apps/Bluetooth/src/com/android/bluetooth/map/
BluetoothMapAccountLoader.java 209 BluetoothMapAccountItem child = BluetoothMapAccountItem.create( local
219 child.mIsChecked = (c.getInt(exposeIndex) != 0);
220 child.mIsChecked = true; // TODO: Revert when this works
223 if(child.mIsChecked)
227 children.add(child);
  /packages/apps/Browser/src/com/android/browser/
BookmarkItem.java 157 protected void measureChild(View child, int parentWidthMeasureSpec,
160 super.measureChild(child, parentWidthMeasureSpec, parentHeightMeasureSpec);
164 final ViewGroup.LayoutParams lp = child.getLayoutParams();
171 child.measure(childWidthMeasureSpec, childHeightMeasureSpec);
175 protected void measureChildWithMargins(View child,
179 super.measureChildWithMargins(child, parentWidthMeasureSpec,
184 final MarginLayoutParams lp = (MarginLayoutParams) child.getLayoutParams();
193 child.measure(childWidthMeasureSpec, childHeightMeasureSpec);
  /packages/apps/Contacts/src/com/android/contacts/editor/
EditorAnimator.java 217 final View child = views.get(i); local
219 ObjectAnimator.ofFloat(child, View.TRANSLATION_Y, fromY, toY);
245 // consider the child view below the target view only if it is physically
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
Path.java 226 Path child = p.mChildren.get(key); local
227 if (child == null) {
233 dumpAll(child, prefix2 + "+-- ", prefix2 + "| ");
235 dumpAll(child, prefix2 + "+-- ", prefix2 + " ");
  /prebuilts/ndk/4/platforms/android-3/arch-arm/usr/include/linux/
ioport.h 23 struct resource *parent, *sibling, *child; member in struct:resource
  /prebuilts/ndk/4/platforms/android-4/arch-arm/usr/include/linux/
ioport.h 23 struct resource *parent, *sibling, *child; member in struct:resource
  /prebuilts/ndk/4/platforms/android-5/arch-arm/usr/include/linux/
ioport.h 23 struct resource *parent, *sibling, *child; member in struct:resource
  /prebuilts/ndk/4/platforms/android-5/arch-x86/usr/include/linux/
ioport.h 23 struct resource *parent, *sibling, *child; member in struct:resource
  /prebuilts/ndk/4/platforms/android-8/arch-arm/usr/include/linux/
ioport.h 23 struct resource *parent, *sibling, *child; member in struct:resource
  /prebuilts/ndk/4/platforms/android-8/arch-x86/usr/include/linux/
ioport.h 23 struct resource *parent, *sibling, *child; member in struct:resource
  /prebuilts/ndk/5/platforms/android-3/arch-arm/usr/include/linux/
ioport.h 23 struct resource *parent, *sibling, *child; member in struct:resource

Completed in 1106 milliseconds

<<11121314151617181920>>