OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:isEmpty
(Results
126 - 150
of
377
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/external/apache-http/src/org/apache/http/util/
CharArrayBuffer.java
198
public boolean
isEmpty
() {
/external/emma/core/java12/com/vladium/emma/data/
CoverageData.java
78
public boolean
isEmpty
()
80
return m_coverageMap.
isEmpty
();
91
if ((rhs == null) || rhs.
isEmpty
() || (rhs == this))
/external/guava/src/com/google/common/collect/
ConcurrentHashMultiset.java
104
checkArgument(countMap.
isEmpty
());
379
@Override public boolean
isEmpty
() {
380
return countMap.
isEmpty
();
ImmutableBiMap.java
171
if (map.
isEmpty
()) {
198
if (map.
isEmpty
()) {
255
@Override public boolean
isEmpty
() {
256
return delegate().
isEmpty
();
/external/nist-sip/java/gov/nist/core/
MultiValueMapImpl.java
117
public boolean
isEmpty
() {
118
return map.
isEmpty
();
/external/protobuf/java/src/main/java/com/google/protobuf/
ByteString.java
73
public boolean
isEmpty
() {
/external/skia/include/core/
SkString.h
49
bool
isEmpty
() const { return fRec->fLength == 0; }
/external/skia/src/animator/
SkTDArray_Experimental.h
61
bool
isEmpty
() const { return fCount == 0; }
/external/v8/benchmarks/
splay.js
146
SplayTree.prototype.
isEmpty
= function() {
160
if (this.
isEmpty
()) {
193
if (this.
isEmpty
()) {
224
if (this.
isEmpty
()) {
237
if (this.
isEmpty
()) {
260
if (!this.
isEmpty
()) {
278
if (this.
isEmpty
()) {
/external/webkit/JavaScriptCore/runtime/
ArgList.h
72
ASSERT(
isEmpty
());
88
bool
isEmpty
() const { return !m_size; }
220
bool
isEmpty
() const { return !m_argCount; }
MarkStack.h
68
ASSERT(m_markSets.
isEmpty
());
69
ASSERT(m_values.
isEmpty
());
143
inline bool
isEmpty
()
/external/webkit/JavaScriptCore/wtf/
HashSet.h
58
bool
isEmpty
() const;
134
inline bool HashSet<T, U, V>::
isEmpty
() const
136
return m_impl.
isEmpty
();
MessageQueue.h
71
// The result of
isEmpty
() is only valid if no other thread is manipulating the queue at the same time.
72
bool
isEmpty
();
104
bool wasEmpty = m_queue.
isEmpty
();
163
if (m_queue.
isEmpty
())
189
inline bool MessageQueue<DataType>::
isEmpty
()
194
return m_queue.
isEmpty
();
RefPtrHashMap.h
74
bool
isEmpty
() const;
138
inline bool HashMap<RefPtr<T>, U, V, W, X>::
isEmpty
() const
140
return m_impl.
isEmpty
();
/external/webkit/SunSpider/tests/v8-v4/
v8-splay.js
141
SplayTree.prototype.
isEmpty
= function() {
155
if (this.
isEmpty
()) {
188
if (this.
isEmpty
()) {
219
if (this.
isEmpty
()) {
232
if (this.
isEmpty
()) {
255
if (!this.
isEmpty
()) {
273
if (this.
isEmpty
()) {
/external/webkit/WebCore/platform/graphics/
FloatRect.h
97
bool
isEmpty
() const { return m_size.
isEmpty
(); }
IntRect.h
103
bool
isEmpty
() const { return m_size.
isEmpty
(); }
/external/webkit/WebCore/platform/text/
AtomicString.h
103
bool
isEmpty
() const { return m_string.
isEmpty
(); }
/frameworks/base/core/java/android/webkit/
ByteArrayBuilder.java
49
if (mChunks.
isEmpty
()) {
74
if (mChunks.
isEmpty
()) return null;
78
public synchronized boolean
isEmpty
() {
79
return mChunks.
isEmpty
();
119
if (!sPool.
isEmpty
()) {
/frameworks/base/core/java/android/widget/
HeaderViewListAdapter.java
81
public boolean
isEmpty
() {
82
return mAdapter == null || mAdapter.
isEmpty
();
/frameworks/base/graphics/java/android/graphics/
RectF.java
88
public final boolean
isEmpty
() {
/frameworks/base/test-runner/tests/src/android/test/suitebuilder/
UnitTestSuiteBuilderTest.java
50
assertTrue(recorder.testsSeen.
isEmpty
());
/libcore/luni/src/main/java/java/util/
HashSet.java
101
* @see #
isEmpty
149
public boolean
isEmpty
() {
150
return backingMap.
isEmpty
();
/libcore/luni/src/main/native/
java_net_NetworkInterface.cpp
182
bool
isEmpty
= true;
186
isEmpty
= false;
189
if (
isEmpty
) {
/libcore/luni/src/test/java/libcore/java/text/
OldAttributedCharacterIteratorTest.java
60
assertTrue(emptyAttributes.
isEmpty
());
99
assertTrue(as.getIterator().getAttributes().
isEmpty
());
Completed in 2274 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>