HomeSort by relevance Sort by last modified time
    Searched defs:childCount (Results 51 - 75 of 264) sorted by null

1 23 4 5 6 7 8 91011

  /development/samples/browseable/BasicTransition/src/com.example.android.common/view/
SlidingTabStrip.java 119 final int childCount = getChildCount();
126 if (childCount > 0) {
157 for (int i = 0; i < childCount - 1; i++) {
  /development/samples/browseable/FragmentTransition/src/com.example.android.common/view/
SlidingTabStrip.java 119 final int childCount = getChildCount();
126 if (childCount > 0) {
157 for (int i = 0; i < childCount - 1; i++) {
  /development/samples/browseable/SlidingTabsBasic/src/com.example.android.common/view/
SlidingTabStrip.java 119 final int childCount = getChildCount();
126 if (childCount > 0) {
157 for (int i = 0; i < childCount - 1; i++) {
  /development/samples/browseable/SlidingTabsColors/src/com.example.android.common/view/
SlidingTabStrip.java 119 final int childCount = getChildCount();
126 if (childCount > 0) {
157 for (int i = 0; i < childCount - 1; i++) {
  /development/samples/browseable/SwipeRefreshLayoutBasic/src/com.example.android.common/view/
SlidingTabStrip.java 119 final int childCount = getChildCount();
126 if (childCount > 0) {
157 for (int i = 0; i < childCount - 1; i++) {
  /development/samples/browseable/SwipeRefreshListFragment/src/com.example.android.common/view/
SlidingTabStrip.java 119 final int childCount = getChildCount();
126 if (childCount > 0) {
157 for (int i = 0; i < childCount - 1; i++) {
  /development/samples/browseable/SwipeRefreshMultipleViews/src/com.example.android.common/view/
SlidingTabStrip.java 119 final int childCount = getChildCount();
126 if (childCount > 0) {
157 for (int i = 0; i < childCount - 1; i++) {
  /frameworks/base/core/java/android/view/accessibility/
AccessibilityCache.java 322 final int childCount = current.getChildCount();
323 for (int i = 0; i < childCount; i++) {
419 final int childCount = nodeParent.getChildCount();
420 for (int k = 0; k < childCount; k++) {
434 final int childCount = node.getChildCount();
435 for (int k = 0; k < childCount; k++) {
AccessibilityWindowInfo.java 398 final int childCount = childIds.size();
399 parcel.writeInt(childCount);
400 for (int i = 0; i < childCount; i++) {
416 final int childCount = parcel.readInt();
417 if (childCount > 0) {
419 mChildIds = new LongArray(childCount);
421 for (int i = 0; i < childCount; i++) {
464 final int childCount = mChildIds.size();
465 for (int i = 0; i < childCount; i++) {
467 if (i < childCount - 1)
    [all...]
AccessibilityInteractionClient.java     [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
TaskStackViewTouchHandler.java 95 int childCount = mSv.getChildCount();
96 for (int i = childCount - 1; i >= 0; i--) {
  /frameworks/ex/common/java/com/android/common/widget/
GroupingListAdapter.java 54 int childCount;
354 metadata.childCount = size;
399 return mPositionMetadata.childCount;
477 bindGroupView(view, mContext, mCursor, mPositionMetadata.childCount,
  /packages/apps/Contacts/src/com/android/contacts/editor/
KindSectionView.java 74 int childCount = mEditors.getChildCount();
75 for (int i = 0; i < childCount; i++) {
  /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) {
  /external/jsilver/src/com/google/clearsilver/jsilver/data/
NestedMapData.java 51 private int childCount = 0;
99 if (sym.children == null && sym.childCount >= CHILD_MAP_THRESHOLD) {
123 sym.childCount++;
145 parent.childCount--;
284 return followSymLinkToTheBitterEnd().childCount;
  /frameworks/base/core/java/android/widget/
AbsSpinner.java 257 final int childCount = getChildCount();
262 for (int i = 0; i < childCount; i++) {
DayPickerView.java 376 final int childCount = getChildCount();
377 for (int i = 0; i < childCount; i++) {
402 final int childCount = getChildCount();
403 for (int i = 0; i < childCount; i++) {
TabWidget.java 103 protected int getChildDrawingOrder(int childCount, int i) {
109 if (i == childCount - 1) {
185 int childCount = 0;
189 childCount++;
192 if (childCount > 0) {
200 final int delta = extraWidth / childCount;
205 childCount--;
  /frameworks/base/packages/Keyguard/src/com/android/keyguard/
KeyguardSecurityContainer.java 395 final int childCount = mSecurityViewFlipper.getChildCount();
398 for (int i = 0; i < childCount; i++) {
  /frameworks/base/packages/PrintSpooler/src/com/android/printspooler/ui/
PrintPreviewController.java 373 final int childCount = mRecyclerView.getChildCount();
374 if (childCount > 0) {
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/stack/
StackScrollAlgorithm.java 178 int childCount = algorithmState.visibleChildren.size();
179 for (int i = 0; i < childCount; i++) {
194 int childCount = algorithmState.visibleChildren.size();
195 for (int i = 0; i < childCount; i++) {
260 int childCount = algorithmState.visibleChildren.size();
261 for (int i = 0; i < childCount; i++) {
310 int childCount = hostView.getChildCount();
312 state.visibleChildren.ensureCapacity(childCount);
313 for (int i = 0; i < childCount; i++) {
344 int childCount = algorithmState.visibleChildren.size()
    [all...]
  /frameworks/opt/datetimepicker/src/com/android/datetimepicker/date/
DayPickerView.java 380 final int childCount = getChildCount();
381 for (int i = 0; i < childCount; i++) {
410 final int childCount = getChildCount();
411 for (int i = 0; i < childCount; i++) {
  /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/Calendar/src/com/android/calendar/agenda/
AgendaListView.java 132 int childCount = getChildCount();
140 for (int i = 0; i < childCount; ++i) {
241 int childCount = getChildCount();
242 for (int i = 0; i < childCount; ++i) {
339 int childCount = getChildCount();
342 for (int i = 0; i < childCount; i++) {

Completed in 1177 milliseconds

1 23 4 5 6 7 8 91011