HomeSort by relevance Sort by last modified time
    Searched refs:childCount (Results 101 - 125 of 298) sorted by null

1 2 3 45 6 7 8 91011>>

  /frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/
RecyclerViewAnimationsTest.java 338 final AtomicInteger childCount = new AtomicInteger(0);
343 childCount.incrementAndGet();
355 childCount.decrementAndGet();
362 childCount.incrementAndGet();
375 assertEquals("Children count should add up", childCount.get(),
    [all...]
  /packages/apps/Launcher3/WallpaperPicker/src/com/android/launcher3/
WallpaperPickerActivity.java 451 int childCount = mWallpapersView.getChildCount();
452 for (int i = 0; i < childCount; i++) {
575 int childCount = mWallpapersView.getChildCount();
577 for (int i = 0; i < childCount; i++) {
606 int childCount = mWallpapersView.getChildCount();
609 for (int i = 0; i < childCount; i++) {
640 int childCount = mWallpapersView.getChildCount();
641 for (int i = 0; i < childCount; i++) {
742 final int childCount = masterWallpaperList.getChildCount();
749 for (int i = 0; i < childCount; i++)
    [all...]
  /prebuilts/sdk/current/support/v7/recyclerview/libs/
android-support-v7-recyclerview.jar 
  /frameworks/base/core/java/android/widget/
FastScroller.java 502 public void onItemCountChanged(int childCount, int itemCount) {
503 if (mOldItemCount != itemCount || mOldChildCount != childCount) {
505 mOldChildCount = childCount;
507 final boolean hasMoreItems = itemCount - childCount > 0;
510 setThumbPos(getPosFromItemCount(firstVisibleItem, childCount, itemCount));
513 updateLongList(childCount, itemCount);
517 private void updateLongList(int childCount, int itemCount) {
518 final boolean longList = childCount > 0 && itemCount / childCount >= MIN_PAGES;
    [all...]
AbsSpinner.java 257 final int childCount = getChildCount();
262 for (int i = 0; i < childCount; i++) {
Toolbar.java     [all...]
  /frameworks/support/v7/recyclerview/src/android/support/v7/widget/
RecyclerView.java     [all...]
  /packages/apps/Launcher2/src/com/android/launcher2/
Workspace.java     [all...]
  /development/samples/devbytes/animation/ToonGame/src/com/example/android/toongame/
PlayerSetupActivity.java 294 int childCount = parent.getChildCount();
295 ObjectAnimator[] childAnims = new ObjectAnimator[childCount];
296 for (int i = 0; i < childCount; ++i) {
  /frameworks/base/core/java/com/android/internal/widget/
AutoScrollHelper.java     [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/stack/
NotificationStackScrollLayout.java     [all...]
  /packages/apps/ContactsCommon/src/com/android/contacts/common/list/
ContactTileAdapter.java 590 final int childCount = getChildCount();
591 if (childCount == 0) {
615 for (int i = 0; i < childCount; i++) {
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
NavigationBarView.java 559 int childCount = linearLayout.getChildCount();
560 ArrayList<View> childList = new ArrayList<>(childCount);
561 for (int i = 0; i < childCount; i++) {
565 for (int i = childCount - 1; i >= 0; i--) {
  /frameworks/support/v4/java/android/support/v4/view/
ViewPager.java 646 protected int getChildDrawingOrder(int childCount, int i) {
647 final int index = mDrawingOrder == DRAW_ORDER_REVERSE ? childCount - 1 - i : i;
    [all...]
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/
BaseTreeAdaptor.as 121 var nc:int = newRootTree.childCount;
139 if ( r.childCount==0 ) {
142 else if ( r.childCount==1 ) {
195 return Tree(t).childCount;
  /external/chromium_org/third_party/WebKit/Source/core/page/
FrameTree.cpp 167 name.appendNumber(childCount() - 1);
234 unsigned FrameTree::childCount() const
  /frameworks/base/core/java/android/app/
FragmentBreadCrumbs.java 197 final int childCount = getChildCount();
198 if (childCount == 0) {
  /frameworks/base/packages/PrintSpooler/src/com/android/printspooler/ui/
PrintPreviewController.java 364 final int childCount = mRecyclerView.getChildCount();
365 if (childCount > 0) {
  /frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
AbsSpinnerCompat.java 235 final int childCount = getChildCount();
240 for (int i = 0; i < childCount; i++) {
  /packages/apps/Browser/src/com/android/browser/
BreadCrumbView.java 264 int childCount = getChildCount();
265 while (childIndex < childCount) {
  /packages/apps/Contacts/src/com/android/contacts/editor/
KindSectionView.java 83 int childCount = mEditors.getChildCount();
84 for (int i = 0; i < childCount; i++) {
  /frameworks/base/packages/Keyguard/src/com/android/keyguard/
KeyguardHostView.java 632 final int childCount = mAppWidgetContainer.getChildCount();
634 for (int i = 0; i < childCount; i++) {
753 final int childCount = mAppWidgetContainer.getChildCount();
755 for (int i = 0; i < childCount; i++) {
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/
DragLayer.java     [all...]
AppsCustomizePagedView.java 285 int childCount = childrenLayout.getChildCount();
286 if (childCount > 0) {
287 i = (currentPage * numItemsPerPage) + (childCount / 2);
293 int childCount = layout.getChildCount();
294 if (childCount > 0) {
296 (currentPage * numItemsPerPage) + (childCount / 2);
    [all...]
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
GridLayoutManager.java 587 int childCount = getChildCount();
588 for (int i = 0; i < childCount; i++) {
    [all...]

Completed in 805 milliseconds

1 2 3 45 6 7 8 91011>>