Searched defs:isEmpty (Results 226 - 250 of 427) sorted by relevance

1234567891011>>

/external/guava/guava/src/com/google/common/primitives/
H A DShorts.java487 @Override public boolean isEmpty() { method in class:Shorts.ShortArrayAsList
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DImmutableMap.java208 public final boolean isEmpty() { method in class:ImmutableMap
209 return delegate.isEmpty();
H A DImmutableMultimap.java432 public boolean isEmpty() { method in class:ImmutableMultimap
/external/guava/guava-gwt/src-super/com/google/common/primitives/super/com/google/common/primitives/
H A DChars.java431 @Override public boolean isEmpty() { method in class:Chars.CharArrayAsList
H A DInts.java433 @Override public boolean isEmpty() { method in class:Ints.IntArrayAsList
H A DLongs.java407 @Override public boolean isEmpty() { method in class:Longs.LongArrayAsList
H A DShorts.java435 @Override public boolean isEmpty() { method in class:Shorts.ShortArrayAsList
/external/guava/guava-testlib/src/com/google/common/collect/testing/
H A DSafeTreeMap.java156 @Override public boolean isEmpty() { method in class:SafeTreeMap
157 return delegate.isEmpty();
H A DSafeTreeSet.java131 @Override public boolean isEmpty() { method in class:SafeTreeSet
132 return delegate.isEmpty();
/external/guava/guava-tests/test/com/google/common/collect/
H A DForwardingMapTest.java110 @Override public boolean isEmpty() { method in class:ForwardingMapTest.StandardImplForwardingMap
178 forward().isEmpty();
179 assertEquals("[isEmpty]", getCalls());
254 expect(map.isEmpty()).andReturn(true).anyTimes();
293 expect(map.isEmpty()).andReturn(true).anyTimes();
325 expect(map.isEmpty()).andReturn(true).anyTimes();
H A DForwardingMultisetTest.java127 @Override public boolean isEmpty() { method in class:ForwardingMultisetTest.StandardImplForwardingMultiset
212 @Override public boolean isEmpty() {
309 forward().isEmpty();
310 assertEquals("[isEmpty]", getCalls());
H A DSynchronizedMapTest.java66 @Override public boolean isEmpty() { method in class:SynchronizedMapTest.TestMap
68 return super.isEmpty();
151 create().isEmpty();
/external/javassist/src/main/javassist/
H A DCtMethod.java223 public boolean isEmpty() { method in class:CtMethod
/external/jmdns/src/javax/jmdns/impl/
H A DDNSCache.java70 public boolean isEmpty() { method in class:DNSCache._EmptyCache
209 public boolean isEmpty() { method in class:DNSCache._CacheEntry
210 return this.getValue().isEmpty();
241 if ((_value != null) && (!_value.isEmpty())) {
488 if (existingEntry.getValue().isEmpty()) {
/external/jmonkeyengine/engine/src/core/com/jme3/util/
H A DSafeArrayList.java151 public final boolean isEmpty() { method in class:SafeArrayList
/external/llvm/include/llvm/ADT/
H A DImmutableList.h102 /// isEmpty - Returns true if the list is empty.
103 bool isEmpty() const { return !X; } function in class:llvm::ImmutableList
124 assert (!isEmpty() && "Cannot get the head of an empty list.");
H A DTwine.h190 /// isEmpty - Check for the empty twine.
191 bool isEmpty() const { function in class:llvm::Twine
197 return isNull() || isEmpty();
475 if (isEmpty())
477 if (Suffix.isEmpty())
/external/llvm/include/llvm/MC/
H A DMCInstrItineraries.h130 /// isEmpty - Returns true if there are no itineraries.
132 bool isEmpty() const { return Itineraries == 0; } function in class:llvm::InstrItineraryData
164 if (isEmpty())
181 if (isEmpty())
220 if (isEmpty())
243 if (isEmpty())
/external/nist-sip/java/gov/nist/core/
H A DNameValueList.java94 if (!hmap.isEmpty()) {
235 public boolean isEmpty() { method in class:NameValueList
236 return hmap.isEmpty();
/external/oauth/core/src/main/java/net/oauth/
H A DOAuth.java125 if (!isEmpty(form)) {
297 public static boolean isEmpty(String str) { method in class:OAuth
/external/protobuf/java/src/main/java/com/google/protobuf/
H A DByteString.java73 public boolean isEmpty() { method in class:ByteString
/external/skia/include/core/
H A DSkRRect.h101 inline bool isEmpty() const { return kEmpty_Type == this->getType(); } function in class:SkRRect
125 if (rect.isEmpty()) {
142 if (oval.isEmpty()) {
H A DSkRect.h101 bool isEmpty() const { return fLeft >= fRight || fTop >= fBottom; } function in struct:SkIRect
220 return left < right && top < bottom && !this->isEmpty() && // check for empties
228 return !r.isEmpty() && !this->isEmpty() && // check for empties
268 if (!a.isEmpty() && !b.isEmpty() &&
288 SkASSERT(!a.isEmpty() && !b.isEmpty());
307 if (left < right && top < bottom && !this->isEmpty() &&
321 return !a.isEmpty()
[all...]
H A DSkRegion.h64 return !this->isEmpty();
74 bool isEmpty() const { return fRunHead == SkRegion_gEmptyRunHeadPtr; } function in class:SkRegion
80 bool isComplex() const { return !this->isEmpty() && !this->isRect(); }
197 SkASSERT(this->isEmpty() == fBounds.isEmpty()); // valid region
212 return this->isEmpty() || rect.isEmpty() ||
222 return this->isEmpty() || rgn.isEmpty() ||
H A DSkTDArray.h96 bool isEmpty() const { return fCount == 0; } function in class:SkTDArray

Completed in 1747 milliseconds

1234567891011>>