/external/skia/src/animator/ |
SkScript.cpp | 22 this could map to the 'name' attribute of a given child of an array 473 SkTypedArray* child = (*array)[index].fArray; local 474 forget(child); // forgets children of child 475 int found = fTrackArray.find(child); [all...] |
/external/skia/src/ports/ |
SkFontConfigParser_android.cpp | 506 const TagHandler* child = parent->tag ? parent->tag(self, tag, attributes) : NULL; local 507 if (child) { 508 if (child->start) { 509 child->start(self, tag, attributes); 511 self->fHandler.push(child); 512 XML_SetCharacterDataHandler(self->fParser, child->chars); 528 const TagHandler* child = self->fHandler.top(); local 529 if (child->end) { 530 child->end(self, tag);
|
/external/skia/src/views/ |
SkView.cpp | 135 SkView* child; local 139 while ((child = iter.next()) != NULL) 140 child->draw(childCanvas); 224 SkView* child, *focus; local 225 while ((child = iter.next()) != NULL) 226 if ((focus = child->acceptFocus(dir)) != NULL) 232 SkView* child, *focus; local 233 while ((child = iter.next()) != NULL) 234 if ((focus = child->acceptFocus(dir)) != NULL) 255 SkView* child, *parent local 379 SkView* child; local 701 SkView* child; local 812 SkView* child; local [all...] |
/external/slf4j/log4j-over-slf4j/compatibility/lib/ |
slf4j-api-1.4.2.jar | |
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/ |
ParseRDF.java | 132 Node child = rdfRdfNode.getChildNodes().item(i); local 134 if (!isWhitespaceNode(child)) 136 rdf_NodeElement (xmp, xmpParent, child, true); 446 // or an emptyPropertyElt. Look at the child XML nodes to decide which. 583 // found second child element 585 "Invalid child of resource property element", BADRDF); 597 // didn't found any child elements 598 throw new XMPException("Missing child of resource property element", BADRDF); 651 Node child = xmlNode.getChildNodes().item(i); local 652 if (child.getNodeType() == Node.TEXT_NODE 1168 XMPNode child = (XMPNode) it.next(); local [all...] |
/frameworks/base/cmds/uiautomator/library/core-src/com/android/uiautomator/core/ |
UiSelector.java | 521 * Adds a child UiSelector criteria to this selector. 524 * child widgets under a specific parent widget. 543 * Adds a child UiSelector criteria to this selector which is used to 547 * sibling widgets as well all child widgets under a parent. 595 * Selectors may have a hierarchy defined by specifying child nodes to be matched. 600 * @return a child selector if one exists. Else null if this selector does not 601 * reference child node. 831 * Leaf selector indicates no more child or parent selectors 880 UiSelector child = (UiSelector)mSelectorAttributes.get(UiSelector.SELECTOR_CHILD); local 881 if (child.getLastSubSelector() == null) [all...] |
/frameworks/base/core/java/android/view/accessibility/ |
AccessibilityInteractionClient.java | 815 AccessibilityNodeInfo child = infos.get(j); local [all...] |
/frameworks/base/core/java/android/widget/ |
AbsSpinner.java | 53 /** Temporary frame to hold a child View's frame rectangle */ 238 int getChildHeight(View child) { 239 return child.getMeasuredHeight(); 242 int getChildWidth(View child) { 243 return child.getMeasuredWidth(); 352 View child = getChildAt(i); local 353 if (child.getVisibility() == View.VISIBLE) { 354 child.getHitRect(frame);
|
ZoomButtonsController.java | 423 * respects the gravity of a child's layout parameters. 613 // Reverse order so the child drawn on top gets first dibs. 622 View child = mContainer.getChildAt(i); local 623 if (child.getVisibility() != View.VISIBLE) { 627 child.getHitRect(frame); 629 return child; 650 closestChild = child;
|
/frameworks/base/libs/hwui/ |
RenderNode.cpp | 379 // If a child of ours is being attached to our parent then this will incorrectly 559 RenderNode* child = childOp->mRenderNode; local 564 if (isProjectionReceiver && !child->properties().getProjectBackwards()) { 582 child->computeOrderingImpl(childOp, 649 RenderNode* child = childOp->mRenderNode; local 650 float childZ = child->properties().getZ(); 655 } else if (!child->properties().getProjectBackwards()) { 756 shadowIndex = drawIndex; // potentially draw shadow for each pos Z child 779 // only the actual child DL draw needs to be in save/restore, [all...] |
/frameworks/base/packages/Keyguard/src/com/android/keyguard/ |
KeyguardSecurityContainer.java | 127 for (int child = 0; child < children; child++) { 128 if (mSecurityViewFlipper.getChildAt(child).getId() == securityViewIdForMode) { 129 view = ((KeyguardSecurityView)mSecurityViewFlipper.getChildAt(child)); 378 // Find and show this child. 396 View child = getChildAt(i); local 397 if (child instanceof KeyguardSecurityViewFlipper) { 398 return (KeyguardSecurityViewFlipper) child;
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/ |
QSTileView.java | 293 private static void layout(View child, int left, int top) { 294 child.layout(left, top, left + child.getMeasuredWidth(), top + child.getMeasuredHeight());
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/ |
ExpandableView.java | 74 View child = getChildAt(i); local 75 if (child.getVisibility() == GONE || isChildInvisible(child)) { 79 ViewGroup.LayoutParams layoutParams = child.getLayoutParams(); 87 child.measure( 90 int childHeight = child.getMeasuredHeight(); 93 mMatchParentViews.add(child); 98 for (View child : mMatchParentViews) { 99 child.measure(getChildMeasureSpec( 100 widthMeasureSpec, 0 /* padding */, child.getLayoutParams().width) [all...] |
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/ |
StatusBarIconController.java | 215 View child = mNotificationIcons.getChildAt(i); local 216 if (!toShow.contains(child)) { 217 toRemove.add(child);
|
/frameworks/opt/calendar/src/com/android/calendarcommon2/ |
ICalendar.java | 116 * Adds a child component to this component. 117 * @param child The child component. 119 public void addChild(Component child) { 120 getOrCreateChildren().add(child); 492 Component child = new Component(componentName, component); local 494 component.addChild(child); 496 return child;
|
/frameworks/opt/datetimepicker/src/com/android/datetimepicker/date/ |
DayPickerView.java | 189 View child; local 192 // Find a child that's completely in the view 194 child = getChildAt(i++); 195 if (child == null) { 198 top = child.getTop(); 200 Log.d(TAG, "child at " + (i - 1) + " has top " + top); 206 if (child != null) { 207 selectedPosition = getPositionForView(child); 256 MonthView child = (MonthView) view.getChildAt(0); local 257 if (child == null) 314 View child = getChildAt(i); local 353 View child = getChildAt(i); local 382 final View child = getChildAt(i); local 412 final View child = getChildAt(i); local [all...] |
/frameworks/support/v4/java/android/support/v4/widget/ |
DrawerLayout.java | 65 * attribute on child views corresponding to which side of the view you want the drawer 69 * <p>To use a DrawerLayout, position your primary content view as the first child with 70 * a width and height of <code>match_parent</code>. Add drawers as child views after the main 226 * @param drawerView The child view that was moved 279 void dispatchChildInsets(View child, Object insets, int drawerGravity); 290 public void dispatchChildInsets(View child, Object insets, int drawerGravity) { 313 public void dispatchChildInsets(View child, Object insets, int drawerGravity) { 314 DrawerLayoutCompatApi21.dispatchChildInsets(child, insets, drawerGravity); 397 View child = getChildAt(i); local 398 if (isDrawerView(child)) { 757 final View child = getChildAt(i); local 808 final View child = getChildAt(i); local 839 final View child = getChildAt(i); local 917 final View child = getChildAt(i); local 1034 final View child = getChildAt(i); local 1294 final View child = mLeftDragger.findTopChildUnder((int) x, (int) y); local 1400 final View child = getChildAt(i); local 1621 final View child = getChildAt(i); local 1635 final View child = mNonDrawerViews.get(i); local 1652 final View child = getChildAt(i); local 2084 final View child = v.getChildAt(i); local [all...] |
/libcore/luni/src/main/java/java/util/concurrent/ |
PriorityBlockingQueue.java | 359 int child = (k << 1) + 1; // assume left child is least local 360 Object c = array[child]; 361 int right = child + 1; 364 c = array[child = right]; 368 k = child; 380 int child = (k << 1) + 1; local 381 Object c = array[child]; 382 int right = child + 1; 384 c = array[child = right] [all...] |
/libcore/luni/src/main/java/java/util/prefs/ |
XMLParser.java | 201 Preferences child = prefs.node(names[i]); local 203 exportEntries(child, out); 204 exportSubTree(child, out); 383 Element child = (Element) children.item(i); local 384 String name = child.getAttribute("name");
|
/packages/apps/Calendar/src/com/android/calendar/agenda/ |
AgendaListView.java | 332 View child = getChildAt(0); local 333 // View not set yet, so not child - return 334 if (child == null) { 337 int start = getPositionForView(child);
|
/packages/apps/Calendar/src/com/android/calendar/event/ |
AttendeesView.java | 135 View child = getChildAt(i); local 136 View minusButton = child.findViewById(R.id.contact_remove);
|
/packages/apps/Camera2/src/com/android/camera/settings/ |
CameraSettingsActivity.java | 269 Preference child = parent.getPreference(i); local 270 if (child instanceof PreferenceScreen) { 271 PreferenceScreen match = findByKey((PreferenceScreen) child, key);
|
/packages/apps/Dialer/src/com/android/dialer/list/ |
SpeedDialFragment.java | 341 Log.d(TAG, "Child count : " + mListView.getChildCount()); 344 final View child = mListView.getChildAt(i); local 354 Log.d(TAG, "Saving itemId: " + itemId + " for listview child " + i + " Top: " 355 + child.getTop()); 357 mItemIdTopMap.put(itemId, child.getTop()); 358 mItemIdLeftMap.put(itemId, child.getLeft()); 384 final View child = mListView.getChildAt(i); 398 child, "alpha", 0.0f, 1.0f)); 403 final int top = child.getTop(); 404 final int left = child.getLeft() [all...] |
/packages/apps/Launcher2/src/com/android/launcher2/ |
AppsCustomizeTabHost.java | 243 View child = visiblePages.get(i); 244 if (child instanceof PagedViewCellLayout) { 245 ((PagedViewCellLayout) child).resetChildrenOnKeyListeners(); 246 } else if (child instanceof PagedViewGridLayout) { 247 ((PagedViewGridLayout) child).resetChildrenOnKeyListeners(); 250 mAppsCustomizePane.removeView(child); 254 LayoutParams p = new FrameLayout.LayoutParams(child.getMeasuredWidth(), 255 child.getMeasuredHeight()); 256 p.setMargins((int) child.getLeft(), (int) child.getTop(), 0, 0) 447 final View child = parent.getChildAt(i); local [all...] |
/packages/apps/Launcher3/src/com/android/launcher3/allapps/ |
AllAppsGridAdapter.java | 130 View child = parent.getChildAt(i); local 131 ViewHolder holder = (ViewHolder) parent.getChildViewHolder(child); 132 if (!isValidHolderAndChild(holder, child, items)) { 138 int top = child.getTop() + child.getHeight() + mPredictionBarDividerOffset; 146 int viewTopOffset = (2 * child.getPaddingTop()); 173 int y = child.getTop() + sectionBaseline; 235 private boolean isValidHolderAndChild(ViewHolder holder, View child, 239 child.getLayoutParams(); 256 * Returns whether to draw the divider for a given child [all...] |