Searched defs:isEmpty (Results 151 - 175 of 474) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/skia/include/core/
H A DSkDataTable.h28 bool isEmpty() const { return 0 == fCount; } function in class:SkDataTable
H A DSkMask.h40 bool isEmpty() const { return fBounds.isEmpty(); } function in struct:SkMask
/external/chromium_org/third_party/skia/include/gpu/
H A DGrGlyph.h49 bool isEmpty() const { return fBounds.isEmpty(); } function in struct:GrGlyph
/external/chromium_org/third_party/skia/src/core/
H A DSkAAClip.h29 bool isEmpty() const { return NULL == fRunHead; } function in class:SkAAClip
106 SkASSERT(aaclip && !aaclip->isEmpty());
H A DSkRTree.h83 bool isEmpty() const { return 0 == fCount; } function in class:SkRTree
89 return this->isEmpty() ? 0 : fRoot.fChild.subtree->fLevel + 1;
/external/chromium_org/third_party/skia/tools/lua/
H A Dskia.lua47 function Sk.Rect:isEmpty()
/external/chromium_org/v8/benchmarks/spinning-balls/
H A Dsplay-tree.js52 SplayTree.prototype.isEmpty = function() {
66 if (this.isEmpty()) {
99 if (this.isEmpty()) {
130 if (this.isEmpty()) {
142 if (this.isEmpty()) {
158 if (this.isEmpty()) {
181 if (!this.isEmpty()) {
199 if (this.isEmpty()) {
/external/chromium_org/v8/benchmarks/
H A Dsplay.js147 SplayTree.prototype.isEmpty = function() {
161 if (this.isEmpty()) {
194 if (this.isEmpty()) {
225 if (this.isEmpty()) {
237 if (this.isEmpty()) {
253 if (this.isEmpty()) {
276 if (!this.isEmpty()) {
294 if (this.isEmpty()) {
/external/chromium_org/v8/tools/
H A Dsplaytree.js53 SplayTree.prototype.isEmpty = function() {
68 if (this.isEmpty()) {
101 if (this.isEmpty()) {
132 if (this.isEmpty()) {
144 if (this.isEmpty()) {
159 if (this.isEmpty()) {
175 if (this.isEmpty()) {
225 if (this.isEmpty()) {
/external/clang/include/clang/Basic/
H A DABI.h71 bool isEmpty() const { function in union:clang::ReturnAdjustment::VirtualAdjustment
83 bool isEmpty() const { return !NonVirtual && Virtual.isEmpty(); } function in struct:clang::ReturnAdjustment
139 bool isEmpty() const { function in union:clang::ThisAdjustment::VirtualAdjustment
151 bool isEmpty() const { return !NonVirtual && Virtual.isEmpty(); } function in struct:clang::ThisAdjustment
200 bool isEmpty() const { function in struct:clang::ThunkInfo
201 return This.isEmpty() && Return.isEmpty() && Method == nullptr;
/external/clang/test/Analysis/inlining/
H A Dcontainers.cpp16 clang_analyzer_eval(set.isEmpty());
105 bool isEmpty() { function in class:MySet
/external/dexmaker/src/dx/java/com/android/dx/dex/file/
H A DAnnotationsDirectoryItem.java79 public boolean isEmpty() { method in class:AnnotationsDirectoryItem
/external/emma/core/java12/com/vladium/emma/data/
H A DMetaData.java158 public boolean isEmpty () method in class:MetaData
160 return m_classMap.isEmpty ();
168 if ((rhs == null) || rhs.isEmpty () || (rhs == this))
/external/emma/core/java12/com/vladium/util/
H A DIProperties.java55 boolean isEmpty (); method in interface:IProperties
228 public boolean isEmpty () method in class:IProperties.Factory.PropertiesImpl
230 return m_valueMap.isEmpty () && ((m_delegate == null) || ((m_delegate != null) && m_delegate.isEmpty ()));
235 if (isEmpty ())
/external/guava/guava/src/com/google/common/collect/
H A DAbstractMultiset.java55 @Override public boolean isEmpty() { method in class:AbstractMultiset
56 return entrySet().isEmpty();
H A DConcurrentHashMultiset.java135 checkArgument(countMap.isEmpty());
477 @Override public boolean isEmpty() { method in class:ConcurrentHashMultiset
478 return countMap.isEmpty();
H A DEmptyContiguousSet.java87 @Override public boolean isEmpty() { method in class:EmptyContiguousSet
102 return that.isEmpty();
H A DEmptyImmutableList.java74 @Override public boolean isEmpty() { method in class:EmptyImmutableList
137 return targets.isEmpty();
143 return that.isEmpty();
H A DEmptyImmutableSortedSet.java45 @Override public boolean isEmpty() { method in class:EmptyImmutableSortedSet
75 return targets.isEmpty();
81 return that.isEmpty();
H A DEmptyImmutableTable.java49 @Override public boolean isEmpty() { method in class:EmptyImmutableTable
58 return that.isEmpty();
H A DForwardingCollection.java74 public boolean isEmpty() { method in class:ForwardingCollection
75 return delegate().isEmpty();
221 * A sensible definition of {@link #isEmpty} as {@code !iterator().hasNext}.
222 * If you override {@link #isEmpty}, you may wish to override {@link #isEmpty}
224 * implement {@code isEmpty} as {@code size() == 0}.
H A DForwardingMap.java74 public boolean isEmpty() { method in class:ForwardingMap
75 return delegate().isEmpty();
191 * {@link ForwardingMap#isEmpty}, {@link ForwardingMap#remove}, {@link
224 * {@link ForwardingMap#isEmpty}, {@link ForwardingMap#size}, and the {@link
256 * {@link ForwardingMap#get}, {@link ForwardingMap#isEmpty}, {@link
274 * A sensible definition of {@link #isEmpty} in terms of the {@code iterator}
276 * wish to override {@link #isEmpty} to forward to this implementation.
H A DForwardingMultimap.java82 public boolean isEmpty() { method in class:ForwardingMultimap
83 return delegate().isEmpty();
H A DForwardingTable.java95 public boolean isEmpty() { method in class:ForwardingTable
96 return delegate().isEmpty();
H A DGeneralRange.java140 boolean isEmpty() { method in class:GeneralRange

Completed in 350 milliseconds

1234567891011>>