HomeSort by relevance Sort by last modified time
    Searched defs:empty (Results 426 - 450 of 3009) sorted by null

<<11121314151617181920>>

  /system/extras/simpleperf/
SampleComparator.h 113 bool empty() const { return compare_v_.empty(); } function in class:SampleComparator
  /libcore/jsr166-tests/src/test/java/jsr166/
ConcurrentSkipListMapTest.java 108 ConcurrentSkipListMap empty = new ConcurrentSkipListMap(); local
109 assertNull(empty.get(one));
113 * isEmpty is true of empty map and false for non-empty
116 ConcurrentSkipListMap empty = new ConcurrentSkipListMap(); local
118 assertTrue(empty.isEmpty());
354 ConcurrentSkipListMap empty = new ConcurrentSkipListMap();
356 empty.putAll(map);
357 assertEquals(5, empty.size());
358 assertTrue(empty.containsKey(one))
    [all...]
ConcurrentSkipListSubMapTest.java 127 ConcurrentNavigableMap empty = map0(); local
128 assertNull(empty.get(one));
132 * isEmpty is true of empty map and false for non-empty
135 ConcurrentNavigableMap empty = map0(); local
137 assertTrue(empty.isEmpty());
266 ConcurrentNavigableMap empty = map0();
268 empty.putAll(map);
269 assertEquals(5, empty.size());
270 assertTrue(empty.containsKey(one))
    [all...]
TreeMapTest.java 107 TreeMap empty = new TreeMap(); local
108 assertNull(empty.get(one));
112 * isEmpty is true of empty map and false for non-empty
115 TreeMap empty = new TreeMap(); local
117 assertTrue(empty.isEmpty());
337 TreeMap empty = new TreeMap();
339 empty.putAll(map);
340 assertEquals(5, empty.size());
341 assertTrue(empty.containsKey(one))
    [all...]
TreeSubMapTest.java 126 NavigableMap empty = map0(); local
127 assertNull(empty.get(one));
131 * isEmpty is true of empty map and false for non-empty
134 NavigableMap empty = map0(); local
136 assertTrue(empty.isEmpty());
223 NavigableMap empty = map0();
225 empty.putAll(map);
226 assertEquals(5, empty.size());
227 assertTrue(empty.containsKey(one))
    [all...]
  /external/protobuf/java/core/src/test/java/com/google/protobuf/
FieldPresenceTest.java 163 builder.setOptionalBytes(ByteString.EMPTY);
177 b.setOptionalBytes(ByteString.EMPTY);
187 TestAllTypes empty = TestAllTypes.newBuilder().build(); local
189 assertTrue(empty.equals(message));
190 assertTrue(message.equals(empty));
191 assertEquals(empty.hashCode(), message.hashCode());
213 .setOptionalBytes(ByteString.EMPTY)
274 assertEquals(ByteString.EMPTY, message.getOptionalBytes());
354 // UnknownFieldSet should be empty.
  /art/libartbase/base/
array_ref.h 134 bool empty() const { return size() == 0u; } function in class:art::ArrayRef
149 DCHECK(!empty());
154 DCHECK(!empty());
159 DCHECK(!empty());
164 DCHECK(!empty());
array_slice.h 44 // Create an empty array slice.
74 bool empty() const { return size() == 0u; } function in class:art::ArraySlice
89 DCHECK(!empty());
94 DCHECK(!empty());
99 DCHECK(!empty());
104 DCHECK(!empty());
transform_array_ref.h 107 bool empty() const { return base().empty(); } function in class:art::TransformArrayRef
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/streamquality/
StreamingVideoActivity.java 155 TextView empty = (TextView) findViewById(android.R.id.empty); local
156 empty.setText(R.string.sv_no_data);
  /device/linaro/bootloader/edk2/QuarkSocPkg/QuarkNorthCluster/MemoryInit/Pei/
lprint.c 160 uint8_t empty = 1; local
178 empty = 0;
182 if (!empty || i <= width)
196 uint8_t empty = 1; local
212 empty = 0;
216 if (!empty || i <= width)
230 uint8_t empty = 1; local
249 empty = 0;
253 if (!empty || i < width)
  /device/linaro/bootloader/edk2/StdLib/LibC/Stdio/
