HomeSort by relevance Sort by last modified time
    Searched refs:isEmpty (Results 51 - 75 of 9208) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/guava/guava-testlib/src/com/google/common/collect/testing/testers/
MapIsEmptyTester.java 26 * A generic JUnit test which tests {@code isEmpty()} operations on a
36 assertTrue("isEmpty() should return true", getMap().isEmpty());
41 assertFalse("isEmpty() should return false", getMap().isEmpty());
  /external/guava/guava-testlib/test/com/google/common/testing/
AbstractPackageSanityTestsTest.java 40 .isEmpty();
42 .isEmpty();
44 .isEmpty();
46 .isEmpty();
59 .isEmpty();
66 .isEmpty();
80 .isEmpty();
82 .isEmpty();
  /external/jsilver/src/com/google/clearsilver/jsilver/values/
VariantValue.java 56 public boolean isEmpty() {
57 return asString().isEmpty();
  /frameworks/base/core/java/android/hardware/soundtrigger/
KeyphraseMetadata.java 52 return keyphrase.isEmpty() || keyphrase.equalsIgnoreCase(phrase);
59 return supportedLocales.isEmpty() || supportedLocales.contains(locale);
  /libcore/benchmarks/src/benchmarks/regression/
StringIsEmptyBenchmark.java 23 result &= !("xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx".isEmpty());
31 result &= ("".isEmpty());
  /packages/apps/Contacts/src/com/android/contacts/util/
NameConverter.java 85 if (!TextUtils.isEmpty(value)) {
109 if (!TextUtils.isEmpty(phoneticName)) {
140 if (!TextUtils.isEmpty(family) || !TextUtils.isEmpty(middle)
141 || !TextUtils.isEmpty(given)) {
143 if (!TextUtils.isEmpty(family)) {
146 if (!TextUtils.isEmpty(middle)) {
149 if (!TextUtils.isEmpty(given)) {
  /packages/apps/Launcher3/src/com/android/launcher3/notification/
NotificationGroup.java 49 public boolean isEmpty() {
50 return mChildKeys.isEmpty();
  /sdk/find_lock/
find_lock_exe.cpp 39 } else if (dirPath.isEmpty()) {
47 if (dirPath.isEmpty()) {
  /system/core/healthd/
BatteryMonitor.cpp 206 if (!mHealthdConfig->batteryPresentPath.isEmpty())
216 if (!mHealthdConfig->batteryCurrentNowPath.isEmpty())
219 if (!mHealthdConfig->batteryFullChargePath.isEmpty())
222 if (!mHealthdConfig->batteryCycleCountPath.isEmpty())
225 if (!mHealthdConfig->batteryChargeCounterPath.isEmpty())
307 if (!mHealthdConfig->batteryCurrentNowPath.isEmpty()) {
312 if (!mHealthdConfig->batteryFullChargePath.isEmpty()) {
317 if (!mHealthdConfig->batteryCycleCountPath.isEmpty()) {
341 if (!mHealthdConfig->batteryStatusPath.isEmpty()) {
357 if (!mHealthdConfig->batteryChargeCounterPath.isEmpty()) {
    [all...]
  /cts/common/device-side/preconditions/src/com/android/compatibility/common/preconditions/
TelephonyHelper.java 34 return !TextUtils.isEmpty(telephony.getLine1Number());
  /cts/hostsidetests/devicepolicy/app/DeviceOwner/src/com/android/cts/deviceowner/
WifiTest.java 35 TextUtils.isEmpty(macAddress));
  /cts/hostsidetests/incident/src/com/android/server/cts/
StackTraceIncidentTest.java 29 assertTrue(s.getDump().isEmpty());
  /external/guava/guava-tests/test/com/google/common/collect/
AbstractRangeSetTest.java 38 assertEquals(rangeSet.asRanges().isEmpty(), rangeSet.isEmpty());
39 assertEquals(!rangeSet.asRanges().iterator().hasNext(), rangeSet.isEmpty());
52 assertFalse(range.isEmpty());
  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/resolution/declarations/
ResolvedTypeParametrizable.java 46 return !getTypeParameters().isEmpty();
  /external/mockito/src/main/java/org/mockito/internal/verification/
RegisteredInvocations.java 23 boolean isEmpty();
  /external/mockito/src/test/java/org/mockito/internal/util/
SimpleMockitoLogger.java 19 public boolean isEmpty() {
  /external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
TextUtilsTest.java 24 assertThat(TextUtils.isEmpty(null), equalTo(true));
25 assertThat(TextUtils.isEmpty(""), equalTo(true));
26 assertThat(TextUtils.isEmpty(" "), equalTo(false));
27 assertThat(TextUtils.isEmpty("123"), equalTo(false));
  /external/skia/experimental/sksg/
SkSGInvalidationController.cpp 18 if (r.isEmpty()) {
  /external/skqp/experimental/sksg/
SkSGInvalidationController.cpp 18 if (r.isEmpty()) {
  /frameworks/base/services/core/java/com/android/server/wm/
AnimatingAppWindowTokenRegistry.java 57 if (mAnimatingTokens.isEmpty()) {
74 if (mAnimatingTokens.isEmpty()) {
113 if (!mAnimatingTokens.isEmpty() || !mFinishedTokens.isEmpty()) {
  /libcore/ojluni/src/main/java/java/util/
Dictionary.java 67 * for the <tt>isEmpty</tt> method is that the result is true if and only
73 abstract public boolean isEmpty();
101 * The general contract for the <tt>isEmpty</tt> method is that if this
  /packages/apps/Dialer/java/com/android/dialer/calllog/datasources/
CallLogMutations.java 78 public boolean isEmpty() {
79 return inserts.isEmpty() && updates.isEmpty() && deletes.isEmpty();
  /packages/apps/DocumentsUI/tests/unit/com/android/documentsui/inspector/
TestTable.java 66 public boolean isEmpty() {
67 return mRows.isEmpty();
71 assertTrue(mRows.isEmpty());
75 assertFalse(mRows.isEmpty());
  /packages/apps/Nfc/nci/jni/
DataQueue.h 80 ** Function: isEmpty
87 bool isEmpty();
  /packages/apps/Settings/tests/unit/src/com/android/settings/datetime/timezone/model/
TimeZoneDataTest.java 58 assertThat(mTimeZoneData.lookupCountryCodesForZoneId("Europe/Simferopol").isEmpty())
61 assertThat(mTimeZoneData.lookupCountryCodesForZoneId("America/Metlakatla").isEmpty())
63 assertThat(mTimeZoneData.lookupCountryCodesForZoneId("Europe/London").isEmpty())
65 assertThat(mTimeZoneData.lookupCountryCodesForZoneId("America/Los_Angeles").isEmpty())

Completed in 725 milliseconds

1 23 4 5 6 7 8 91011>>