Searched defs:isEmpty (Results 276 - 300 of 474) sorted by relevance

<<111213141516171819

/external/smack/src/org/jivesoftware/smack/util/
H A DCache.java210 public synchronized boolean isEmpty() { method in class:Cache
215 return map.isEmpty();
/external/chromium_org/third_party/WebKit/Source/core/animation/css/
H A DCSSAnimations.h133 bool isEmpty() const function in class:blink::FINAL
135 return m_newAnimations.isEmpty()
136 && m_cancelledAnimationNames.isEmpty()
137 && m_cancelledAnimationPlayers.isEmpty()
138 && m_animationsWithPauseToggled.isEmpty()
139 && m_newTransitions.isEmpty()
140 && m_cancelledTransitions.isEmpty()
141 && m_activeInterpolationsForAnimations.isEmpty()
142 && m_activeInterpolationsForTransitions.isEmpty();
182 bool isEmpty() cons function in class:blink::FINAL
[all...]
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DSelectorQuery.cpp73 bool isEmpty() const { return !m_currentElement; } function in class:blink::ClassElementList
103 ASSERT(m_selectors.isEmpty());
287 if (traverseRoots.isEmpty())
291 while (!traverseRoots.isEmpty()) {
302 while (!traverseRoots.isEmpty()) {
/external/chromium_org/third_party/WebKit/Source/core/editing/
H A DTextCheckingHelper.cpp174 bool TextCheckingParagraph::isEmpty() const function in class:blink::TextCheckingParagraph
193 if (m_text.isEmpty())
378 if (!misspelledWord.isEmpty() && (!checkGrammar || badGrammarPhrase.isEmpty() || spellingLocation <= grammarDetailLocation)) {
387 if (checkGrammar && !badGrammarPhrase.isEmpty()) {
488 if (badGrammarIndex >= 0 && firstBadGrammarPhrase.isEmpty()) {
555 if (results.isEmpty())
/external/chromium_org/third_party/WebKit/Source/core/html/parser/
H A DHTMLConstructionSite.h138 return !m_pendingText.isEmpty() || !m_taskQueue.isEmpty();
184 bool isEmpty() const { return !m_openElements.stackDepth(); } function in class:blink::FINAL
291 bool isEmpty() function in class:blink::FINAL::FINAL
294 ASSERT(stringBuilder.isEmpty() == !parent);
295 ASSERT(!stringBuilder.isEmpty() || !nextChild);
296 ASSERT(!stringBuilder.isEmpty() || (whitespaceMode == WhitespaceUnknown));
297 return stringBuilder.isEmpty();
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderListItem.cpp222 bool RenderListItem::isEmpty() const function in class:blink::RenderListItem
/external/chromium_org/third_party/WebKit/Source/platform/geometry/
H A DFloatRect.h83 bool isEmpty() const { return m_size.isEmpty(); } function in class:blink::FloatRect
H A DLayoutRect.h84 ALWAYS_INLINE bool isEmpty() const { return m_size.isEmpty(); } function in class:blink::LayoutRect
/external/chromium_org/third_party/WebKit/Source/platform/text/
H A DSegmentedString.h196 bool isEmpty() const { return m_empty; } function in class:blink::SegmentedString
403 bool isComposite() const { return !m_substrings.isEmpty(); }
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DHashMap.h99 bool isEmpty() const;
282 inline bool HashMap<T, U, V, W, X, Y>::isEmpty() const function in class:WTF::HashMap
284 return m_impl.isEmpty();
/external/chromium_org/third_party/icu/source/common/
H A Duniset.cpp393 UBool UnicodeSet::isEmpty(void) const { function in class:UnicodeSet
2110 if (!strings->isEmpty()) {
2145 } else if(!strings->isEmpty()) {
2182 } else if(!strings->isEmpty()) {
2220 } else if(!strings->isEmpty()) {
2258 } else if(!strings->isEmpty()) {
/external/chromium_org/third_party/skia/include/core/
H A DSkString.h109 bool isEmpty() const { return 0 == fRec->fLength; } function in class:SkString
/external/chromium_org/third_party/skia/src/core/
H A DSkTLList.h166 bool isEmpty() const { this->validate(); return 0 == fCount; } function in class:SkTLList
287 SkASSERT((0 == fCount) == fList.isEmpty());
288 SkASSERT((0 != fCount) || fFreeList.isEmpty());
/external/chromium_org/third_party/skia/tools/flags/
H A DSkCommandLineFlags.h126 bool isEmpty() const { return this->count() == 0; } function in class:SkCommandLineFlags::StringArray
/external/clang/lib/StaticAnalyzer/Core/
H A DRangeConstraintManager.cpp87 bool isEmpty() const { return ranges.isEmpty(); } function in class:__anon18275::RangeSet
145 assert(!isEmpty());
359 if (Ranges->Intersect(BV, F, Zero, Zero).isEmpty())
435 return New.isEmpty() ? nullptr : St->set<ConstraintRange>(Sym, New);
450 return New.isEmpty() ? nullptr : St->set<ConstraintRange>(Sym, New);
479 return New.isEmpty() ? nullptr : St->set<ConstraintRange>(Sym, New);
508 return New.isEmpty() ? nullptr : St->set<ConstraintRange>(Sym, New);
537 return New.isEmpty() ? nullptr : St->set<ConstraintRange>(Sym, New);
566 return New.isEmpty()
[all...]
/external/eigen/Eigen/src/Geometry/
H A DAlignedBox.h84 /** \deprecated use isEmpty */
85 inline bool isNull() const { return isEmpty(); }
91 inline bool isEmpty() const { return (m_min.array() > m_max.array()).any(); } function in class:Eigen::AlignedBox
/external/guava/guava/src/com/google/common/collect/
H A DArrayTable.java150 checkArgument(!rowList.isEmpty());
151 checkArgument(!columnList.isEmpty());
346 public boolean isEmpty() { method in class:ArrayTable
H A DImmutableList.java489 @Override public boolean isEmpty() { method in class:ImmutableList.ReverseImmutableList
490 return forwardList.isEmpty();
H A DImmutableMultimap.java442 public boolean isEmpty() { method in class:ImmutableMultimap
H A DIterables.java794 if (list.isEmpty()) {
824 if (collection.isEmpty()) {
1048 public static boolean isEmpty(Iterable<?> iterable) { method in class:Iterables
1050 return ((Collection<?>) iterable).isEmpty();
H A DLinkedListMultimap.java507 public boolean isEmpty() { method in class:LinkedListMultimap
1059 return collection.isEmpty() ? null : collection;
1064 return collection.isEmpty() ? null : collection;
H A DLists.java453 @Override public boolean isEmpty() { method in class:Lists.TransformingRandomAccessList
454 return fromList.isEmpty();
517 @Override public boolean isEmpty() { method in class:Lists.Partition
518 return list.isEmpty();
785 @Override public boolean isEmpty() { method in class:Lists.ReverseList
786 return forwardList.isEmpty();
H A DTables.java196 public boolean isEmpty() { method in class:Tables.TransposeTable
197 return original.isEmpty();
366 checkArgument(backingMap.isEmpty());
437 @Override public boolean isEmpty() { method in class:Tables.TransformedTable
438 return fromTable.isEmpty();
/external/guava/guava/src/com/google/common/primitives/
H A DInts.java489 @Override public boolean isEmpty() { method in class:Ints.IntArrayAsList
H A DLongs.java474 @Override public boolean isEmpty() { method in class:Longs.LongArrayAsList

Completed in 342 milliseconds

<<111213141516171819