/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/ |
H A D | AddressRanges.h | 25 AddressRange(uint64_t S, uint64_t E) : Start(S), End(E) { in AddressRange() 31 uint64_t empty() const { return size() == 0; } in empty() function 65 bool empty() const { return Ranges.empty(); } in empty() function
|
H A D | SetVector.h | 93 bool empty() const { in empty() function 303 set_union(const STy & S) set_union() argument 318 set_subtract(const STy & S) set_subtract() argument 387 swap(llvm::SetVector<T,V,S,N> & LHS,llvm::SetVector<T,V,S,N> & RHS) swap() argument [all...] |
H A D | TinyPtrVector.h | 162 bool empty() const { in empty() function 296 iterator erase(iterator S, iterator E) { in erase()
|
H A D | StringRef.h | 134 [[nodiscard]] constexpr bool empty() const { return Length == 0; } in empty() function 157 char *S = A.template Allocate<char>(Length); in copy() local 298 StringRef S = drop_front(From); variable
|
/freebsd/contrib/llvm-project/compiler-rt/lib/fuzzer/ |
H A D | FuzzerDictionary.h | 26 FixedWord(const uint8_t *B, size_t S) { Set(B, S); } in FixedWord() 28 void Set(const uint8_t *B, size_t S) { in Set() 105 bool empty() const { return Size == 0; } in empty() function
|
/freebsd/contrib/llvm-project/llvm/tools/llvm-mca/ |
H A D | CodeRegion.h | 117 bool empty() const { return Instructions.empty(); } in empty() function 159 CodeRegions(llvm::SourceMgr &S) : SM(S), FoundErrors(false) {} in CodeRegions() 177 bool empty() const { in empty() function
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/ |
H A D | BinaryStreamReader.h | 212 BinaryStreamRef S; global() variable 246 bool empty() const { return bytesRemaining() == 0; } empty() function
|
H A D | JSON.h | 120 bool empty() const { return M.empty(); } in empty() function 547 inline bool Array::empty() const { return V.empty(); } in empty() function 549 inline void Array::reserve(size_t S) { V.reserve(S); } in reserve() 580 ObjectKey(const char *S) : ObjectKey(StringRef(S)) {} in ObjectKey() 581 ObjectKey(std::string S) : Owned(new std::string(std::move(S))) { in ObjectKey() 588 ObjectKey(llvm::StringRef S) : Data(S) { in ObjectKey() 697 Path(const Path *Parent, Segment S) : Parent(Parent), Seg(S) {} in Path() 732 if (auto S = E.getAsString()) { in fromJSON() local 740 if (auto S = E.getAsInteger()) { in fromJSON() local 748 if (auto S = E.getAsInteger()) { in fromJSON() local [all …]
|
/freebsd/contrib/llvm-project/compiler-rt/lib/xray/ |
H A D | xray_segmented_array.h | 81 Segment *S = &SentinelSegment; variable 86 Iterator(Segment *IS, uint64_t Off, uint64_t S) XRAY_NEVER_INSTRUMENT in Iterator() 264 auto S = NewSegment(); in InitHeadAndTail() local 279 auto S = NewSegment(); in AppendNewSegment() local 342 bool empty() const XRAY_NEVER_INSTRUMENT { return Size == 0; } in empty() function 416 auto S = Head; variable
|
/freebsd/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
H A D | ExplodedGraph.h | 102 bool empty() const { return P == 0 || getFlag() != 0; } in empty() function 176 SVal getSVal(const Stmt *S) const { in getSVal() 384 bool empty() const { return NumNodes == 0; } in empty() function 478 bool empty() const { return Impl.empty(); } in empty() function 483 void insert(const ExplodedNodeSet &S) { in insert()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/ |
H A D | LexicalScopes.h | 69 void addChild(LexicalScope *S) { Children.push_back(S); } in addChild() 104 bool dominates(const LexicalScope *S) const { in dominates() 153 bool empty() { return CurrentFnLexicalScope == nullptr; } in empty() function
|
/freebsd/contrib/llvm-project/clang/include/clang/Analysis/Support/ |
H A D | BumpVector.h | 114 bool empty() const { return Begin == End; } in empty() function 211 void construct_range(T *S, T *E, const T &Elt) { in construct_range() 216 void destroy_range(T *S, T *E) { in destroy_range() 223 void move_range_right(T *S, T *E, size_t D) { in move_range_right()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Demangle/ |
H A D | Utility.h | 162 insert(size_t Pos,const char * S,size_t N) insert() argument 180 bool empty() const { return CurrentPosition == 0; } empty() function
|
/freebsd/contrib/llvm-project/llvm/lib/MC/ |
H A D | ConstantPools.cpp | 42 const MCSymbolRefExpr *S = dyn_cast<MCSymbolRefExpr>(Value); in addEntry() local 70 bool ConstantPool::empty() { return Entries.empty(); } in empty() function in ConstantPool
|
/freebsd/contrib/llvm-project/llvm/lib/Target/CSKY/MCTargetDesc/ |
H A D | CSKYTargetStreamer.cpp | 82 : MCTargetStreamer(S), ConstantPool(new CSKYConstantPool()) {} in CSKYTargetStreamer() argument 75 bool CSKYConstantPool::empty() { return Entries.empty(); } empty() function in CSKYConstantPool
|
/freebsd/contrib/llvm-project/clang/include/clang/Analysis/ |
H A D | CloneDetection.h | 37 const Stmt *S; variable 107 bool empty() const { return size() == 0; } in empty() function 374 for (const Stmt *S : Sequence) in VariablePattern() local
|
H A D | CallGraph.h | 136 bool TraverseStmt(Stmt *S) { return true; } in TraverseStmt() 190 bool empty() const { return CalledFunctions.empty(); } in empty() function
|
/freebsd/contrib/llvm-project/clang/include/clang/Serialization/ |
H A D | ASTRecordWriter.h | 86 bool empty() const { return Record->empty(); } in empty() function 124 void AddStmt(Stmt *S) { in AddStmt() 127 void writeStmtRef(const Stmt *S) { in writeStmtRef()
|
/freebsd/contrib/llvm-project/clang/include/clang/Sema/ |
H A D | SemaInternal.h | 90 Scope *S, CXXScopeSpec *SS, in TypoCorrectionConsumer() 115 bool empty() const { in empty() function 306 Scope *S; variable
|
H A D | TemplateDeduction.h | 369 bool empty() const { return Candidates.empty(); } in empty() function 380 void NoteCandidates(Sema &S, SourceLocation Loc) const { in NoteCandidates()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/BinaryFormat/ |
H A D | MsgPackDocument.h | 232 bool empty() const { return !size(); } in empty() function 262 bool empty() const { return !size(); } in empty() function 439 StringRef addString(StringRef S) { in addString()
|
/freebsd/contrib/llvm-project/clang/include/clang/AST/ |
H A D | ASTVector.h | 108 bool empty() const { return Begin == End; } in empty() function 358 void construct_range(T *S, T *E, const T &Elt) { in construct_range() 363 void destroy_range(T *S, T *E) { in destroy_range()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/PBQP/ |
H A D | Graph.h | 291 bool empty() const { return G.Nodes.empty(); } in empty() function 308 bool empty() const { return G.Edges.empty(); } in empty() function 330 bool empty() const { return NE.getAdjEdgeIds().empty(); } in empty() function 356 void setSolver(SolverT &S) { in setSolver() 447 bool empty() const { return NodeIdSet(*this).empty(); } in empty() function
|
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/Native/ |
H A D | HashTable.h | 208 bool empty() const { return size() == 0; } in empty() function 302 uint32_t S = size(); in grow() local
|
/freebsd/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/JITLink/ |
H A D | JITLink.h | 421 orc::ExecutorAddrDiff Size, Linkage L, Scope S, bool IsLive, in Symbol() 448 Scope S, bool IsLive) { in constructAbsolute() 471 Scope S, bool IsLive, bool IsCallable) { in constructNamedDef() 620 void setScope(Scope S) { in setScope() 678 uint64_t S : 2; variable 736 bool empty() const { return Blocks.empty(); } in empty() function 828 bool empty() const { in empty() function 881 void destroySymbol(Symbol &S) { in destroySymbol() 886 static iterator_range<Section::block_iterator> getSectionBlocks(Section &S) { in getSectionBlocks() 891 getSectionConstBlocks(const Section &S) { in getSectionConstBlocks() [all …]
|