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

<<11121314151617181920>>

  /external/llvm/utils/unittest/googletest/include/gtest/internal/
gtest-string.h 64 // Note that String can represent both NULL and the empty string,
67 // NULL and the empty string are considered different. NULL is less
68 // than anything (including the empty string) except itself.
133 // including the empty string.
151 // including the empty string.
159 // including the empty string.
168 // including the empty string.
240 // Returns true iff this is an empty string (i.e. "").
241 bool empty() const { return (c_str() != NULL) && (length() == 0); } function in class:testing::internal::String
261 // String is considered to end with a NULL or empty suffix
    [all...]
  /external/parameter-framework/asio-1.10.6/include/asio/detail/
op_queue.hpp 132 // Whether the queue is empty.
133 bool empty() const function in class:asio::detail::op_queue
  /external/pdfium/core/fxcrt/
maybe_owned_unittest.cpp 53 MaybeOwned<PseudoDeletable> empty; local
54 EXPECT_FALSE(ptr == empty);
55 EXPECT_TRUE(ptr != empty);
91 MaybeOwned<PseudoDeletable> empty; local
92 EXPECT_FALSE(ptr == empty);
93 EXPECT_TRUE(ptr != empty);
  /external/perfetto/src/tracing/core/
patch_list.h 74 PERFETTO_DCHECK(empty() || last_->chunk_id != chunk_id ||
81 PERFETTO_DCHECK(!list_.empty());
83 if (empty())
88 PERFETTO_DCHECK(!list_.empty());
93 PERFETTO_DCHECK(!list_.empty());
99 bool empty() const { return list_.empty(); } function in class:perfetto::PatchList
  /external/protobuf/gtest/include/gtest/internal/
gtest-string.h 64 // Note that String can represent both NULL and the empty string,
67 // NULL and the empty string are considered different. NULL is less
68 // than anything (including the empty string) except itself.
133 // including the empty string.
151 // including the empty string.
159 // including the empty string.
168 // including the empty string.
240 // Returns true iff this is an empty string (i.e. "").
241 bool empty() const { return (c_str() != NULL) && (length() == 0); } function in class:testing::internal::String
261 // String is considered to end with a NULL or empty suffix
    [all...]
  /external/python/cpython2/Lib/
Queue.py 11 __all__ = ['Empty', 'Full', 'Queue', 'PriorityQueue', 'LifoQueue']
13 class Empty(Exception):
93 def empty(self): member in class:Queue
94 """Return True if the queue is empty, False otherwise (not reliable!)."""
156 the Empty exception if no item was available within that time.
158 available, else raise the Empty exception ('timeout' is ignored
165 raise Empty
176 raise Empty
188 raise the Empty exception.
  /external/python/cpython3/Lib/
queue.py 11 __all__ = ['Empty', 'Full', 'Queue', 'PriorityQueue', 'LifoQueue']
13 class Empty(Exception):
90 def empty(self): member in class:Queue
91 '''Return True if the queue is empty, False otherwise (not reliable!).
95 condition where a queue can grow before the result of empty() or
153 the Empty exception if no item was available within that time.
155 available, else raise the Empty exception ('timeout' is ignored
161 raise Empty
172 raise Empty
190 raise the Empty exception
    [all...]
sched.py 102 def empty(self): member in class:scheduler
103 """Check whether the queue is empty."""
108 """Execute events until the queue is empty.
  /external/sfntly/cpp/src/test/tinyxml/
tinystr.h 65 // TiXmlString empty constructor
139 // Checks if a TiXmlString is empty
140 bool empty () const { return rep_->size == 0; } function in class:TiXmlString
  /external/skia/src/core/
SkMiniRecorder.cpp 104 static SkPicture* empty; local
108 once([]{ empty = new SkEmptyPicture; });
109 return sk_ref_sp(empty);
SkRasterPipeline.h 157 bool empty() const { return fStages == nullptr; } function in class:SkRasterPipeline
  /external/skia/src/gpu/
GrWindowRectangles.h 24 bool empty() const { return !fCount; } function in class:GrWindowRectangles
  /external/skqp/src/core/
SkMiniRecorder.cpp 104 static SkPicture* empty; local
108 once([]{ empty = new SkEmptyPicture; });
109 return sk_ref_sp(empty);
SkRasterPipeline.h 155 bool empty() const { return fStages == nullptr; } function in class:SkRasterPipeline
  /external/skqp/src/gpu/
GrWindowRectangles.h 24 bool empty() const { return !fCount; } function in class:GrWindowRectangles
  /external/swiftshader/src/OpenGL/common/
NameSpace.hpp 39 ASSERT(empty());
42 bool empty() function in class:gl::NameSpace
44 return map.empty();
  /external/swiftshader/third_party/LLVM/include/llvm/ADT/
ArrayRef.h 48 /// Construct an empty ArrayRef.
69 : Data(Vec.empty() ? (T*)0 : &Vec[0]), Length(Vec.size()) {}
83 /// empty - Check if the array is empty.
84 bool empty() const { return Length == 0; } function in class:llvm::ArrayRef
93 assert(!empty());
99 assert(!empty());
SetVector.h 48 /// @brief Construct an empty SetVector
57 /// @brief Determine if the SetVector is empty or not.
58 bool empty() const { function in class:llvm::SetVector
59 return vector_.empty();
89 assert(!empty() && "Cannot call back() on empty SetVector!");
143 assert(!empty() && "Cannot remove an element from an empty SetVector!");
  /external/swiftshader/third_party/LLVM/utils/unittest/googletest/include/gtest/internal/
gtest-string.h 64 // Note that String can represent both NULL and the empty string,
67 // NULL and the empty string are considered different. NULL is less
68 // than anything (including the empty string) except itself.
133 // including the empty string.
151 // including the empty string.
159 // including the empty string.
168 // including the empty string.
240 // Returns true iff this is an empty string (i.e. "").
241 bool empty() const { return (c_str() != NULL) && (length() == 0); } function in class:testing::internal::String
261 // String is considered to end with a NULL or empty suffix
    [all...]
  /external/tensorflow/tensorflow/core/kernels/batching_util/
batch_scheduler.h 89 // empty.
96 bool empty() const;
209 if (tasks_.empty()) {
228 bool Batch<TaskType>::empty() const { function in class:tensorflow::serving::Batch
231 return tasks_.empty();
  /external/tinyxml/
tinystr.h 62 // TiXmlString empty constructor
138 // Checks if a TiXmlString is empty
139 bool empty () const { return rep_->size == 0; } function in class:TiXmlString
  /external/v8/src/base/
iterator.h 40 bool empty() const { return cbegin() == cend(); } function in class:v8::base::iterator_range
  /external/v8/src/heap/
array-buffer-tracker.cc 13 CHECK(array_buffers_.empty());
82 bool empty = ProcessBuffers(page, kUpdateForwardedRemoveOthers); local
83 CHECK(empty);
  /external/v8/src/interpreter/
bytecode-label.h 68 bool is_bound = !labels_.empty() && labels_.at(0).is_bound();
75 bool empty() const { return labels_.empty(); } function in class:v8::internal::interpreter::BytecodeLabels
  /external/v8/tools/
eval_gc_nvp.py 101 def empty(self): member in class:Category
162 parser.add_argument('--histogram-omit-empty-buckets',
165 help='omit empty histogram buckets')
208 # Filter out empty categories.
209 categories = [x for x in categories if not x.empty()]

Completed in 446 milliseconds

<<11121314151617181920>>