HomeSort by relevance Sort by last modified time
    Searched defs:is_empty (Results 1 - 25 of 33) sorted by null

1 2

  /external/chromium-trace/catapult/telemetry/telemetry/timeline/
bounds.py 25 def is_empty(self): member in class:Bounds
51 if self.is_empty or other.is_empty:
59 if self.is_empty or other.is_empty:
69 if bounds.is_empty:
90 if not a.is_empty and not b.is_empty:
93 if a.is_empty and not b.is_empty
    [all...]
  /external/dbus/bus/
config-loader-libxml.c 54 int i, status, is_empty; local
64 is_empty = xmlTextReaderIsEmptyElement (reader);
66 if (name == NULL || n_attributes < 0 || is_empty == -1)
102 if (ret && is_empty == 1)
  /external/v8/src/base/
smart-pointers.h 65 DCHECK(is_empty());
72 bool is_empty() const { return p_ == NULL; } function in class:v8::base::SmartPointerBase
  /external/webrtc/webrtc/modules/desktop_capture/
desktop_region.h 99 bool is_empty() const { return rows_.empty(); } function in class:webrtc::DesktopRegion
desktop_geometry.h 61 bool is_empty() const { return width_ <= 0 || height_ <= 0; } function in class:webrtc::DesktopSize
111 bool is_empty() const { return left_ >= right_ || top_ >= bottom_; } function in class:webrtc::DesktopRect
  /external/v8/src/
list.h 79 INLINE(bool is_empty() const) { return length_ == 0; } function in class:v8::internal::List
property-descriptor.h 55 bool is_empty() const { function in class:v8::internal::PropertyDescriptor
small-pointer-list.h 55 bool is_empty() const { return length() == 0; } function in class:v8::internal::SmallPointerList
splay-tree.h 92 bool is_empty() { return root_ == NULL; } function in class:v8::internal::SplayTree
type-feedback-vector-inl.h 57 bool TypeFeedbackVector::is_empty() const { function in class:v8::internal::TypeFeedbackVector
72 return is_empty() ? TypeFeedbackMetadata::cast(GetHeap()->empty_fixed_array())
79 DCHECK(!is_empty());
effects.h 176 bool IsEmpty() { return map_->is_empty(); }
257 bool is_empty() { return node_ == NULL; } function in class:v8::internal::NestedEffectsBase
327 DCHECK(!this->is_empty());
  /prebuilts/gdb/darwin-x86/lib/python2.7/
asynchat.py 280 def is_empty (self): member in class:fifo
  /prebuilts/gdb/linux-x86/lib/python2.7/
asynchat.py 280 def is_empty (self): member in class:fifo
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
asynchat.py 280 def is_empty (self): member in class:fifo
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
asynchat.py 280 def is_empty (self): member in class:fifo
  /system/bt/osi/src/
fixed_queue.c 91 bool is_empty = list_is_empty(queue->list); local
94 return is_empty;
  /system/extras/ext4_utils/
ext4_crypt.cpp 72 static bool is_dir_empty(const char *dirname, bool *is_empty)
93 *is_empty = false;
98 *is_empty = true;
189 bool is_empty; local
190 if (!is_dir_empty(directory, &is_empty)) return -1;
191 if (is_empty) {
  /art/test/968-default-partial-compile-generated/util-src/
generate_smali.py 227 if exp.is_empty():
361 def is_empty(self): member in class:ConflictInterface
455 def is_empty(self): member in class:TestInterface
474 if not self.is_empty() or len(self.ifaces) == 0:
489 assert best.is_empty()
  /art/test/971-iface-super/util-src/
generate_smali.py 415 def is_empty(self): member in class:ConflictInterface
517 def is_empty(self): function
557 if not self.is_empty() or len(self.ifaces) == 0:
572 assert best.is_empty()
  /external/mesa3d/src/glsl/
list.h 319 bool is_empty() const function in struct:exec_list
336 return !is_empty() ? head : NULL;
341 return !is_empty() ? head : NULL;
346 return !is_empty() ? tail_pred : NULL;
351 return !is_empty() ? tail_pred : NULL;
404 if (is_empty()) {
424 if (source->is_empty())
458 if (before->is_empty())
  /external/webrtc/webrtc/base/
win32regkey.cc 1053 bool is_empty = true; local
1064 is_empty = key.GetSubkeyCount() == 0 && key.GetValueCount() == 0;
1069 return is_empty;
  /external/wpa_supplicant_8/src/fst/
fst_group.c 413 Boolean is_empty = !fst_group_has_ifaces(group) && local
416 if (is_empty)
419 return is_empty;
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/utils/basic_cstring/
basic_cstring.hpp 82 bool is_empty() const;
86 // !! only for STL container conformance use is_empty instead
239 basic_cstring<CharT>::is_empty() const function in class:boost::unit_test::basic_cstring
250 return is_empty();
304 if( exclusions.is_empty() )
348 if( exclusions.is_empty() )
516 if( str.is_empty() || str.size() > size() )
538 if( str.is_empty() || str.size() > size() )
690 return source.is_empty() ? static_cast<string_value_type>(0) : *source.begin();
705 return source.is_empty() ? static_cast<string_value_type>(0) : *(source.end()-1)
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
vec.h 555 bool is_empty (void) const { return vecpfx_.num_ == 0; } function
638 /* If V is NULL, return true. Otherwise, return V->is_empty(). */
643 return v ? v->is_empty () : true;
    [all...]
  /external/opencv3/modules/calib3d/src/
dls.cpp 194 if(is_empty(&cam_points_k))
634 bool dls::is_empty(const cv::Mat * M) function in class:dls
    [all...]

Completed in 599 milliseconds

1 2