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

<<11121314151617181920>>

  /external/protobuf/src/google/protobuf/io/
printer.cc 141 if (varname.empty()) {
175 static map<string, string> empty; local
176 Print(empty, text);
296 if (indent_.empty()) {
  /external/puffin/src/
utils_unittest.cc 135 Buffer empty; local
138 FindDeflatesInZlibBlocks(empty, empty_zlibs, empty_deflates);
  /external/python/cpython2/Lib/multiprocessing/
queues.py 45 from Queue import Empty, Full
127 raise Empty
132 raise Empty
134 raise Empty
145 def empty(self): member in class:Queue
361 def empty(self): member in class:SimpleQueue
  /external/python/cpython3/Lib/asyncio/
queues.py 16 which is empty.
105 def empty(self): member in class:Queue
106 """Return True if the queue is empty, False otherwise."""
159 If queue is empty, wait until an item is available.
163 while self.empty():
170 if not self.empty() and not getter.cancelled():
182 if self.empty():
  /external/python/cpython3/Lib/multiprocessing/
queues.py 20 from queue import Empty, Full
100 raise Empty
105 raise Empty
107 raise Empty
119 def empty(self): member in class:Queue
331 def empty(self): member in class:SimpleQueue
  /external/skia/gm/
gm_expectations.h 118 * It's fine if the jsonElement is null or empty; in that case, we just
136 bool empty() const { return this->fAllowedResultDigests.empty(); } function in class:skiagm::Expectations
148 * empty, or if it was based on a list of checksums rather
  /external/skia/include/core/
SkDeque.h 22 * empty block from the beginning/end of the list (Presumably so push/pop pairs
36 bool empty() const { return 0 == fCount; } function in class:SkDeque
  /external/skia/src/core/
SkSinglyLinkedList.h 34 bool empty() const { return fHead == nullptr; } function in class:SkSinglyLinkedList
  /external/skia/src/pathops/
SkOpBuilder.cpp 91 SkPath empty; local
92 SkPathWriter woundPath(empty);
  /external/skia/tests/
Point3Test.cpp 98 const SkPoint3 empty = SkPoint3::Make(0.0f, 0.0f, 0.0f); local
102 REPORTER_ASSERT(reporter, point == empty);
  /external/skqp/gm/
gm_expectations.h 118 * It's fine if the jsonElement is null or empty; in that case, we just
136 bool empty() const { return this->fAllowedResultDigests.empty(); } function in class:skiagm::Expectations
148 * empty, or if it was based on a list of checksums rather
  /external/skqp/include/core/
SkDeque.h 22 * empty block from the beginning/end of the list (Presumably so push/pop pairs
36 bool empty() const { return 0 == fCount; } function in class:SkDeque
  /external/skqp/src/core/
SkSinglyLinkedList.h 34 bool empty() const { return fHead == nullptr; } function in class:SkSinglyLinkedList
  /external/skqp/src/pathops/
SkOpBuilder.cpp 91 SkPath empty; local
92 SkPathWriter woundPath(empty);
  /external/skqp/tests/
Point3Test.cpp 98 const SkPoint3 empty = SkPoint3::Make(0.0f, 0.0f, 0.0f); local
102 REPORTER_ASSERT(reporter, point == empty);
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/emitter/template/
MyBean.java 26 private List<Integer> empty = new ArrayList<Integer>(); field in class:MyBean
46 return empty;
49 public void setEmpty(List<Integer> empty) {
50 this.empty = empty;
74 if (!empty.equals(bean.empty)) {
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue116/
NoFieldsTest.java 26 Empty empty = new Empty(); local
28 String result = yaml.dump(empty);
29 assertEquals("!!org.yaml.snakeyaml.issues.issue116.Empty {}\n", result);
31 assertTrue(emptyParsed instanceof Empty);
64 class Empty {
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue60/
SkipBean.java 30 private List<File> empty = new ArrayList<File>(0); field in class:SkipBean
76 return empty;
79 public void setEmpty(List<File> empty) {
80 this.empty = empty;
  /external/swiftshader/third_party/LLVM/include/llvm/ADT/
PackedVector.h 101 bool empty() const { return Bits.empty(); } function in class:llvm::PackedVector
StringRef.h 61 /// Construct an empty string ref.
98 /// empty - Check if the string is empty.
99 bool empty() const { return Length == 0; } function in class:llvm::StringRef
106 assert(!empty());
112 assert(!empty());
307 /// erroneous if empty.
323 /// non-empty number in the appropriate base.
337 /// empty substring will be returned.
351 /// empty substring will be returned
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/Analysis/
Trace.h 102 bool empty() const { return BasicBlocks.empty(); } function in class:llvm::Trace
  /external/swiftshader/third_party/LLVM/include/llvm/CodeGen/
MachineLoopInfo.h 82 bool empty() const { return LI.empty(); } function in class:llvm::MachineLoopInfo
  /external/swiftshader/third_party/LLVM/include/llvm/Support/
StringPool.h 69 /// empty - Checks whether the pool is empty. Returns true if so.
71 inline bool empty() const { return InternTable.empty(); } function in class:llvm::StringPool
116 assert(*this && "Attempt to dereference empty PooledStringPtr!");
121 assert(*this && "Attempt to dereference empty PooledStringPtr!");
126 assert(*this && "Attempt to dereference empty PooledStringPtr!");
  /external/swiftshader/third_party/LLVM/tools/bugpoint/
ListReducer.h 53 std::vector<ElTy> empty; local
55 switch (doTest(TheList, empty, Error)) {
65 "selected empty set.");
71 assert(!Error.empty());
100 if (doTest(ShuffledList, empty, Error) == KeepPrefix) {
146 assert(Error.empty() && "doTest did not return InternalError for error");
186 if (!Error.empty())
  /external/tensorflow/tensorflow/compiler/xla/tests/
copy_test.cc 247 auto empty = Literal::CreateFromShape(in_shape); local
251 auto input_data = client_->TransferToServer(*empty).ConsumeValueOrDie();
255 LiteralTestUtil::ExpectEqual(*empty, *actual);

Completed in 527 milliseconds

<<11121314151617181920>>