findfp.c 106 static FILE empty; local
118 *p = empty;
  /external/apache-xml/src/main/java/org/apache/xml/utils/
ObjectStack.java 121 * @throws EmptyStackException if this stack is empty.
139 * @throws EmptyStackException if this stack is empty.
157 * @throws EmptyStackException if this stack is empty.
171 * Tests if this stack is empty.
173 * @return <code>true</code> if this stack is empty;
177 public boolean empty() method in class:ObjectStack
  /external/boringssl/src/include/openssl/
span.h 131 bool empty() const { return size_ == 0; } function in class:bssl::Span
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
ASN1TaggedObject.java 15 boolean empty = false; field in class:ASN1TaggedObject
106 if (tagNo != other.tagNo || empty != other.empty || explicit != other.explicit)
172 return empty;
  /external/clang/include/clang/AST/
ASTUnresolvedSet.h 71 bool empty() const { return Decls.empty(); } function in class:clang::ASTUnresolvedSet
102 assert(Impl.empty() || Impl.Decls.isLazy());
  /external/clang/test/SemaTemplate/
cxx1z-fold-expressions.cpp 27 template<int ...N> void empty() { function
32 template void empty<>();
34 // An empty fold-expression isn't a null pointer just because it's an integer
35 // with value 0. (This is no longer an issue since empty pack expansions don't
44 (N + ...); // expected-error {{empty expansion for operator '+' with no fallback}}
45 (N * ...); // expected-error {{empty expansion for operator '*' with no fallback}}
46 (N | ...); // expected-error {{empty expansion for operator '|' with no fallback}}
47 (N & ...); // expected-error {{empty expansion for operator '&' with no fallback}}
48 (N - ...); // expected-error {{empty expansion for operator '-' with no fallback}}
49 (N / ...); // expected-error {{empty expansion for operator '/' with no fallback}
    [all...]
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_bvgraph.h 36 bool empty() const { function in class:__sanitizer::BVGraph
38 if (!v[i].empty())
54 while (!t1.empty()) {
90 while (!t1.empty()) {
92 if (!v[idx].empty()) {
117 while (!to_visit.empty()) {
sanitizer_list.h 25 // and an object with all zero fields should represent a valid empty list.
37 bool empty() const { return size_ == 0; } function in struct:__sanitizer::IntrusiveList
41 if (empty()) {
54 if (empty()) {
66 CHECK(!empty());
80 if (l->empty())
82 if (empty()) {
84 } else if (!l->empty()) {
94 if (l->empty())
96 if (empty()) {
    [all...]
  /external/e2fsprogs/lib/support/
quotaio_v2.c 50 struct v2r1_disk_dqblk *d = dp, empty; local
62 memset(&empty, 0, sizeof(struct v2r1_disk_dqblk));
63 empty.dqb_itime = ext2fs_cpu_to_le64(1);
64 if (!memcmp(&empty, dp, sizeof(struct v2r1_disk_dqblk)))
  /external/f2fs-tools/fsck/
quotaio_v2.c 51 struct v2r1_disk_dqblk *d = dp, empty; local
63 memset(&empty, 0, sizeof(struct v2r1_disk_dqblk));
64 empty.dqb_itime = cpu_to_le64(1);
65 if (!memcmp(&empty, dp, sizeof(struct v2r1_disk_dqblk)))
  /external/google-breakpad/src/testing/gtest/test/
gtest-tuple_test.cc 147 tuple<> empty; local
  /external/googletest/googletest/test/
gtest-tuple_test.cc 147 tuple<> empty; local
  /external/icu/icu4c/source/common/
uvectr32.h 200 UBool empty(void) const; // TODO: redundant, same as empty(). Remove it?
282 inline UBool UVector32::empty(void) const { function in class:UVector32
  /external/jacoco/org.jacoco.core.test/src-java7/org/jacoco/core/test/filter/targets/
TryWithResources.java 158 empty(); method
166 private static void empty() throws Exception { method in class:TryWithResources
167 try ( // $line-empty.try$
168 Closeable r = new Resource() // $line-empty.open$
170 } // $line-empty.close$

Completed in 869 milliseconds

<<11121314151617181920>>