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

1 2 3 4 56 7 8 91011>>

  /external/javaparser/javaparser-testing/src/test/java/com/github/javaparser/metamodel/
BaseNodeMetaModelTest.java 13 super(Optional.empty(), StringLiteralExpr.class, "stri", "com.japa", true, true);
  /external/libchrome/base/
environment_unittest.cc 18 // Every setup should have non-empty PATH...
95 const wchar_t empty[] = L"\0"; local
100 e = AlterEnvironment(empty, changes);
104 e = AlterEnvironment(empty, changes);
109 e = AlterEnvironment(empty, changes);
130 const char* const empty[] = { NULL }; local
135 e = AlterEnvironment(empty, changes);
139 e = AlterEnvironment(empty, changes);
145 e = AlterEnvironment(empty, changes);
  /external/libtextclassifier/util/strings/
stringpiece.h 54 bool empty() const { return size_ == 0; } function in class:libtextclassifier2::StringPiece
  /external/llvm/include/llvm/ADT/
SmallSet.h 50 bool LLVM_ATTRIBUTE_UNUSED_RESULT empty() const { function in class:llvm::SmallSet
51 return Vector.empty() && Set.empty();
88 while (!Vector.empty()) {
119 bool isSmall() const { return Set.empty(); }
  /external/llvm/include/llvm/CodeGen/
LivePhysRegs.h 50 /// \brief Constructs a new empty LivePhysRegs set.
53 /// \brief Constructs and initialize an empty LivePhysRegs set.
70 /// \brief Returns true if the set is empty.
71 bool empty() const { return LiveRegs.empty(); } function in class:llvm::LivePhysRegs
  /external/llvm/include/llvm/DebugInfo/CodeView/
MemoryTypeTableBuilder.h 25 bool empty() const { return Records.empty(); } function in class:llvm::codeview::MemoryTypeTableBuilder
  /external/llvm/include/llvm/IR/
TypeFinder.h 56 bool empty() const { return StructTypes.empty(); } function in class:llvm::TypeFinder
ValueSymbolTable.h 72 /// @returns true iff the symbol table is empty
73 /// @brief Determine if the symbol table is empty
74 inline bool empty() const { return vmap.empty(); } function in class:llvm::ValueSymbolTable
  /external/llvm/lib/CodeGen/AsmPrinter/
DbgValueHistoryCalculator.h 48 bool empty() const { return VarInstrRanges.empty(); } function in class:llvm::DbgValueHistoryMap
  /external/llvm/lib/MC/
ConstantPools.cpp 25 if (Entries.empty())
45 bool ConstantPool::empty() { return Entries.empty(); } function in class:ConstantPool
65 if (!CP.empty()) {
  /external/ltp/testcases/kernel/security/securebits/
check_keepcaps.c 36 int i, ret, empty = 1; local
52 empty = 0;
55 return empty;
  /external/ltp/testcases/kernel/syscalls/set_thread_area/
set_thread_area.h 28 unsigned int empty:25; member in struct:user_desc
  /external/pdfium/core/fxcrt/
bytestring_unittest.cpp 54 ByteString empty; local
68 EXPECT_FALSE(empty < empty);
72 EXPECT_FALSE(c_null < empty);
73 EXPECT_FALSE(c_empty < empty);
77 EXPECT_FALSE(empty < c_null);
78 EXPECT_FALSE(empty < c_empty);
82 EXPECT_FALSE(empty < v_empty);
87 EXPECT_TRUE(empty < a);
88 EXPECT_FALSE(a < empty);
    [all...]
widestring_unittest.cpp 53 WideString empty; local
67 EXPECT_FALSE(empty < empty);
71 EXPECT_FALSE(c_null < empty);
72 EXPECT_FALSE(c_empty < empty);
76 EXPECT_FALSE(empty < c_null);
77 EXPECT_FALSE(empty < c_empty);
81 EXPECT_FALSE(empty < v_empty);
86 EXPECT_TRUE(empty < a);
87 EXPECT_FALSE(a < empty);
    [all...]
  /external/protobuf/ruby/lib/google/protobuf/
repeated_field.rb 102 def empty?
  /external/skia/src/core/
SkAntiRun.h 32 bool empty() const { function in class:SkAlphaRuns
  /external/skqp/src/core/
SkAntiRun.h 32 bool empty() const { function in class:SkAlphaRuns
  /external/snakeyaml/src/main/java/org/yaml/snakeyaml/emitter/
ScalarAnalysis.java 20 public boolean empty; field in class:ScalarAnalysis
27 public ScalarAnalysis(String scalar, boolean empty, boolean multiline, boolean allowFlowPlain,
30 this.empty = empty;
  /external/swiftshader/third_party/LLVM/include/llvm/ADT/
SmallSet.h 42 bool empty() const { return Vector.empty() && Set.empty(); } function in class:llvm::SmallSet
71 while (!Vector.empty()) {
101 bool isSmall() const { return Set.empty(); }
TinyPtrVector.h 40 bool empty() const { function in class:llvm::TinyPtrVector
41 // This vector can be empty if it contains no element, or if it
42 // contains a pointer to an empty vector.
45 return Vec->empty();
50 if (empty())
59 if (empty())
69 if (empty())
80 assert(!Val.isNull() && "can't index into an empty vector");
92 assert(!empty() && "vector empty");
    [all...]
UniqueVector.h 75 /// empty - Returns true if the vector is empty.
77 bool empty() const { return Vector.empty(); } function in class:llvm::UniqueVector
  /external/swiftshader/third_party/LLVM/include/llvm/
ValueSymbolTable.h 73 /// @returns true iff the symbol table is empty
74 /// @brief Determine if the symbol table is empty
75 inline bool empty() const { return vmap.empty(); } function in class:llvm::ValueSymbolTable
  /external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
SmallSet.h 55 LLVM_NODISCARD bool empty() const { function in class:llvm::SmallSet
56 return Vector.empty() && Set.empty();
93 while (!Vector.empty()) {
124 bool isSmall() const { return Set.empty(); }
  /external/tensorflow/tensorflow/compiler/xla/
array2d_test.cc 26 Array2D<int> empty; local
27 EXPECT_EQ(empty.n1(), 0);
28 EXPECT_EQ(empty.n2(), 0);
29 EXPECT_EQ(empty.num_elements(), 0);
  /external/tensorflow/tensorflow/contrib/lite/schema/builtin_ops_header/
generator.cc 76 bool empty = true; local
78 // It's not empty if at least one character is consumed.
79 empty = false;
82 if (empty) {

Completed in 727 milliseconds

1 2 3 4 56 7 8 91011>>