Searched refs:isEmpty (Results 1 - 25 of 155) sorted by relevance

1234567

/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/
H A DABI.h74 bool isEmpty() const { function in union:clang::ReturnAdjustment::VirtualAdjustment
86 bool isEmpty() const { return !NonVirtual && Virtual.isEmpty(); } function in struct:clang::ReturnAdjustment
142 bool isEmpty() const { function in union:clang::ThisAdjustment::VirtualAdjustment
154 bool isEmpty() const { return !NonVirtual && Virtual.isEmpty(); } function in struct:clang::ThisAdjustment
203 bool isEmpty() const { function in struct:clang::ThunkInfo
204 return This.isEmpty() && Return.isEmpty() && Method == nullptr;
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCInstrItineraries.h123 bool isEmpty() const { return Itineraries == nullptr; } function in class:llvm::InstrItineraryData
149 if (isEmpty())
165 if (isEmpty())
204 if (isEmpty())
226 if (isEmpty())
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MCA/Stages/
H A DRetireStage.h40 bool hasWorkToComplete() const override { return !RCU.isEmpty(); }
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MCA/Stages/
H A DRetireStage.cpp26 if (RCU.isEmpty())
31 while (!RCU.isEmpty()) {
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/FuzzMutate/
H A DRandom.h42 bool isEmpty() const { return TotalWeight == 0; } function in class:llvm::ReservoirSampler
45 assert(!isEmpty() && "Nothing selected");
49 explicit operator bool() const { return !isEmpty();}
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DAddressPool.h47 bool isEmpty() { return Pool.empty(); } function in class:llvm::AddressPool
H A DAddressPool.cpp48 if (isEmpty())
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Frontend/
H A DFrontendAction.h131 assert(!CurrentInput.isEmpty() && "No current file!");
140 assert(!CurrentInput.isEmpty() && "No current file!");
145 assert(!CurrentInput.isEmpty() && "No current file!");
152 assert(!CurrentInput.isEmpty() && "No current file!");
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MCA/HardwareUnits/
H A DRetireControlUnit.h82 bool isEmpty() const { return AvailableEntries == NumROBEntries; } function in struct:llvm::mca::RetireControlUnit
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DScoreboardHazardRecognizer.cpp40 if (ItinData && !ItinData->isEmpty()) {
113 if (!ItinData || ItinData->isEmpty())
172 if (!ItinData || ItinData->isEmpty())
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DMachineJumpTableInfo.h95 /// isEmpty - Return true if there are no jump tables.
97 bool isEmpty() const { return JumpTables.empty(); } function in class:llvm::MachineJumpTableInfo
H A DMachineConstantPool.h146 /// isEmpty - Return true if this constant pool contains no constants.
147 bool isEmpty() const { return Constants.empty(); } function in class:llvm::MachineConstantPool
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/
H A DImmutableSet.h425 bool isEmpty(TreeTy* T) const { return !T; } function in class:llvm::ImutAVLFactory
497 assert(!isEmpty(L) && "Left tree cannot be empty to have a height >= 2");
505 assert(!isEmpty(LR) && "LR cannot be empty because it has a height >= 1");
514 assert(!isEmpty(R) && "Right tree cannot be empty to have a height >= 2");
522 assert(!isEmpty(RL) && "RL cannot be empty because it has a height >= 1");
537 if (isEmpty(T))
557 if (isEmpty(T))
576 if (isEmpty(L))
578 if (isEmpty(R))
586 assert(!isEmpty(
1067 bool isEmpty() const { return !Root; } function in class:llvm::ImmutableSet
1186 bool isEmpty() const { return !Root; } function in class:llvm::ImmutableSetRef
[all...]
H A DTwine.h193 bool isEmpty() const { function in class:llvm::Twine
199 return isNull() || isEmpty();
494 if (isEmpty())
496 if (Suffix.isEmpty())
H A DImmutableList.h111 /// isEmpty - Returns true if the list is empty.
112 bool isEmpty() const { return !X; } function in class:llvm::ImmutableList
133 assert(!isEmpty() && "Cannot get the head of an empty list.");
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DRangeConstraintManager.cpp64 assert(!isEmpty());
204 if (to.isMaxSignedValue() && !newRanges.isEmpty() &&
399 if (Ranges->Intersect(BV, F, Zero, Zero).isEmpty())
570 return New.isEmpty() ? nullptr : St->set<ConstraintRange>(Sym, New);
585 return New.isEmpty() ? nullptr : St->set<ConstraintRange>(Sym, New);
621 return New.isEmpty() ? nullptr : St->set<ConstraintRange>(Sym, New);
657 return New.isEmpty() ? nullptr : St->set<ConstraintRange>(Sym, New);
693 return New.isEmpty() ? nullptr : St->set<ConstraintRange>(Sym, New);
736 return New.isEmpty() ? nullptr : St->set<ConstraintRange>(Sym, New);
743 if (New.isEmpty())
[all...]
H A DLoopUnrolling.cpp77 if (!LS.isEmpty() && LS.getHead().getLoopStmt() == LoopStmt)
260 if (!LS.isEmpty() && LoopStmt == LS.getHead().getLoopStmt() &&
276 unsigned outerStep = (LS.isEmpty() ? 1 : LS.getHead().getMaxStep());
290 if (LS.isEmpty() || !LS.getHead().isUnrolled())
H A DDynamicType.cpp145 if (Map.isEmpty()) {
181 if (Map.isEmpty()) {
193 if (Set.isEmpty()) {
/freebsd-11-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/java_api/src/
H A DTestGetAggregate.java64 } while (aggregate.asMap().isEmpty() && n++ < (1000 / TICK));
105 } while (aggregate.asMap().isEmpty() && n++ < (1000 / TICK));
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/UninitializedObject/
H A DUninitializedObject.h186 bool isEmpty() const { return Chain.isEmpty(); } function in class:clang::ento::FieldChainInfo
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/InstCombine/
H A DInstCombineWorklist.h36 bool isEmpty() const { return Worklist.empty(); } function in class:llvm::InstCombineWorklist
/freebsd-11-stable/contrib/llvm-project/llvm/lib/FuzzMutate/
H A DIRMutator.cpp101 if (RS.isEmpty())
163 if (RS.isEmpty())
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DRangedConstraintManager.h86 bool isEmpty() const { return ranges.isEmpty(); } function in class:clang::ento::RangeSet
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/
H A DVTableBuilder.cpp56 bool isEmpty() const { return NonVirtualOffset.isZero() && !VirtualBase; } function in struct:__anon284::BaseOffset
427 if (!Offset.isEmpty()) {
1125 if (VTableThunks.lookup(VTableIndex).Return.isEmpty())
1132 if (ThisAdjustment.isEmpty())
1180 if (!Offset.isEmpty()) {
1262 if (Offset.isEmpty())
1298 assert(ReturnAdjustment.isEmpty() &&
1306 if (!ReturnAdjustment.isEmpty())
1498 OverriddenMD).isEmpty()) {
1948 if (!Thunk.isEmpty()) {
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/
H A DExprConcepts.h299 bool isEmpty() const { function in class:clang::concepts::ExprRequirement::ReturnTypeRequirement
304 return !isEmpty() &&
309 return !isEmpty() &&

Completed in 218 milliseconds

1234567