Home
last modified time | relevance | path

Searched defs:Other (Results 1 – 25 of 169) sorted by relevance

1234567

/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/Support/
DErrorOr.h93 ErrorOr(const ErrorOr &Other) { in ErrorOr()
111 ErrorOr(ErrorOr &&Other) { in ErrorOr() function
171 void copyConstruct(const ErrorOr<OtherT> &Other) { in copyConstruct()
194 void copyAssign(const ErrorOr<OtherT> &Other) { in copyAssign()
203 void moveConstruct(ErrorOr<OtherT> &&Other) { in moveConstruct()
216 void moveAssign(ErrorOr<OtherT> &&Other) { in moveAssign()
DMSVCErrorWorkarounds.h31 MSVCPError(MSVCPError &&Other) : Error(std::move(Other)) {} in MSVCPError() function
50 MSVCPExpected(MSVCPExpected &&Other) : Expected<T>(std::move(Other)) {} in MSVCPExpected() function
DAtomicOrdering.h90 inline bool isStrongerThan(AtomicOrdering AO, AtomicOrdering Other) { in isStrongerThan()
105 inline bool isAtLeastOrStrongerThan(AtomicOrdering AO, AtomicOrdering Other) { in isAtLeastOrStrongerThan()
Dthread.h78 thread(thread &&Other) noexcept in thread() function
115 void swap(llvm::thread &Other) noexcept { std::swap(Thread, Other.Thread); } in swap()
DMemory.h141 OwningMemoryBlock(OwningMemoryBlock &&Other) { in OwningMemoryBlock() function
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/Basic/
DPartialDiagnostic.h52 PartialDiagnostic(const PartialDiagnostic &Other) in PartialDiagnostic()
78 PartialDiagnostic(PartialDiagnostic &&Other) : DiagID(Other.DiagID) { in PartialDiagnostic() function
84 PartialDiagnostic(const PartialDiagnostic &Other, in PartialDiagnostic()
93 PartialDiagnostic(const Diagnostic &Other, DiagStorageAllocator &Allocator_) in PartialDiagnostic()
DThunk.h53 bool Equals(const VirtualAdjustment &Other) const { in Equals()
120 bool Equals(const VirtualAdjustment &Other) const { in Equals()
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/ADT/
DAny.h61 Any(const Any &Other) in Any()
89 Any(Any &&Other) : Storage(std::move(Other.Storage)) {} in Any() function
91 Any &swap(Any &Other) { in swap()
DCoalescingBitVector.h61 CoalescingBitVector(const ThisT &Other) in CoalescingBitVector()
106 void set(const ThisT &Other) { in set()
187 void intersectWithComplement(const ThisT &Other) { in intersectWithComplement()
402 bool getOverlaps(const ThisT &Other, in getOverlaps()
DSmallSet.h64 SmallSetIterator(const SmallSetIterator &Other) : isSmall(Other.isSmall) { in SmallSetIterator()
73 SmallSetIterator(SmallSetIterator &&Other) : isSmall(Other.isSmall) { in SmallSetIterator() function
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Scalar/
DGVNExpression.h100 virtual bool equals(const Expression &Other) const { return true; } in equals()
104 virtual bool exactlyEquals(const Expression &Other) const { in exactlyEquals()
213 bool equals(const Expression &Other) const override { in equals()
289 bool equals(const Expression &Other) const override { in equals()
354 bool exactlyEquals(const Expression &Other) const override { in exactlyEquals()
394 bool exactlyEquals(const Expression &Other) const override { in exactlyEquals()
454 bool equals(const Expression &Other) const override { in equals()
521 bool equals(const Expression &Other) const override { in equals()
569 bool equals(const Expression &Other) const override { in equals()
606 bool equals(const Expression &Other) const override { in equals()
[all …]
/freebsd-12-stable/contrib/llvm-project/compiler-rt/lib/orc/
Derror.h52 Error(Error &&Other) { in Error() function
218 Expected(Expected &&Other) { moveConstruct(std::move(Other)); } in Expected() function
314 template <class OtherT> void moveConstruct(Expected<OtherT> &&Other) { in moveConstruct()
325 template <class OtherT> void moveAssign(Expected<OtherT> &&Other) { in moveAssign()
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
DSelectionDAGAddressAnalysis.h60 bool equalBaseIndex(const BaseIndexOffset &Other, in equalBaseIndex()
73 const BaseIndexOffset &Other, int64_t OtherBitSize) const { in contains()
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/Analysis/
DValueLattice.h150 ValueLatticeElement(const ValueLatticeElement &Other) in ValueLatticeElement()
169 ValueLatticeElement(ValueLatticeElement &&Other) in ValueLatticeElement() function
453 const ValueLatticeElement &Other) const { in getCompare()
DStackLifetime.h73 bool overlaps(const LiveRange &Other) const { in overlaps()
77 void join(const LiveRange &Other) { Bits |= Other.Bits; } in join()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/MC/
DMCSymbolELF.cpp158 void MCSymbolELF::setOther(unsigned Other) { in setOther()
167 unsigned Other = (Flags >> ELF_STO_Shift) & 7; in getOther() local
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/AST/
DCanonicalType.h167 bool isMoreQualifiedThan(CanQual<T> Other) const { in isMoreQualifiedThan()
173 bool isAtLeastAsQualifiedAs(CanQual<T> Other) const { in isAtLeastAsQualifiedAs()
/freebsd-12-stable/contrib/llvm-project/llvm/tools/llvm-cov/
DRenderingSupport.h29 ColoredRawOstream(ColoredRawOstream &&Other) in ColoredRawOstream() function
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Support/
DAPFixedPoint.cpp176 APFixedPoint APFixedPoint::add(const APFixedPoint &Other, in add()
200 APFixedPoint APFixedPoint::sub(const APFixedPoint &Other, in sub()
224 APFixedPoint APFixedPoint::mul(const APFixedPoint &Other, in mul()
281 APFixedPoint APFixedPoint::div(const APFixedPoint &Other, in div()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
DSelectionDAGAddressAnalysis.cpp23 bool BaseIndexOffset::equalBaseIndex(const BaseIndexOffset &Other, in equalBaseIndex()
158 const BaseIndexOffset &Other, in contains()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/ObjCARC/
DPtrState.cpp99 bool RRInfo::Merge(const RRInfo &Other) { in Merge()
147 void PtrState::Merge(const PtrState &Other, bool TopDown) { in Merge()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Remarks/
DRemarkStringTable.cpp23 StringTable::StringTable(const ParsedStringTable &Other) : StrTab() { in StringTable()
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/
DSizeOpts.h38 Other, // Others. enumerator
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/
DDWARFDataExtractor.h43 DWARFDataExtractor(const DWARFDataExtractor &Other, size_t Length) in DWARFDataExtractor()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/MCTargetDesc/
DPPCELFObjectWriter.cpp480 unsigned Other = cast<MCSymbolELF>(Sym).getOther() << 2; in needsRelocateWithSymbol() local

1234567