Searched defs:isEmpty (Results 251 - 275 of 474) sorted by relevance

<<111213141516171819

/external/guava/guava-gwt/src-super/com/google/common/primitives/super/com/google/common/primitives/
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/icu/icu4c/source/layout/
H A DLETableReference.h92 if(isEmpty()) {
120 le_bool isEmpty() const { return fStart==NULL || fLength==0; } function in class:LETableReference
121 le_bool isValid() const { return !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/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.h194 /// isEmpty - Check for the empty twine.
195 bool isEmpty() const { function in class:llvm::Twine
201 return isNull() || isEmpty();
479 if (isEmpty())
481 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 == nullptr; } function in class:llvm::InstrItineraryData
164 if (isEmpty())
181 if (isEmpty())
220 if (isEmpty())
243 if (isEmpty())
/external/mockito/cglib-and-asm/src/org/mockito/cglib/beans/
H A DBeanMap.java230 public boolean isEmpty() { method in class:BeanMap
/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 DSkImageInfo.h191 bool isEmpty() const { return fWidth <= 0 || fHeight <= 0; } function in struct:SkImageInfo
H A DSkRRect.h103 inline bool isEmpty() const { return kEmpty_Type == this->getType(); } function in class:SkRRect
133 if (rect.isEmpty()) {
150 if (oval.isEmpty()) {
H A DSkRect.h101 bool isEmpty() const { return fLeft >= fRight || fTop >= fBottom; } function in struct:SkIRect
234 return left < right && top < bottom && !this->isEmpty() && // check for empties
242 return !r.isEmpty() && !this->isEmpty() && // check for empties
282 if (!a.isEmpty() && !b.isEmpty() &&
302 SkASSERT(!a.isEmpty() && !b.isEmpty());
321 if (left < right && top < bottom && !this->isEmpty() &&
335 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
H A DSkTInternalLList.h170 bool isEmpty() const { function in class:SkTInternalLList
/external/skia/src/animator/
H A DSkTDArray_Experimental.h53 bool isEmpty() const { return fCount == 0; } function in class:SkDS32Array
/external/skia/src/pdf/
H A DSkTSet.h139 bool isEmpty() const { function in class:SkTSet
142 SkASSERT(fSetArray->isEmpty() == fOrderedArray->isEmpty());
143 return fOrderedArray->isEmpty();

Completed in 221 milliseconds

<<111213141516171819