Searched refs:count (Results 276 - 300 of 525) sorted by relevance

<<11121314151617181920>>

/packages/apps/Launcher3/src/com/android/launcher3/
H A DAppsCustomizePagedView.java847 int count = getChildCount();
848 for (int i = 0; i < count; i++) {
1224 int count = items.size();
1225 for (int i = 0; i < count; ++i) {
1248 int count = items.size();
1249 for (int i = 0; i < count; ++i) {
1423 int count = list.size();
1424 for (int i = 0; i < count; ++i) {
1534 final int count = getChildCount();
1535 int windowSize = Math.min(count, sLookBehindPageCoun
[all...]
H A DFolder.java361 int count = items.size();
362 for (int i = 0; i < count; i++) {
372 for (int i = 0; i < count; i++) {
387 int count = 0;
393 count++;
398 setupContentForNumItems(count);
959 private void setupContentDimensions(int count) { argument
969 if (countX * countY < count) {
977 } else if ((countY - 1) * countX >= count && countY >= countX) {
979 } else if ((countX - 1) * countY >= count) {
1058 setupContentForNumItems(int count) argument
[all...]
/packages/apps/UnifiedEmail/src/com/android/mail/browse/
H A DConversationViewAdapter.java704 final int count = mItems.size();
705 if (count < 4) {
706 LogUtils.e(LOG_TAG, "not enough items in the adapter. count: %s", count);
709 final ConversationFooterItem item = (ConversationFooterItem) mItems.remove(count - 1);
719 final int count = mItems.size();
720 if (count < 4) {
721 LogUtils.e(LOG_TAG, "not enough items in the adapter. count: %s", count);
724 return (ConversationFooterItem) mItems.get(count
[all...]
H A DSendersView.java156 int count = conversationInfo.messageCount;
158 if (count > 1) {
159 messageInfo.append(count + "");
165 // If we are showing a message count or any draft text and there
168 if (hasSenders || count > 1) {
187 // If we are showing a message count or any draft text, prepend
189 if (count > 1 || draftCount > 0) {
209 if (count > 1 || (draftCount > 0 && hasSenders) || showState) {
263 // count
/packages/apps/Nfc/src/com/android/nfc/handover/
H A DHandoverTransfer.java142 // For incoming transfers, count can be set later
496 int count = 0;
499 Integer.toString(count) + extension);
500 count++;
511 int count = 0;
514 Integer.toString(count);
516 count++;
/packages/apps/Settings/src/com/android/settings/accounts/
H A DAccountSyncSettings.java326 int count = getPreferenceScreen().getPreferenceCount();
327 for (int i = 0; i < count; i++) {
382 for (int i = 0, count = getPreferenceScreen().getPreferenceCount(); i < count; i++) {
462 final int count = accounts.length;
463 for (int i = 0; i < count; i++) {
H A DManageAccountsSettings.java203 int count = getPreferenceScreen().getPreferenceCount();
205 for (int i = 0; i < count; i++) {
253 for (int i = 0, count = getPreferenceScreen().getPreferenceCount(); i < count; i++) {
320 final int count = currentSyncs.size();
321 for (int i = 0; i < count; i++) {
/packages/experimental/LoaderApp/src/com/android/loaderapp/model/
H A DEntityDelta.java223 int count = 0;
227 count++;
229 return count;
266 int count = 0;
268 count += getMimeEntriesCount(mimeType, onlyVisible);
270 return count;
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/settings/
H A DCustomInputStyleSettingsFragment.java109 final int count = imi.getSubtypeCount();
110 for (int i = 0; i < count; i++) {
271 final int count = adapter.getCount();
272 for (int i = 0; i < count; i++) {
595 final int count = group.getPreferenceCount();
596 for (int i = 0; i < count; i++) {
/packages/apps/Browser/src/com/android/browser/view/
H A DScrollerView.java989 int count = focusables.size();
990 for (int i = 0; i < count; i++) {
1064 int count = getChildCount();
1065 if (count > 0) {
1066 View view = getChildAt(count - 1);
1102 int count = getChildCount();
1103 if (count > 0) {
1104 View view = getChildAt(count - 1);
1327 final int count = getChildCount();
1329 if (count
[all...]
/packages/apps/Gallery2/src/com/android/photos/
H A DMultiChoiceManager.java92 int count = mDelegate.getSelectedItemCount();
94 R.plurals.number_of_items_selected, count, count));
/packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/util/
H A DContactMatcher.java163 * Captures the max score and match count for a specific contact. Used in an
439 int count = 0;
443 count++;
449 return matches.subList(0, count);
/packages/apps/Bluetooth/src/com/android/bluetooth/opp/
H A DBluetoothOppManager.java228 for (int i = 0, count = mUrisOfSendingFiles.size(); i < count; i++) {
430 int count = mUris.size();
432 for (int i = 0; i < count; i++) {
/packages/apps/UnifiedEmail/src/com/android/mail/ui/
H A DFolderOperations.java143 public int count() { method in class:FolderOperations
/packages/providers/TelephonyProvider/src/com/android/providers/telephony/
H A DMmsProvider.java258 Log.e(TAG, "cursor.count() != 1: " + uri);
638 int count = db.delete(TABLE_PDU, selection, selectionArgs);
639 if (count > 0) {
647 return count;
776 int count = db.update(table, finalValues, finalSelection, selectionArgs);
777 if (notify && (count > 0)) {
780 return count;
797 int count = (c != null) ? c.getCount() : 0;
798 if (count != 1) {
804 if (count
[all...]
/packages/apps/Bluetooth/src/com/android/bluetooth/map/
H A DBluetoothMapContentObserver.java114 // Text only MMS converted to SMS if sms parts less than or equal to defined count
1066 int count = 0;
1083 count = mResolver.update(uri, contentValues, where, null);
1084 if (D) Log.d(TAG, " -> "+count +" rows updated!");
1091 count = mResolver.update(uri, contentValues, null, null);
1093 if (D) Log.d(TAG, " -> "+count +" rows updated!");
1099 count = mProviderClient.update(uri, contentValues, null, null);
1101 if(count < 1) {
1164 Log.v(TAG, "pushMessage: messages count=" + messages.length);
1441 int count
1550 writeMmsDataPart(long handle, MimePart part, int count) argument
[all...]
H A DBluetoothMapFolderElement.java220 public byte[] encode(int offset, int count) throws UnsupportedEncodingException { argument
230 stopIndex = offset + count;
/packages/apps/Browser/src/com/android/browser/
H A DNavigationBarBase.java266 public void beforeTextChanged(CharSequence s, int start, int count, int after) { } argument
269 public void onTextChanged(CharSequence s, int start, int before, int count) { } argument
H A DUrlInputView.java317 public void beforeTextChanged(CharSequence s, int start, int count, int after) { } argument
320 public void onTextChanged(CharSequence s, int start, int before, int count) { argument
/packages/apps/Contacts/tests/src/com/android/contacts/activities/
H A DPeopleActivityTest.java140 private void expectContactListQuery(int count) { argument
151 for (int i = 1; i <= count; i++) {
/packages/apps/ContactsCommon/src/com/android/contacts/common/list/
H A DViewPagerTabs.java146 final int count = adapter.getCount();
147 for (int i = 0; i < count; i++) {
/packages/apps/ContactsCommon/tests/src/com/android/contacts/common/model/account/
H A DExternalAccountTypeTest.java209 final int count = Math.max(actualKinds.size(), expectedKinds.size());
210 for (int i = 0; i < count; i++) {
/packages/apps/DeskClock/src/com/android/deskclock/
H A DLabelDialogFragment.java102 public void beforeTextChanged(CharSequence s, int start, int count, int after) {
106 public void onTextChanged(CharSequence s, int start, int before, int count) {
/packages/apps/Dialer/src/com/android/dialer/list/
H A DPhoneFavoriteListView.java207 final int count = getChildCount();
209 for (int childIdx = 0; childIdx < count; childIdx++) {
/packages/apps/Email/src/com/android/email/activity/setup/
H A DAccountSetupNamesFragment.java75 public void beforeTextChanged(CharSequence s, int start, int count, int after) {
79 public void onTextChanged(CharSequence s, int start, int before, int count) {

Completed in 3500 milliseconds

<<11121314151617181920>>