Searched refs:isEmpty (Results 51 - 75 of 2528) sorted by relevance

1234567891011>>

/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
H A DTextUtilsTest.java24 assertThat(TextUtils.isEmpty(null), equalTo(true));
25 assertThat(TextUtils.isEmpty(""), equalTo(true));
26 assertThat(TextUtils.isEmpty(" "), equalTo(false));
27 assertThat(TextUtils.isEmpty("123"), equalTo(false));
/external/chromium_org/third_party/skia/src/core/
H A DSkScan.cpp20 if (!r.isEmpty()) {
68 if (clip.isEmpty() || r.isEmpty()) {
83 if (clip.isEmpty() || xr.isEmpty()) {
98 if (clip.isEmpty() || r.isEmpty()) {
H A DSkTObjectPool.h28 while (!fBlocks.isEmpty()) {
42 if (fAvailable.isEmpty()) {
/external/skia/src/core/
H A DSkScan.cpp20 if (!r.isEmpty()) {
68 if (clip.isEmpty() || r.isEmpty()) {
83 if (clip.isEmpty() || xr.isEmpty()) {
98 if (clip.isEmpty() || r.isEmpty()) {
/external/chromium_org/third_party/WebKit/Source/core/accessibility/
H A DAXImageMapLink.cpp78 if (!ariaRole.isEmpty())
105 if (!ariaLabel.isEmpty())
108 if (!alt.isEmpty())
117 if (!title.isEmpty())
120 if (!summary.isEmpty())
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSShadowValue.cpp53 if (!text.isEmpty())
58 if (!text.isEmpty())
63 if (!text.isEmpty())
68 if (!text.isEmpty())
73 if (!text.isEmpty())
/external/dexmaker/src/main/java/com/google/dexmaker/
H A DLabel.java51 boolean isEmpty() { method in class:Label
52 return instructions.isEmpty();
57 while (catchLabels.get(i).isEmpty()) {
61 while (primarySuccessor != null && primarySuccessor.isEmpty()) {
64 while (alternateSuccessor != null && alternateSuccessor.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/chromium_org/extensions/renderer/resources/
H A Dset_icon.js73 var isEmpty = true;
78 isEmpty =false;
82 if (isEmpty) {
98 var isEmpty = true;
102 if (isEmpty)
112 isEmpty = false;
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DMainThreadTaskRunner.cpp82 if (!task->taskNameForInstrumentation().isEmpty())
94 if (!isInspectorTask && (m_context->tasksNeedSuspension() || !m_pendingTasks.isEmpty())) {
99 const bool instrumenting = !isInspectorTask && !task->taskNameForInstrumentation().isEmpty();
117 if (!m_pendingTasks.isEmpty())
125 while (!m_pendingTasks.isEmpty()) {
128 const bool instrumenting = !task->taskNameForInstrumentation().isEmpty();
H A DAttribute.h53 bool isEmpty() const { return m_value.isEmpty(); } function in class:blink::Attribute
H A DIdTargetObserverRegistry.h64 if (id.isEmpty() || m_registry.isEmpty())
/external/chromium_org/third_party/WebKit/Source/web/tests/
H A DPaintAggregatorTest.cpp57 EXPECT_TRUE(update.scrollRect.isEmpty());
79 EXPECT_TRUE(update.scrollRect.isEmpty());
104 EXPECT_TRUE(update.scrollRect.isEmpty());
122 EXPECT_TRUE(update.paintRects.isEmpty());
123 EXPECT_FALSE(update.scrollRect.isEmpty());
149 EXPECT_TRUE(update.paintRects.isEmpty());
150 EXPECT_FALSE(update.scrollRect.isEmpty());
195 EXPECT_TRUE(update.scrollRect.isEmpty());
216 EXPECT_FALSE(update.scrollRect.isEmpty());
238 EXPECT_FALSE(update.scrollRect.isEmpty());
[all...]
/external/apache-xml/src/main/java/org/apache/xpath/axes/
H A DIteratorPool.java66 if (m_freeStack.isEmpty())
88 if (m_freeStack.isEmpty())
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/printing/
H A DTabPrinter.java45 if (!TextUtils.isEmpty(title)) return title;
48 if (!TextUtils.isEmpty(url)) return url;
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
H A DSharedPersistent.h55 bool isEmpty() { return m_value.isEmpty(); } function in class:blink::SharedPersistent
/external/chromium_org/third_party/WebKit/Source/core/animation/
H A DAnimationStack.h53 bool isEmpty() const { return m_effects.isEmpty(); } function in class:blink::AnimationStack
/external/chromium_org/third_party/WebKit/Source/core/frame/
H A DPlatformEventDispatcher.cpp25 bool wasEmpty = m_controllers.isEmpty();
67 if (m_controllers.isEmpty())
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DImageQualityController.h69 bool isEmpty() { return m_objectLayerSizeMap.isEmpty(); } function in class:blink::FINAL
/external/chromium_org/third_party/WebKit/Source/core/rendering/shapes/
H A DRectangleShape.h51 virtual bool isEmpty() const OVERRIDE { return m_bounds.isEmpty(); }
/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGAltGlyphDefElement.cpp109 if (toSVGAltGlyphItemElement(child)->hasValidGlyphElements(glyphNames) && !glyphNames.isEmpty())
113 return !glyphNames.isEmpty();
H A DSVGPathByteStream.h58 bool isEmpty() const { return m_data.isEmpty(); } function in class:blink::SVGPathByteStream
/external/chromium_org/third_party/WebKit/Source/platform/weborigin/
H A DKnownPorts.cpp39 if (protocol.isEmpty())
44 if (defaultPorts.isEmpty()) {
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DMessageQueue.h72 // The result of isEmpty() is only valid if no other thread is manipulating the queue at the same time.
73 bool isEmpty();
107 bool wasEmpty = m_queue.isEmpty();
136 while (!m_killed && !timedOut && m_queue.isEmpty())
151 ASSERT_WITH_SECURITY_IMPLICATION(!m_queue.isEmpty());
163 if (m_queue.isEmpty())
173 if (m_queue.isEmpty())
180 inline bool MessageQueue<DataType>::isEmpty() function in class:WTF::MessageQueue
185 return m_queue.isEmpty();
/external/chromium_org/third_party/skia/debugger/
H A Ddebuggermain.cpp39 } else if (input.isEmpty()) {
49 if (!input.isEmpty()) {

Completed in 4948 milliseconds

1234567891011>>