Searched refs:add (Results 1 - 25 of 1104) sorted by relevance

1234567891011>>

/packages/apps/Dialer/src/com/android/dialer/dialpad/
H A DSmartDialPrefix.java137 * example space " ", mark the current token as complete and add it to the list of tokens.
146 result.add(currentIndexToken.toString());
154 result.add(currentIndexToken.toString());
181 result.add(fullNameToken.toString());
191 fullNames.add(indexTokens.get(indexTokens.size() - 1));
202 result.add(initial + fullNames.get(j));
205 result.add(initial + result.get(j));
209 fullNames.add(indexTokens.get(i) + currentFullName);
234 result.add(SmartDialNameMatcher.normalizeNumber(number, mMap));
242 result.add(SmartDialNameMatche
[all...]
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/
H A DFragmentUtils.java36 sLatinImeFragments.add(DictionarySettingsFragment.class.getName());
37 sLatinImeFragments.add(AboutPreferences.class.getName());
38 sLatinImeFragments.add(AdditionalSubtypeSettings.class.getName());
39 sLatinImeFragments.add(DebugSettings.class.getName());
40 sLatinImeFragments.add(SettingsFragment.class.getName());
41 sLatinImeFragments.add(SpellCheckerSettingsFragment.class.getName());
42 sLatinImeFragments.add(UserDictionaryAddWordFragment.class.getName());
43 sLatinImeFragments.add(UserDictionaryList.class.getName());
44 sLatinImeFragments.add(UserDictionaryLocalePicker.class.getName());
45 sLatinImeFragments.add(UserDictionarySetting
[all...]
H A DBoundedTreeSet.java36 public boolean add(final SuggestedWordInfo e) { method in class:BoundedTreeSet
37 if (size() < mCapacity) return super.add(e);
39 super.add(e);
/packages/apps/Gallery2/src/com/android/gallery3d/data/
H A DClusterSource.java41 mMatcher.add("/cluster/*/time", CLUSTER_ALBUMSET_TIME);
42 mMatcher.add("/cluster/*/location", CLUSTER_ALBUMSET_LOCATION);
43 mMatcher.add("/cluster/*/tag", CLUSTER_ALBUMSET_TAG);
44 mMatcher.add("/cluster/*/size", CLUSTER_ALBUMSET_SIZE);
45 mMatcher.add("/cluster/*/face", CLUSTER_ALBUMSET_FACE);
47 mMatcher.add("/cluster/*/time/*", CLUSTER_ALBUM_TIME);
48 mMatcher.add("/cluster/*/location/*", CLUSTER_ALBUM_LOCATION);
49 mMatcher.add("/cluster/*/tag/*", CLUSTER_ALBUM_TAG);
50 mMatcher.add("/cluster/*/size/*", CLUSTER_ALBUM_SIZE);
51 mMatcher.add("/cluste
[all...]
H A DFilterSource.java44 mMatcher.add("/filter/mediatype/*/*", FILTER_BY_MEDIATYPE);
45 mMatcher.add("/filter/delete/*", FILTER_BY_DELETE);
46 mMatcher.add("/filter/empty/*", FILTER_BY_EMPTY);
47 mMatcher.add(FILTER_EMPTY_ITEM, FILTER_BY_EMPTY_ITEM);
48 mMatcher.add(FILTER_CAMERA_SHORTCUT, FILTER_BY_CAMERA_SHORTCUT);
49 mMatcher.add(FILTER_CAMERA_SHORTCUT_ITEM, FILTER_BY_CAMERA_SHORTCUT_ITEM);
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/
H A DBaseFiltersManager.java120 filters.add(ImageFilterTinyPlanet.class);
121 filters.add(ImageFilterRedEye.class);
122 filters.add(ImageFilterWBalance.class);
123 filters.add(ImageFilterExposure.class);
124 filters.add(ImageFilterVignette.class);
125 filters.add(ImageFilterGrad.class);
126 filters.add(ImageFilterContrast.class);
127 filters.add(ImageFilterShadows.class);
128 filters.add(ImageFilterHighlights.class);
129 filters.add(ImageFilterVibranc
[all...]
/packages/inputmethods/LatinIME/tools/dicttool/tests/com/android/inputmethod/latin/makedict/
H A DBinaryDictEncoderFlattenTreeTests.java37 dict.add("foo", 1, null, false /* isNotAWord */);
38 dict.add("fta", 1, null, false /* isNotAWord */);
39 dict.add("ftb", 1, null, false /* isNotAWord */);
40 dict.add("bar", 1, null, false /* isNotAWord */);
41 dict.add("fool", 1, null, false /* isNotAWord */);
/packages/apps/ContactsCommon/src/com/android/contacts/common/model/account/
H A DGoogleAccountType.java82 kind.typeList.add(buildPhoneType(Phone.TYPE_MOBILE));
83 kind.typeList.add(buildPhoneType(Phone.TYPE_WORK));
84 kind.typeList.add(buildPhoneType(Phone.TYPE_HOME));
85 kind.typeList.add(buildPhoneType(Phone.TYPE_MAIN));
86 kind.typeList.add(buildPhoneType(Phone.TYPE_FAX_WORK).setSecondary(true));
87 kind.typeList.add(buildPhoneType(Phone.TYPE_FAX_HOME).setSecondary(true));
88 kind.typeList.add(buildPhoneType(Phone.TYPE_PAGER).setSecondary(true));
89 kind.typeList.add(buildPhoneType(Phone.TYPE_OTHER));
90 kind.typeList.add(buildPhoneType(Phone.TYPE_CUSTOM).setSecondary(true)
94 kind.fieldList.add(ne
[all...]
H A DExchangeAccountType.java88 kind.fieldList.add(new EditField(StructuredName.PREFIX, R.string.name_prefix,
90 kind.fieldList.add(new EditField(StructuredName.FAMILY_NAME,
92 kind.fieldList.add(new EditField(StructuredName.MIDDLE_NAME,
94 kind.fieldList.add(new EditField(StructuredName.GIVEN_NAME,
96 kind.fieldList.add(new EditField(StructuredName.SUFFIX,
99 kind.fieldList.add(new EditField(StructuredName.PHONETIC_FAMILY_NAME,
101 kind.fieldList.add(new EditField(StructuredName.PHONETIC_GIVEN_NAME,
117 kind.fieldList.add(new EditField(StructuredName.PREFIX, R.string.name_prefix,
120 kind.fieldList.add(new EditField(StructuredName.FAMILY_NAME,
122 kind.fieldList.add(ne
[all...]
/packages/apps/Dialer/src/com/android/dialer/calllog/
H A DContactInfo.java80 return Objects.toStringHelper(this).add("lookupUri", lookupUri).add("name", name).add(
81 "type", type).add("label", label).add("number", number).add("formattedNumber",
82 formattedNumber).add("normalizedNumber", normalizedNumber).add("photoId", photoId)
83 .add("photoUri", photoUri).toString();
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
H A DListSuggestionCursorNoDuplicates.java40 public boolean add(Suggestion suggestion) { method in class:ListSuggestionCursorNoDuplicates
42 if (mSuggestionKeys.add(key)) {
43 return super.add(suggestion);
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/internal/
H A DPointerTrackerQueueTests.java74 mQueue.add(mElement1);
77 mQueue.add(mElement2);
80 mQueue.add(mElement3);
83 mQueue.add(mElement4);
91 mQueue.add(mElement1);
92 mQueue.add(mElement2);
93 mQueue.add(mElement3);
94 mQueue.add(mElement4);
125 mQueue.add(mElement1);
126 mQueue.add(mElement
[all...]
/packages/apps/Launcher3/src/com/android/launcher3/
H A DDynamicGrid.java62 deviceProfiles.add(new DeviceProfile("Super Short Stubby",
64 deviceProfiles.add(new DeviceProfile("Shorter Stubby",
66 deviceProfiles.add(new DeviceProfile("Short Stubby",
68 deviceProfiles.add(new DeviceProfile("Stubby",
70 deviceProfiles.add(new DeviceProfile("Nexus S",
72 deviceProfiles.add(new DeviceProfile("Nexus 4",
74 deviceProfiles.add(new DeviceProfile("Nexus 5",
76 deviceProfiles.add(new DeviceProfile("Large Phone",
80 deviceProfiles.add(new DeviceProfile("Nexus 7",
83 deviceProfiles.add(ne
[all...]
/packages/experimental/LoaderApp/src/com/android/loaderapp/model/
H A DExchangeSource.java74 kind.fieldList.add(new EditField(StructuredName.PREFIX, R.string.name_prefix,
77 kind.fieldList.add(new EditField(StructuredName.FAMILY_NAME,
79 kind.fieldList.add(new EditField(StructuredName.MIDDLE_NAME,
81 kind.fieldList.add(new EditField(StructuredName.GIVEN_NAME,
83 kind.fieldList.add(new EditField(StructuredName.SUFFIX,
85 kind.fieldList.add(new EditField(StructuredName.PHONETIC_FAMILY_NAME,
87 kind.fieldList.add(new EditField(StructuredName.PHONETIC_GIVEN_NAME,
90 kind.fieldList.add(new EditField(StructuredName.GIVEN_NAME,
92 kind.fieldList.add(new EditField(StructuredName.MIDDLE_NAME,
94 kind.fieldList.add(ne
[all...]
H A DFallbackSource.java117 kind.fieldList.add(new EditField(StructuredName.PREFIX, R.string.name_prefix,
120 kind.fieldList.add(new EditField(StructuredName.FAMILY_NAME, R.string.name_family,
122 kind.fieldList.add(new EditField(StructuredName.MIDDLE_NAME, R.string.name_middle,
124 kind.fieldList.add(new EditField(StructuredName.GIVEN_NAME, R.string.name_given,
126 kind.fieldList.add(new EditField(StructuredName.SUFFIX, R.string.name_suffix,
128 kind.fieldList.add(new EditField(StructuredName.PHONETIC_FAMILY_NAME,
130 kind.fieldList.add(new EditField(StructuredName.PHONETIC_MIDDLE_NAME,
132 kind.fieldList.add(new EditField(StructuredName.PHONETIC_GIVEN_NAME,
135 kind.fieldList.add(new EditField(StructuredName.GIVEN_NAME, R.string.name_given,
137 kind.fieldList.add(ne
[all...]
/packages/apps/UnifiedEmail/src/com/android/mail/ui/
H A DFolderOperations.java51 public FolderOperations(Folder folder, boolean add) { argument
54 add(folder, add);
64 * @param add True if the folder should be applied, or false if the folder should be removed
66 public void add(Folder folder, boolean add) { argument
67 Operation operation = new Operation(folder, add);
75 * @return Returns true if there is a add or remove operation for
85 * @return Returns true if there is a add or remove operation for
157 undoOperations.add(operationToUnd
218 Operation(Folder folder, boolean add) argument
[all...]
H A DConversationListHelper.java61 // Order matters. If a and b are added in order itemViews.add(a), itemViews.add(b),
66 itemViews.add(conversationPhotoTeaser);
67 itemViews.add(conversationLongPressTipView);
68 itemViews.add(conversationSyncDisabledTipView);
69 itemViews.add(conversationsInOutboxTipView);
70 itemViews.add(nestedFolderTeaserView);
/packages/apps/Tag/src/com/android/apps/tag/message/
H A DNdefMessageParser.java55 elements.add(SmartPoster.parse(record));
57 elements.add(UriRecord.parse(record));
59 elements.add(TextRecord.parse(record));
61 elements.add(ImageRecord.parse(record));
63 elements.add(VCardRecord.parse(record));
65 elements.add(MimeRecord.parse(record));
67 elements.add(new UnknownRecord());
/packages/providers/ContactsProvider/src/com/android/providers/contacts/
H A DVoicemailContentTable.java61 .add(Voicemails._ID)
62 .add(Voicemails.NUMBER)
63 .add(Voicemails.DATE)
64 .add(Voicemails.DURATION)
65 .add(Voicemails.IS_READ)
66 .add(Voicemails.STATE)
67 .add(Voicemails.SOURCE_DATA)
68 .add(Voicemails.SOURCE_PACKAGE)
69 .add(Voicemails.HAS_CONTENT)
70 .add(Voicemail
[all...]
H A DGlobalSearchSupport.java101 list.add(contactId); // _id
102 list.add(text1); // text1
103 list.add(text2); // text2
104 list.add(icon1); // icon1
105 list.add(icon2); // icon2
106 list.add(intentData == null ? buildUri() : intentData); // intent data
107 list.add(intentAction); // intentAction
108 list.add(lookupKey); // shortcut id
109 list.add(filter); // extra data
110 list.add(lastAccessTim
[all...]
/packages/apps/Contacts/src/com/android/contacts/quickcontact/
H A DActionMultiMap.java45 collectList.add(0, info);
47 collectList.add(info);
/packages/apps/Browser/src/com/android/browser/search/
H A DSearchEnginePreference.java46 entryValues.add(defaultSearchEngineName);
47 entries.add(defaultSearchEngine.getLabel());
53 entryValues.add(name);
54 entries.add(searchEngineInfo.getLabel());
/packages/apps/QuickSearchBox/tests/src/com/android/quicksearchbox/util/
H A DMockNamedTaskExecutorFactory.java40 mExecutors.add(executor);
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/
H A DFusionDictionaryTests.java36 dict.add("abc", 10, null, false /* isNotAWord */);
40 dict.add("aa", 10, null, false /* isNotAWord */);
44 dict.add("babcd", 10, null, false /* isNotAWord */);
45 dict.add("bacde", 10, null, false /* isNotAWord */);
/packages/apps/UnifiedEmail/tests/src/com/android/mail/browse/
H A DConversationCursorTests.java98 ops.add(ContentProviderOperation.newInsert(uri).withValues(values).build());
100 ops.add(ContentProviderOperation.newInsert(uri).withValues(values).build());
102 ops.add(ContentProviderOperation.newInsert(uri).withValues(values).build());
104 ops.add(ContentProviderOperation.newInsert(uri).withValues(values).build());
106 ops.add(ContentProviderOperation.newInsert(uri).withValues(values).build());
108 ops.add(ContentProviderOperation.newInsert(uri).withValues(values).build());
110 ops.add(ContentProviderOperation.newInsert(uri).withValues(values).build());
112 ops.add(ContentProviderOperation.newInsert(uri).withValues(values).build());
114 ops.add(ContentProviderOperation.newInsert(uri).withValues(values).build());
120 ops.add(ContentProviderOperatio
[all...]

Completed in 557 milliseconds

1234567891011>>