Searched defs:empty (Results 1 - 13 of 13) sorted by relevance

/art/tools/ahat/src/test/com/android/ahat/
H A DQueryTest.java61 public void empty() throws URISyntaxException { method in class:QueryTest
/art/libartbase/base/
H A Dbounded_fifo.h42 bool empty() const { function in class:art::BoundedFifoPowerOfTwo
H A Darray_ref.h134 bool empty() const { return size() == 0u; } function in class:art::ArrayRef
149 DCHECK(!empty());
154 DCHECK(!empty());
159 DCHECK(!empty());
164 DCHECK(!empty());
H A Darray_slice.h44 // 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());
H A Dtransform_array_ref.h107 bool empty() const { return base().empty(); } function in class:art::TransformArrayRef
H A Dsafe_map.h67 bool empty() const { return map_.empty(); } function in class:art::SafeMap
H A Dstringpiece.h66 bool empty() const { return length_ == 0; } function in class:art::StringPiece
/art/test/003-omnibus-opcodes/src/
H A DArray.java85 static void checkRange32(int[] ints, int[] empty, int negVal1, int negVal2) { argument
130 i = empty[1];
/art/test/968-default-partial-compile-gen/util-src/
H A Dgenerate_smali.py326 empty: It does not have the method
330 empty = 2 variable in class:InterfaceType
337 elif self == InterfaceType.empty:
460 return self.iface_type == InterfaceType.empty
/art/test/971-iface-super/util-src/
H A Dgenerate_smali.py380 empty: It does not have the method
384 empty = 2 variable in class:InterfaceType
391 elif self == InterfaceType.empty:
522 return self.iface_type == InterfaceType.empty
/art/compiler/utils/
H A Dintrusive_forward_list.h175 bool empty() const { return begin() == end(); } function in class:art::IntrusiveForwardList
192 DCHECK(!empty());
306 if (!empty()) {
368 while (!empty()) {
378 return !empty() && ++begin() == end();
/art/runtime/
H A Dinstrumentation.cc695 bool empty; local
698 empty = IsDeoptimizedMethodsEmpty(); // Avoid lock violation.
700 if (empty) {
842 if (deoptimized_methods_.empty()) {
859 return deoptimized_methods_.empty();
891 bool empty; local
897 empty = IsDeoptimizedMethodsEmpty();
915 if (empty) {
/art/runtime/gc/collector/
H A Dconcurrent_copying.cc69 name_prefix + (name_prefix.empty() ? "" : " ") +
288 CHECK(false_gray_stack_.empty());
316 DCHECK(immune_gray_stack_.empty());
876 // (which may be non-empty if there were refs found on thread-local mark stacks during the above
1092 if (!pooled_mark_stacks_.empty()) {
1400 bool empty = ProcessMarkStackOnce(); local
1401 if (empty_prev && empty) {
1402 // Saw empty mark stack for a second time, done.
1405 empty_prev = empty;
1427 // Do an empty checkpoin
[all...]

Completed in 5573 milliseconds