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

<<11121314151617181920>>

  /prebuilts/clang/host/linux-x86/clang-4639204/include/clang/Basic/
VersionTuple.h 67 /// \brief Determine whether this version information is empty
69 bool empty() const { function in class:clang::VersionTuple
  /prebuilts/clang/host/linux-x86/clang-4639204/include/clang/CodeGen/
SwiftCallingConv.h 74 bool empty() const { function in class:clang::CodeGen::swiftcall::SwiftAggLowering
75 assert(Finished && "didn't finish lowering before calling empty()");
76 return Entries.empty();
  /prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/ADT/
SetVector.h 55 /// \brief Construct an empty SetVector
72 /// \brief Determine if the SetVector is empty or not.
73 bool empty() const { function in class:llvm::SetVector
74 return vector_.empty();
124 assert(!empty() && "Cannot call front() on empty SetVector!");
130 assert(!empty() && "Cannot call back() on empty SetVector!");
223 assert(!empty() && "Cannot remove an element from an empty SetVector!")
    [all...]
SmallSet.h 56 LLVM_NODISCARD bool empty() const { function in class:llvm::SmallSet
57 return Vector.empty() && Set.empty();
94 while (!Vector.empty()) {
125 bool isSmall() const { return Set.empty(); }
UniqueVector.h 90 /// empty - Returns true if the vector is empty.
91 bool empty() const { return Vector.empty(); } function in class:llvm::UniqueVector
  /prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/CodeGen/
LivePhysRegs.h 57 /// Constructs and initializes an empty set.
75 /// Returns true if the set is empty.
76 bool empty() const { return LiveRegs.empty(); } function in class:llvm::LivePhysRegs
LiveRegUnits.h 35 /// Constructs a new empty LiveRegUnits set.
38 /// Constructs and initialize an empty LiveRegUnits set.
53 /// Returns true if the set is empty.
54 bool empty() const { return Units.none(); } function in class:llvm::LiveRegUnits
  /prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/DebugInfo/DWARF/
DWARFDebugMacro.h 58 bool empty() const { return Macros.empty(); } function in class:llvm::DWARFDebugMacro
  /prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/IR/
TypeFinder.h 56 bool empty() const { return StructTypes.empty(); } function in class:llvm::TypeFinder
  /prebuilts/clang/host/linux-x86/clang-4691093/include/clang/Basic/
Sanitizers.h 68 bool empty() const { return Mask == 0; } function in struct:clang::SanitizerSet
VersionTuple.h 67 /// \brief Determine whether this version information is empty
69 bool empty() const { function in class:clang::VersionTuple
  /prebuilts/clang/host/linux-x86/clang-4691093/include/clang/CodeGen/
SwiftCallingConv.h 74 bool empty() const { function in class:clang::CodeGen::swiftcall::SwiftAggLowering
75 assert(Finished && "didn't finish lowering before calling empty()");
76 return Entries.empty();
  /prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/ADT/
SetVector.h 55 /// \brief Construct an empty SetVector
72 /// \brief Determine if the SetVector is empty or not.
73 bool empty() const { function in class:llvm::SetVector
74 return vector_.empty();
124 assert(!empty() && "Cannot call front() on empty SetVector!");
130 assert(!empty() && "Cannot call back() on empty SetVector!");
223 assert(!empty() && "Cannot remove an element from an empty SetVector!")
    [all...]
SmallSet.h 56 LLVM_NODISCARD bool empty() const { function in class:llvm::SmallSet
57 return Vector.empty() && Set.empty();
94 while (!Vector.empty()) {
125 bool isSmall() const { return Set.empty(); }
UniqueVector.h 90 /// empty - Returns true if the vector is empty.
91 bool empty() const { return Vector.empty(); } function in class:llvm::UniqueVector
  /prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/CodeGen/
LivePhysRegs.h 57 /// Constructs and initializes an empty set.
75 /// Returns true if the set is empty.
76 bool empty() const { return LiveRegs.empty(); } function in class:llvm::LivePhysRegs
LiveRegUnits.h 35 /// Constructs a new empty LiveRegUnits set.
38 /// Constructs and initialize an empty LiveRegUnits set.
53 /// Returns true if the set is empty.
54 bool empty() const { return Units.none(); } function in class:llvm::LiveRegUnits
  /prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/DebugInfo/DWARF/
DWARFDebugMacro.h 58 bool empty() const { return Macros.empty(); } function in class:llvm::DWARFDebugMacro
  /prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/IR/
TypeFinder.h 56 bool empty() const { return StructTypes.empty(); } function in class:llvm::TypeFinder
  /system/bt/types/test/
raw_address_unittest.cc 42 RawAddress empty; local
43 RawAddress::FromString("00:00:00:00:00:00", empty);
44 ASSERT_TRUE(empty.IsEmpty());
  /system/chre/util/include/chre/util/
dynamic_vector_impl.h 103 bool DynamicVector<ElementType>::empty() const { function in class:chre::DynamicVector
109 CHRE_ASSERT(!empty());
fixed_size_vector_impl.h 77 bool FixedSizeVector<ElementType, kCapacity>::empty() const { function in class:chre::FixedSizeVector
priority_queue_impl.h 47 bool PriorityQueue<ElementType, CompareFunction>::empty() const { function in class:chre::PriorityQueue
48 return mData.empty();
  /system/core/adb/
range.h 32 bool empty() const { function in struct:Range
  /system/extras/memory_replay/
Pointers.cpp 55 err(1, "No empty entry found for 0x%" PRIxPTR "\n", key_pointer);
93 uintptr_t empty = 0; local
94 if (atomic_compare_exchange_strong(&pointers_[index].key_pointer, &empty,

Completed in 627 milliseconds

<<11121314151617181920>>