Searched refs:isEmpty (Results 1 - 25 of 760) sorted by relevance

1234567891011>>

/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/research/
H A DLogBuffer.java50 if (mLogUnits.isEmpty()) {
57 if (mLogUnits.isEmpty()) {
63 public boolean isEmpty() { method in class:LogBuffer
64 return mLogUnits.isEmpty();
68 if (isEmpty()) {
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/dictionarypack/
H A DMetadataParser.java58 if (!TextUtils.isEmpty(name)) {
63 if (TextUtils.isEmpty(arguments.get(ID_FIELD_NAME))
64 || TextUtils.isEmpty(arguments.get(LOCALE_FIELD_NAME))
65 || TextUtils.isEmpty(arguments.get(DESCRIPTION_FIELD_NAME))
66 || TextUtils.isEmpty(arguments.get(UPDATE_FIELD_NAME))
67 || TextUtils.isEmpty(arguments.get(FILESIZE_FIELD_NAME))
68 || TextUtils.isEmpty(arguments.get(CHECKSUM_FIELD_NAME))
69 || TextUtils.isEmpty(arguments.get(REMOTE_FILENAME_FIELD_NAME))
70 || TextUtils.isEmpty(arguments.get(VERSION_FIELD_NAME))
71 || TextUtils.isEmpty(argument
[all...]
/packages/apps/UnifiedEmail/src/com/android/mail/ui/settings/
H A DSettingsUtils.java26 if (!TextUtils.isEmpty(summary)) {
/packages/providers/ContactsProvider/src/com/android/providers/contacts/
H A DPostalSplitter.java71 if (!TextUtils.isEmpty(formattedAddress)) {
100 final boolean hasStreet = !TextUtils.isEmpty(postal.street);
101 final boolean hasPobox = !TextUtils.isEmpty(postal.pobox);
102 final boolean hasNeighborhood = !TextUtils.isEmpty(postal.neighborhood);
103 final boolean hasCity = !TextUtils.isEmpty(postal.city);
104 final boolean hasRegion = !TextUtils.isEmpty(postal.region);
105 final boolean hasPostcode = !TextUtils.isEmpty(postal.postcode);
106 final boolean hasCountry = !TextUtils.isEmpty(postal.country);
166 final boolean hasStreet = !TextUtils.isEmpty(postal.street);
167 final boolean hasPobox = !TextUtils.isEmpty(posta
[all...]
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
H A DTransactionContextTest.java47 assertTrue(newDirty.isEmpty());
48 assertTrue(newChanged.isEmpty());
49 assertTrue(newInserted.isEmpty());
50 assertTrue(newUpdated.isEmpty());
51 assertTrue(newSync.isEmpty());
74 assertTrue(context.getChangedRawContactIds().isEmpty());
87 assertTrue(context.getChangedRawContactIds().isEmpty());
/packages/apps/Gallery2/src/com/android/gallery3d/glrenderer/
H A DTextureUploader.java40 while (!mFgTextures.isEmpty()) {
43 while (!mBgTextures.isEmpty()) {
74 if (deque.isEmpty()) break;
101 mIsQueued = !mFgTextures.isEmpty() || !mBgTextures.isEmpty();
/packages/services/Telephony/src/com/android/phone/
H A DCallGatewayManager.java97 if (!gatewayInfo.isEmpty()) {
138 return !TextUtils.isEmpty(name) && !TextUtils.isEmpty(gatewayUri);
168 return TextUtils.isEmpty(uri) ? null : Uri.parse(uri);
205 public boolean isEmpty() { method in class:CallGatewayManager.RawGatewayInfo
206 return TextUtils.isEmpty(packageName) || gatewayUri == null;
/packages/apps/Gallery/src/com/android/camera/gallery/
H A DIImageList.java59 public boolean isEmpty(); method in interface:IImageList
/packages/apps/Nfc/nci/jni/
H A DDataQueue.h86 ** Function: isEmpty
93 bool isEmpty();
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/
H A DIntentUtils.java37 if (!TextUtils.isEmpty(inputMethodId)) {
H A DLatinImeLoggerUtils.java54 if (!isBatchMode && TextUtils.isEmpty(typedWord)) {
60 final int codePoint = TextUtils.isEmpty(separatorString) ? Constants.NOT_A_CODE
65 if (!TextUtils.isEmpty(correctedWord)) {
H A DCompletionInfoUtils.java36 if (null != src[i] && !TextUtils.isEmpty(src[i].getText())) {
/packages/apps/Dialer/src/com/android/dialer/calllog/
H A DPhoneNumberHelper.java66 if (!TextUtils.isEmpty(displayName)) {
70 if (TextUtils.isEmpty(number)) {
74 if (TextUtils.isEmpty(formattedNumber)) {
H A DPhoneNumberUtilsWrapper.java37 && !TextUtils.isEmpty(number) && !isLegacyUnknownNumbers(number);
74 if (TextUtils.isEmpty(number)) {
/packages/apps/Contacts/src/com/android/contacts/editor/
H A DPhoneticNameEditorView.java106 if (!TextUtils.isEmpty(phoneticName)) {
137 if (!TextUtils.isEmpty(family) || !TextUtils.isEmpty(middle)
138 || !TextUtils.isEmpty(given)) {
140 if (!TextUtils.isEmpty(family)) {
143 if (!TextUtils.isEmpty(middle)) {
146 if (!TextUtils.isEmpty(given)) {
218 return !TextUtils.isEmpty(family) || !TextUtils.isEmpty(middle)
219 || !TextUtils.isEmpty(give
[all...]
/packages/apps/UnifiedEmail/src/com/android/mail/ui/
H A DConversationSelectionSet.java106 boolean initiallyNotEmpty = !mInternalMap.isEmpty();
110 if (mInternalMap.isEmpty() && initiallyNotEmpty) {
176 public boolean isEmpty() { method in class:ConversationSelectionSet
178 return mInternalMap.isEmpty();
184 final boolean initiallyEmpty = mInternalMap.isEmpty();
205 final boolean initiallyNotEmpty = !mInternalMap.isEmpty();
216 if (mInternalMap.isEmpty() && initiallyNotEmpty) {
284 final boolean initiallyEmpty = mInternalMap.isEmpty();
316 if (isEmpty()) {
353 if (!batchConversationToCheck.isEmpty()
[all...]
/packages/apps/ContactsCommon/src/com/android/contacts/common/model/account/
H A DAccountTypeWithDataSet.java46 this.accountType = TextUtils.isEmpty(accountType) ? null : accountType;
47 this.dataSet = TextUtils.isEmpty(dataSet) ? null : dataSet;
62 if (TextUtils.isEmpty(dataSet)) {
/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/decoder/
H A DUnboundedFifoByteBuffer.java111 public boolean isEmpty() { method in class:UnboundedFifoByteBuffer
158 if (isEmpty()) {
172 if (isEmpty()) {
/packages/providers/DownloadProvider/src/com/android/providers/downloads/
H A DConstants.java95 final boolean validRelease = !TextUtils.isEmpty(Build.VERSION.RELEASE);
96 final boolean validId = !TextUtils.isEmpty(Build.ID);
98 && !TextUtils.isEmpty(Build.MODEL);
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/ui/
H A DSuggestionsAdapter.java52 boolean isEmpty(); method in interface:SuggestionsAdapter
/packages/apps/QuickSearchBox/tests/src/com/android/quicksearchbox/util/
H A DMockExecutor.java52 if (mQueue.isEmpty()) {
/packages/apps/Settings/src/com/android/settings/inputmethod/
H A DUserDictionarySettingsUtils.java32 if (TextUtils.isEmpty(localeStr)) {
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/userdictionary/
H A DUserDictionarySettingsUtils.java33 if (TextUtils.isEmpty(localeStr)) {
/packages/providers/ContactsProvider/src/com/android/providers/contacts/util/
H A DSelectionBuilder.java46 if (!TextUtils.isEmpty(clause)) {
/packages/apps/Gallery2/src/com/android/gallery3d/app/
H A DStateManager.java60 if (!mStack.isEmpty()) {
90 if (!mStack.isEmpty()) {
107 if (mStack.isEmpty()) {
123 if (!mStack.isEmpty()) getTopState().resume();
129 if (!mStack.isEmpty()) getTopState().onPause();
137 if (!mStack.isEmpty()) {
147 if (!mStack.isEmpty()) {
160 if (!mStack.isEmpty()) {
207 ActivityState top = !mStack.isEmpty() ? mStack.peek().activityState : null;
260 while (!mStack.isEmpty()) {
[all...]

Completed in 4645 milliseconds

1234567891011>>