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

<<11121314151617181920>>

  /packages/apps/Launcher3/src/com/android/launcher3/
FocusHelper.java 106 View child = null; local
115 child = newParent.getChildAt(
124 child = newParent.getChildAt(0, 0);
131 child = newParent.getChildAt(countX - 1, countY - 1);
138 child = newParent.getChildAt(0, 0);
146 child = FocusLogic.getAdjacentChildInNextPage(newParent, v, newIconIndex);
150 child = cellLayout.getChildAt(0, 0);
153 child = pagedView.getLastItem();
156 child = itemContainer.getChildAt(newIconIndex);
159 if (child != null)
    [all...]
  /packages/apps/Settings/src/com/android/settings/dashboard/
DashboardContainerView.java 64 // Measure the child
97 final DashboardTileView child = (DashboardTileView) getChildAt(i); local
98 final ViewGroup.LayoutParams lp = child.getLayoutParams();
99 if (child.getVisibility() == GONE) {
104 final int colSpan = child.getColumnSpan();
112 child.setDividerVisibility(false);
129 child.layout(childLeft, childTop, childRight, childBottom);
133 cursor += child.getColumnSpan();
  /packages/apps/Settings/src/com/android/settings/widget/
ChartView.java 110 final View child = getChildAt(i); local
111 final LayoutParams params = (LayoutParams) child.getLayoutParams();
115 if (child instanceof ChartNetworkSeriesView) {
119 child.layout(childRect.left, childRect.top, childRect.right, childRect.bottom);
121 } else if (child instanceof ChartGridView) {
124 child.layout(childRect.left, childRect.top, childRect.right,
125 childRect.bottom + child.getPaddingBottom());
127 } else if (child instanceof ChartSweepView) {
128 layoutSweep((ChartSweepView) child, parentRect, childRect);
129 child.layout(childRect.left, childRect.top, childRect.right, childRect.bottom)
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
AttachmentTileGrid.java 146 // = [total width] / [child count]
162 final View child = getChildAt(i); local
165 child.measure(
198 final View child = getChildAt(i); local
201 final int childWidth = child.getMeasuredWidth();
202 final int childHeight = child.getMeasuredHeight();
214 child.layout(childLeft, childTop,
227 // This method is called when the child tile is INVISIBLE (meaning "empty"), and the
  /packages/providers/CalendarProvider/tests/src/com/android/providers/calendar/
ICalendarTest.java 59 ICalendar.Component child = new ICalendar.Component("DUMMY2", parent); local
60 child.addProperty(new ICalendar.Property("prop2", "value2"));
61 parent.addChild(child);
136 String childText = "BEGIN:CHILD\n" +
140 "END:CHILD\n";
  /external/apache-harmony/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/
LoggerTest.java 343 "testGetLogger_WithParent_ParentLogger.child"));
344 // create the child logger
346 .getLogger("testGetLogger_WithParent_ParentLogger.child");
350 assertEquals("testGetLogger_WithParent_ParentLogger.child", log
543 "testGetLoggerWithRes_WithParent_ParentLogger.child"));
544 // create the child logger
546 "testGetLoggerWithRes_WithParent_ParentLogger.child",
551 assertEquals("testGetLoggerWithRes_WithParent_ParentLogger.child", log
807 Logger child = Logger.getLogger("testGetParent_NormalNamed.child"); local
985 Logger child = new MockLogger("childLogger", null); local
1033 Logger child = new MockLogger("childLogger", null); local
1083 Logger child = new MockLogger("childLogger", null); local
1138 Logger child = new MockLogger("childLogger", null); local
1218 Logger child = new MockLogger("childLogger", null); local
1268 Logger child = new MockLogger("childLogger", null); local
1317 Logger child = new MockLogger("childLogger", null); local
1369 Logger child = new MockLogger("childLogger", null); local
1421 Logger child = new MockLogger("childLogger", null); local
1473 Logger child = new MockLogger("childLogger", null); local
1525 Logger child = new MockLogger("childLogger", null); local
1577 Logger child = new MockLogger("childLogger", null); local
1629 Logger child = new MockLogger("childLogger", null); local
1683 Logger child = new MockLogger("childLogger", null); local
1750 Logger child = new MockLogger("childLogger", null); local
1822 Logger child = new MockLogger("childLogger", null); local
1889 Logger child = new MockLogger("childLogger", null); local
1955 Logger child = new MockLogger("childLogger", null); local
2025 Logger child = new MockLogger("childLogger", null); local
2100 Logger child = new MockLogger("childLogger", null); local
2170 Logger child = new MockLogger("childLogger", null); local
2713 Logger child = new MockLogger("childLogger", VALID_RESOURCE_BUNDLE); local
2765 Logger child = new MockLogger("childLogger", VALID_RESOURCE_BUNDLE); local
2811 Logger child = new MockLogger("childLogger", VALID_RESOURCE_BUNDLE); local
2856 Logger child = new MockLogger("childLogger", VALID_RESOURCE_BUNDLE); local
2929 Logger child = new MockLogger("childLogger", null); local
2959 Logger child = new MockLogger("childLogger", null); local
    [all...]
  /external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
XMPSerializerRDF.java 850 XMPNode child = (XMPNode) it.next(); local
851 declareUsedNamespaces(child, usedPrefixes, indent);
1067 XMPNode child = (XMPNode) it.next(); local
1068 serializePrettyRDFProperty(child, false, indent + 2);
1089 XMPNode child = (XMPNode) it.next(); local
1090 serializePrettyRDFProperty(child, false, indent + 1);
1100 XMPNode child = (XMPNode) it.next(); local
1101 if (!canBeRDFAttrProp(child))
1109 write(child.getName());
1111 appendNodeValue(child.getValue(), true)
    [all...]
  /frameworks/base/core/java/android/view/
ViewGroup.java 140 * apply on the child being drawn.
162 // Does this group have a child that can accept the current drag payload?
228 // When set, ViewGroup invalidates only the child's rectangle
237 // a child needs to be invalidated and FLAG_OPTIMIZE_INVALIDATE is set
271 * to get the index of the child to draw for that iteration.
280 * invoked when a child is drawn.
342 * When set, this ViewGroup will split MotionEvents to multiple child Views when appropriate.
445 // Index of the child's left position in the mLocation array
447 // Index of the child's top position in the mLocation array
450 // Child views of this ViewGrou
832 View child = getChildAt(i); local
1073 final View child = children[i]; local
1101 final View child = children[i]; local
1162 View child = children[i]; local
1185 View child = children[i]; local
1219 final View child = children[i]; local
1343 final View child = children[i]; local
1402 final View child = children[i]; local
1543 final View child = children[i]; local
1579 final View child = children[i]; local
1591 final View child = children[i]; local
1603 final View child = children[i]; local
1724 final View child = (preorderedList == null) local
1798 final View child = firstOldHoverTarget.child; local
1931 View child = children.getChildAt(i); local
2011 final View child = (preorderedList == null) local
2167 final View child = (preorderedList == null) local
2790 View child = children[i]; local
2842 final View child = children[i]; local
2880 View child = children.getChildAt(i); local
2958 final View child = (preorderedList == null) local
2981 final View child = childrenForAccessibility.get(i); local
3167 View child = getChildAt(i); local
3198 View child = getChildAt(i); local
3335 final View child = children[i]; local
3396 final View child = (preorderedList == null) local
3422 final View child = disappearingChildren.get(i); local
3571 final View child = children[i]; local
3584 final View child = disappearingChildren.get(i); local
3653 View child = getChildAt(i); local
3726 final View child = children[i]; local
3759 final View child = children[i]; local
5831 View child = mChildren[i]; local
5897 final View child = children[i]; local
6246 final View child = children[i]; local
6307 final View child = children[i]; local
6430 final View child = getChildAt(i); local
6448 final View child = getChildAt(i); local
6466 final View child = getChildAt(i); local
6484 final View child = getChildAt(i); local
6501 final View child = getChildAt(i); local
6516 final View child = getChildAt(i); local
6531 final View child = getChildAt(i); local
6545 final View child = getChildAt(i); local
6561 final View child = getChildAt(i); local
6577 final View child = getChildAt(i); local
6593 final View child = getChildAt(i); local
6609 final View child = getChildAt(i); local
6721 View child = getChildAt(i); local
6736 View child = getChildAt(i); local
7459 public View child; field in class:ViewGroup.TouchTarget
7509 public View child; field in class:ViewGroup.HoverTarget
7592 View child = parent.getChildAt(i); local
7598 View child = children.get(i); local
    [all...]
  /frameworks/base/core/java/android/widget/
TabWidget.java 154 void measureChildBeforeLayout(View child, int childIndex,
164 super.measureChildBeforeLayout(child, childIndex,
188 final View child = getChildAt(i); local
189 if (child.getVisibility() == GONE) continue;
198 final View child = getChildAt(i); local
199 if (child.getVisibility() == GONE) continue;
200 final int childWidth = child.getMeasuredWidth();
207 mImposedTabsHeight = Math.max(mImposedTabsHeight, child.getMeasuredHeight());
315 public void childDrawableStateChanged(View child) {
316 if (getTabCount() > 0 && child == getChildTabViewAt(mSelectedTab))
476 View child = getChildTabViewAt(i); local
    [all...]
  /cts/suite/audio_quality/lib/src/task/
ModelBuilder.cpp 121 const TiXmlElement* child = self.FirstChildElement(); local
122 while (child != NULL) {
127 if (strcmp(child->Value(), mParsingTable[i].name) == 0) {
132 LOGE("ModelBuilder::parseGeneric unknown element %s", child->Value());
137 // check if the type is allowed as child
147 LOGE("ModelBuilder::parseGeneric unsupported child type %d for type %d", childType,
151 UniquePtr<TaskGeneric> taskChild(parseGeneric(*child, i));
153 LOGE("ModelBuilder::parseGeneric failed in parsing child type %d for type %d",
158 LOGE("ModelBuilder::parseGeneric cannot add child type %d to type %d", childType,
164 child = child->NextSiblingElement()
    [all...]
  /cts/tests/tests/widget/src/android/widget/cts/
ExpandableListTester.java 103 // Check child index in context menu
106 View child = mExpandableListView.getChildAt(index local
108 mExpandableListView.showContextMenuForChild(child);
183 Assert.assertEquals("Wrong flat position for child ",
187 Assert.assertEquals("Wrong flat position for child ",
  /development/samples/Support7Demos/src/com/example/android/supportv7/widget/decorator/
DividerItemDecoration.java 72 final View child = parent.getChildAt(i); local
73 final RecyclerView.LayoutParams params = (RecyclerView.LayoutParams) child
75 final int top = child.getBottom() + params.bottomMargin +
76 Math.round(ViewCompat.getTranslationY(child));
89 final View child = parent.getChildAt(i); local
90 final RecyclerView.LayoutParams params = (RecyclerView.LayoutParams) child
92 final int left = child.getRight() + params.rightMargin +
93 Math.round(ViewCompat.getTranslationX(child));
  /external/antlr/antlr-3.4/runtime/C/src/
antlr3basetree.c 44 static void addChild (pANTLR3_BASE_TREE tree, pANTLR3_BASE_TREE child);
51 static void setChild (pANTLR3_BASE_TREE tree, ANTLR3_UINT32 i, void * child);
144 addChild (pANTLR3_BASE_TREE tree, pANTLR3_BASE_TREE child)
149 if (child == NULL)
154 if (child->isNilNode(child) == ANTLR3_TRUE)
156 if (child->children != NULL && child->children == tree->children)
160 ANTLR3_FPRINTF(stderr, "ANTLR3: An attempt was made to add a child list to itself!\n");
166 if (child->children != NULL
390 pANTLR3_BASE_TREE child; local
481 pANTLR3_BASE_TREE child; local
    [all...]
antlr3commontree.c 77 // Install a vector factory to create, track and free() any child
165 // whatever put it back on the stack (for instance if it had a child vector,
256 // First close the vector factory that supplied all the child pointer
370 /// Create a new vector for holding child nodes using the inbuilt
458 pANTLR3_BASE_TREE child; local
460 child = (pANTLR3_BASE_TREE)tree->getChild(tree, 0);
461 return child->getLine(child);
478 pANTLR3_BASE_TREE child; local
480 child = (pANTLR3_BASE_TREE)tree->getChild(tree, 0)
    [all...]
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
DOTTreeGenerator.java 71 new StringTemplate("$parent$ -> $child$ // \"$parentText$\" -> \"$childText$\"\n");
134 // must have already dumped as child from previous
143 // for each child, do a "<unique-name> [label=text]" node def
145 Object child = adaptor.getChild(tree, i); local
146 StringTemplate nodeST = getNodeST(adaptor, child);
148 toDOTDefineNodes(child, adaptor, treeST);
161 // must have already dumped as child from previous
168 // for each child, do a parent -> child edge using unique node names
171 Object child = adaptor.getChild(tree, i) local
    [all...]
  /external/boringssl/src/crypto/bytestring/
cbb.c 172 if (cbb->child == NULL || cbb->pending_len_len == 0) {
178 if (!CBB_flush(cbb->child) ||
237 cbb->child->base = NULL;
238 cbb->child = NULL;
263 cbb->child = out_contents;
300 cbb->child = out_contents;
351 CBB child; local
355 if (!CBB_add_asn1(cbb, &child, CBS_ASN1_INTEGER)) {
368 if ((byte & 0x80) && !CBB_add_u8(&child, 0)) {
373 if (!CBB_add_u8(&child, byte))
    [all...]
  /external/compiler-rt/lib/asan/tests/
asan_mac_test.cc 29 pthread_t child; local
30 PTHREAD_CREATE(&child, NULL, CFAllocatorDefaultDoubleFree, NULL);
31 PTHREAD_JOIN(child, NULL); // Shouldn't be reached.
159 // Call malloc in the child process to make sure we won't deadlock.
172 // TODO(glider): need to detect that none of the child processes deadlocked.
  /external/droiddriver/src/io/appium/droiddriver/uiautomation/
UiAutomationElement.java 120 AccessibilityNodeInfo child = node.getChild(i); local
121 if (child != null) {
122 children.add(context.getElement(child, this));
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/configuration/org.eclipse.osgi/bundles/24/1/.cp/ant_tasks/
helpbase-ant.jar 
  /external/elfutils/src/tests/
addrscopes.c 55 Dwarf_Die child; local
56 if (dwarf_child (die, &child) == 0)
58 switch (dwarf_tag (&child))
63 dwarf_diename (&child),
64 (uint64_t) dwarf_dieoffset (&child));
69 while (dwarf_siblingof (&child, &child) == 0);
76 && dwarf_child (&origin, &child) == 0)
78 switch (dwarf_tag (&child))
83 dwarf_diename (&child));
    [all...]
backtrace-data.c 73 pid_t child = dwfl_pid (dwfl); local
76 long l = ptrace (PTRACE_PEEKDATA, child, (void *) (uintptr_t) addr, NULL);
142 report_module (Dwfl *dwfl, pid_t child, Dwarf_Addr addr)
145 char *long_name = maps_lookup (child, addr, &base);
170 pid_t child = dwfl_pid (dwfl_thread_dwfl (thread)); local
173 long l = ptrace (PTRACE_GETREGS, child, NULL, &user_regs);
270 pid_t child = fork (); local
271 switch (child)
287 pid_t pid = waitpid (child, &status, 0);
289 assert (pid == child);
    [all...]
funcscopes.c 57 Dwarf_Die child; local
58 if (dwarf_child (die, &child) == 0)
60 switch (dwarf_tag (&child))
65 dwarf_diename (&child),
66 (uint64_t) dwarf_dieoffset (&child));
71 while (dwarf_siblingof (&child, &child) == 0);
78 && dwarf_child (&origin, &child) == 0)
80 switch (dwarf_tag (&child))
85 dwarf_diename (&child));
    [all...]
  /external/jemalloc/include/jemalloc/internal/
rtree.h 40 rtree_node_elm_t *child; member in union:rtree_node_elm_s::__anon10758
162 rtree_node_elm_t *child; local
165 child = elm->child;
166 if (!rtree_node_valid(child))
167 child = atomic_read_p(&elm->pun);
168 return (child);
174 rtree_node_elm_t *child; local
176 child = rtree_child_tryread(elm);
177 if (unlikely(!rtree_node_valid(child)))
239 rtree_node_elm_t *node, *child; local
267 rtree_node_elm_t *node, *child; local
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/scene/
AssetLinkNode.java 75 * Add a "linked" child. These are loaded from the assetManager when the
96 Spatial child = manager.loadAsset(key); local
97 assetChildren.put(key, child);
98 attachChild(child);
116 public void detachLinkedChild(Spatial child, ModelKey key) {
119 detachChild(child);
135 Spatial child = manager.loadAsset(assetKey); local
136 attachChild(child);
137 assetChildren.put(assetKey, child);
161 Spatial child = null local
    [all...]
  /external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/collision/shapes/
CompoundCollisionShape.java 65 * adds a child shape at the given local translation
66 * @param shape the child shape to add
67 * @param location the local location of the child shape
77 * adds a child shape at the given local translation
78 * @param shape the child shape to add
79 * @param location the local location of the child shape
103 * removes a child shape
104 * @param shape the child shape to remove
145 ChildCollisionShape child = it.next(); local
146 addChildShapeDirect(child.shape, child.location, child.rotation)
    [all...]

Completed in 1320 milliseconds

<<11121314151617181920>>