Searched defs:isEmpty (Results 201 - 225 of 474) sorted by relevance

1234567891011>>

/external/skia/src/gpu/
H A DGrAtlas.h116 bool isEmpty() { return 0 == fPlots.count(); } function in class:GrAtlas
/external/skia/tools/lua/
H A Dskia.lua47 function Sk.Rect:isEmpty()
/external/smali/util/src/main/java/org/jf/util/
H A DArraySortedSet.java59 public boolean isEmpty() { method in class:ArraySortedSet
/external/apache-http/src/org/apache/commons/logging/impl/
H A DWeakHashtable.java291 public boolean isEmpty() { method in class:WeakHashtable
293 return super.isEmpty();
/external/apache-xml/src/main/java/org/apache/xml/serializer/
H A DNamespaceMappings.java142 if (stack != null && !stack.isEmpty()) {
153 return stack != null && !stack.isEmpty() ?
269 if (m_nodeStack.isEmpty())
435 public boolean isEmpty() { method in class:NamespaceMappings.Stack
/external/chromium_org/chrome/third_party/chromevox/third_party/closure-library/closure/goog/object/
H A Dobject.js338 goog.object.isEmpty = function(obj) {
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DStylePropertySet.h90 bool isEmpty() const;
277 inline bool StylePropertySet::isEmpty() const function in class:blink::StylePropertySet
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DNodeListsNodeData.h176 bool isEmpty() const function in class:blink::FINAL
178 return !m_childNodeList && m_atomicNameCaches.isEmpty() && m_tagCollectionCacheNS.isEmpty();
/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DInspectorStyleSheet.h72 bool isEmpty() const { return m_styleSheetId.isEmpty(); } function in class:blink::InspectorCSSId
97 bool hasRawText() const { return !rawText.isEmpty(); }
/external/chromium_org/third_party/WebKit/Source/core/svg/properties/
H A DSVGListPropertyHelper.h126 bool isEmpty() const function in class:blink::SVGListPropertyHelper
302 if (m_values.isEmpty()) {
/external/chromium_org/third_party/WebKit/Source/platform/geometry/
H A DFloatBox.h136 if (box.isEmpty())
139 if (isEmpty()) {
147 bool isEmpty() const { return (m_width <= 0 && m_height <= 0) || (m_width <= 0 && m_depth <= 0) || (m_height <= 0 && m_depth <= 0); } function in class:blink::FloatBox
H A DFloatPolygon.h65 bool isEmpty() const { return m_empty; } function in class:blink::FloatPolygon
H A DFloatRoundedRect.h91 bool isEmpty() const { return m_rect.isEmpty(); } function in class:blink::FloatRoundedRect
H A DIntRect.h80 bool isEmpty() const { return m_size.isEmpty(); } function in class:blink::IntRect
H A DLayoutSize.h59 bool isEmpty() const { return m_width.rawValue() <= 0 || m_height.rawValue() <= 0; } function in class:blink::LayoutSize
/external/chromium_org/third_party/WebKit/Source/platform/network/
H A DFormData.h109 bool isEmpty() const { return m_elements.isEmpty(); } function in class:blink::FormData
H A DResourceRequest.cpp91 bool ResourceRequest::isEmpty() const function in class:blink::ResourceRequest
93 return m_url.isEmpty();
113 if (m_url.user().isEmpty() && m_url.pass().isEmpty())
203 if (!httpOrigin().isEmpty())
218 if (origin.isEmpty()) {
376 return !m_httpHeaderFields.get(lastModifiedHeader).isEmpty() || !m_httpHeaderFields.get(eTagHeader).isEmpty();
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DHashSet.h71 bool isEmpty() const;
145 inline bool HashSet<T, U, V, W>::isEmpty() const function in class:WTF::HashSet
147 return m_impl.isEmpty();
/external/chromium_org/third_party/WebKit/Source/wtf/text/
H A DAtomicString.h136 bool isEmpty() const { return m_string.isEmpty(); } function in class:WTF::AtomicString
/external/chromium_org/third_party/libaddressinput/src/java/src/com/android/i18n/addressinput/
H A DCacheData.java415 boolean isEmpty() { method in class:CacheData
/external/chromium_org/third_party/skia/include/core/
H A DSkImageInfo.h204 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
281 if (!a.isEmpty() && !b.isEmpty() &&
300 SkASSERT(!a.isEmpty() && !b.isEmpty());
319 if (left < right && top < bottom && !this->isEmpty() &&
333 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 6844 milliseconds

1234567891011>>