Searched refs:isEmpty (Results 251 - 275 of 1347) sorted by relevance

<<11121314151617181920>>

/external/skia/tests/
H A DStringTest.cpp41 REPORTER_ASSERT(reporter, a.isEmpty());
50 REPORTER_ASSERT(reporter, !a.isEmpty());
95 REPORTER_ASSERT(reporter, a.isEmpty() && b.isEmpty() && a == b);
H A DLListTest.cpp39 REPORTER_ASSERT(reporter, empty == list.isEmpty());
141 REPORTER_ASSERT(reporter, list1.isEmpty());
147 REPORTER_ASSERT(reporter, list1.isEmpty());
194 REPORTER_ASSERT(reporter, !list1.isEmpty());
201 REPORTER_ASSERT(reporter, list1.isEmpty() && list2.isEmpty());
206 if (list1.isEmpty() || random.nextBiasedBool(3 * SK_Scalar1 / 4)) {
/external/skia/tools/lua/
H A Dscrape.lua67 print("drawPath", "isEmpty", tostring(t.path:isEmpty()),
/external/guava/guava-tests/test/com/google/common/eventbus/outside/
H A DAnnotatedSubscriberFinderTests.java82 ASSERT.that(getSubscriber().nonSubscriberEvents).isEmpty();
213 ASSERT.that(getSubscriber().differentlyOverriddenNotAnnotatedInSubclassBadEvents).isEmpty();
224 ASSERT.that(getSubscriber().differentlyOverriddenAnnotatedInSubclassBadEvents).isEmpty();
262 ASSERT.that(getSubscriber().overriddenInSubclassNowhereAnnotatedEvents).isEmpty();
305 ASSERT.that(getSubscriber().neitherOverriddenNorAnnotatedEvents).isEmpty();
309 ASSERT.that(getSubscriber().overriddenInSubclassNowhereAnnotatedEvents).isEmpty();
443 ASSERT.that(getSubscriber().nowhereAnnotatedEvents).isEmpty();
/external/icu/icu4c/source/test/intltest/
H A Dv32test.cpp304 // isEmpty
308 TEST_ASSERT(a->isEmpty() == TRUE);
310 TEST_ASSERT(a->isEmpty() == FALSE);
313 TEST_ASSERT(a->isEmpty() == FALSE);
315 TEST_ASSERT(a->isEmpty() == TRUE);
325 TEST_ASSERT(a->isEmpty() == TRUE);
460 TEST_ASSERT(a->isEmpty());
476 TEST_ASSERT(a->isEmpty());
/external/skia/src/gpu/
H A DGrLayerCache.cpp19 SkASSERT(!fRect.isEmpty());
25 SkASSERT(fRect.isEmpty());
34 SkASSERT(!fRect.isEmpty());
41 SkASSERT(!fRect.isEmpty());
234 if (pictInfo->fPlotUsage.isEmpty()) {
293 if (pictInfo->fPlotUsage.isEmpty()) {
440 if (pictInfo->fPlotUsage.isEmpty()) {
/external/guava/guava-tests/test/com/google/common/collect/
H A DMapsTransformValuesTest.java235 assertTrue(underlying.isEmpty());
236 assertTrue(map.isEmpty());
237 assertTrue(keys.isEmpty());
238 assertTrue(values.isEmpty());
239 assertTrue(entries.isEmpty());
/external/icu/icu4c/source/i18n/
H A Dtzgnames.cpp477 if (name.isEmpty()) {
492 if (tzCanonicalID.isEmpty()) {
519 U_ASSERT(!tzCanonicalID.isEmpty());
547 if (!usCountryCode.isEmpty()) {
586 locname = name.isEmpty() ? NULL : fStringPool.get(name, status);
629 if (!name.isEmpty()) {
637 if (!mzID.isEmpty()) {
701 if (!stdName.isEmpty()) {
717 if (name.isEmpty()) {
721 if (!mzName.isEmpty()) {
[all...]
/external/junit/src/org/junit/runners/
H A DParentRunner.java171 return befores.isEmpty() ? statement :
185 return afters.isEmpty() ? statement :
201 return classRules.isEmpty() ? statement :
326 if (getFilteredChildren().isEmpty()) {
345 if (!errors.isEmpty())
/external/nist-sip/java/gov/nist/javax/sip/header/
H A DSIPHeaderList.java155 if (hlist.isEmpty()) {
212 if (hlist == null || hlist.isEmpty())
224 if (hlist == null || hlist.isEmpty())
243 public boolean isEmpty() { method in class:SIPHeaderList
244 return hlist.isEmpty();
/external/skia/tools/
H A Dskdiff_html.cpp185 if (local && !resource.fFilename.isEmpty()) {
189 if (!resource.fFullPath.isEmpty()) {
231 SkASSERT(!baseDir.isEmpty());
232 SkASSERT(!comparisonDir.isEmpty());
233 SkASSERT(!outputDir.isEmpty());
H A Drender_pictures_main.cpp124 SkASSERT(!FLAGS_writePath.isEmpty());
171 SkASSERT(!FLAGS_writePath.isEmpty());
363 if ((mismatchPath) && !mismatchPath->isEmpty() &&
370 if ((writePath) && !writePath->isEmpty()) {
412 if (FLAGS_readPath.isEmpty()) {
428 if (FLAGS_writePath.isEmpty()) {
/external/guava/guava/src/com/google/common/collect/
H A DStandardTable.java110 @Override public boolean isEmpty() { method in class:StandardTable
111 return backingMap.isEmpty();
154 if (map.isEmpty()) {
169 if (entry.getValue().isEmpty()) {
194 * Abstract set whose {@code isEmpty()} returns whether the table is empty and
198 @Override public boolean isEmpty() { method in class:StandardTable.TableSet
199 return backingMap.isEmpty();
248 if (rowEntry.getValue().isEmpty()) {
269 || (backingRowMap.isEmpty() && backingMap.containsKey(rowKey)))
280 if (backingRowMap() != null && backingRowMap.isEmpty()) {
462 @Override public boolean isEmpty() { method in class:StandardTable.Column.EntrySet
[all...]
/external/jmonkeyengine/engine/src/android/com/jme3/input/android/
H A DAndroidInput.java192 if (eventPool.isEmpty() && wait) {
194 boolean isEmpty;
197 isEmpty = eventPool.isEmpty();
203 } while (isEmpty);
207 } else if (eventPool.isEmpty()) {
351 while (!eventPool.isEmpty()) {
354 while (!eventQueue.isEmpty()) {
394 while (!eventQueue.isEmpty()) {
/external/doclava/src/com/google/doclava/
H A DTypeInfo.java201 if (mTypeArguments != null && !mTypeArguments.isEmpty()) {
213 if (mTypeArguments == null || mTypeArguments.isEmpty()) {
214 if (mSuperBounds != null && !mSuperBounds.isEmpty()) {
222 } else if (mExtendsBounds != null && !mExtendsBounds.isEmpty()) {
269 if (!mClass.getFederatedReferences().isEmpty()) {
415 if (mResolutions == null || mResolutions.isEmpty()) {
/external/guava/guava/src/com/google/common/io/
H A DByteSource.java137 public boolean isEmpty() throws IOException { method in class:ByteSource
495 public boolean isEmpty() throws IOException { method in class:ByteSource.SlicedByteSource
496 return length == 0 || super.isEmpty();
524 public boolean isEmpty() { method in class:ByteSource.ByteArrayByteSource
603 public boolean isEmpty() throws IOException { method in class:ByteSource.ConcatenatedByteSource
605 if (!source.isEmpty()) {
/external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/
H A DTreeBasedTableTest.java203 assertTrue(set.isEmpty());
212 assertTrue(set.isEmpty());
222 assertTrue(set.isEmpty());
252 assertTrue(map.isEmpty());
263 assertTrue(map.isEmpty());
274 assertTrue(map.isEmpty());
/external/guava/guava-tests/test/com/google/common/io/
H A DCloserTest.java81 assertTrue(suppressor.suppressions.isEmpty());
107 assertTrue(suppressor.suppressions.isEmpty());
134 assertTrue(suppressor.suppressions.isEmpty());
155 assertTrue(suppressor.suppressions.isEmpty());
176 assertTrue(suppressor.suppressions.isEmpty());
305 assertTrue(logHandler.getStoredLogRecords().isEmpty());
/external/vogar/src/vogar/
H A DConsole.java160 if (!expectation.getDescription().isEmpty()) {
249 if (!previousResultValuesToShow.isEmpty()) {
260 if (!successes.isEmpty()) {
266 if (!failures.isEmpty()) {
272 if (!skips.isEmpty()) {
278 if (!warnings.isEmpty()) {
/external/llvm/include/llvm/ADT/
H A DImmutableSet.h425 bool isEmpty(TreeTy* T) const { return !T; } function in class:llvm::ImutAVLFactory
497 assert(!isEmpty(L) && "Left tree cannot be empty to have a height >= 2");
505 assert(!isEmpty(LR) && "LR cannot be empty because it has a height >= 1");
514 assert(!isEmpty(R) && "Right tree cannot be empty to have a height >= 2");
522 assert(!isEmpty(RL) && "RL cannot be empty because it has a height >= 1");
537 if (isEmpty(T))
557 if (isEmpty(T))
576 if (isEmpty(L))
578 if (isEmpty(R))
586 assert(!isEmpty(
1066 bool isEmpty() const { return !Root; } function in class:llvm::ImmutableSet
1182 bool isEmpty() const { return !Root; } function in class:llvm::ImmutableSetRef
[all...]
/external/apache-harmony/x-net/src/test/impl/java.injected/org/apache/harmony/xnet/provider/jsse/
H A DClientKeyExchangeTest.java154 assertTrue("incorrect ClientKeyExchange", message.isEmpty());
171 assertTrue("Incorrect message decoding", message_2.isEmpty());
/external/conscrypt/src/platform/java/org/conscrypt/
H A DCertPinManager.java186 if (hostName == null || hostName.isEmpty() || cn == null || cn.isEmpty()) {
/external/dexmaker/src/dx/java/com/android/dx/ssa/
H A DSCCP.java547 while (!cfgWorklist.isEmpty()
548 || !cfgPhiWorklist.isEmpty()
549 || !ssaWorklist.isEmpty()
550 || !varyingWorklist.isEmpty()) {
551 while (!cfgWorklist.isEmpty()) {
557 while (!cfgPhiWorklist.isEmpty()) {
563 while (!varyingWorklist.isEmpty()) {
577 while (!ssaWorklist.isEmpty()) {
/external/droiddriver/src/io/appium/droiddriver/scroll/
H A DSentinelStrategy.java83 return children.isEmpty() ? null : children.get(0);
97 return children.isEmpty() ? null : children.get(children.size() - 1);
/external/emma/core/java12/com/vladium/emma/filter/
H A DIInclExclFilter.java183 if ((inclusions == null) || inclusions.isEmpty ())
198 if ((exclusions == null) || exclusions.isEmpty ())

Completed in 2265 milliseconds

<<11121314151617181920>>