Home
last modified time | relevance | path

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

123456789

/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DErrorOr.h93 ErrorOr(const ErrorOr &Other) { in ErrorOr()
110 ErrorOr(ErrorOr &&Other) { in ErrorOr() function
170 void copyConstruct(const ErrorOr<OtherT> &Other) { in copyConstruct()
193 void copyAssign(const ErrorOr<OtherT> &Other) { in copyAssign()
202 void moveConstruct(ErrorOr<OtherT> &&Other) { in moveConstruct()
215 void moveAssign(ErrorOr<OtherT> &&Other) { in moveAssign()
H A DMSVCErrorWorkarounds.h31 MSVCPError(MSVCPError &&Other) : Error(std::move(Other)) {} in MSVCPError() function
50 MSVCPExpected(MSVCPExpected &&Other) : Expected<T>(std::move(Other)) {} in MSVCPExpected() function
H A DAtomicOrdering.h91 inline bool isStrongerThan(AtomicOrdering AO, AtomicOrdering Other) { in isStrongerThan()
106 inline bool isAtLeastOrStrongerThan(AtomicOrdering AO, AtomicOrdering Other) { in isAtLeastOrStrongerThan()
140 AtomicOrdering Other) { in getMergedAtomicOrdering()
H A Dthread.h73 thread(thread &&Other) noexcept in thread() function
110 void swap(llvm::thread &Other) noexcept { std::swap(Thread, Other.Thread); } in swap()
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DPartialDiagnostic.h49 PartialDiagnostic(const PartialDiagnostic &Other) in PartialDiagnostic()
75 PartialDiagnostic(PartialDiagnostic &&Other) : DiagID(Other.DiagID) { in PartialDiagnostic() function
81 PartialDiagnostic(const PartialDiagnostic &Other, in PartialDiagnostic()
90 PartialDiagnostic(const Diagnostic &Other, DiagStorageAllocator &Allocator_) in PartialDiagnostic()
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DAny.h65 Any(const Any &Other) in Any() argument
93 Any(Any &&Other) : Storage(std::move(Other.Storage)) {} in Any() argument
95 Any &swap(Any &Other) { in swap() argument
[all...]
H A DCoalescingBitVector.h62 CoalescingBitVector(const ThisT &Other) in CoalescingBitVector()
107 void set(const ThisT &Other) { in set()
188 void intersectWithComplement(const ThisT &Other) { in intersectWithComplement()
403 bool getOverlaps(const ThisT &Other, in getOverlaps()
H A DSmallSet.h65 SmallSetIterator(const SmallSetIterator &Other) : isSmall(Other.isSmall) { in SmallSetIterator()
74 SmallSetIterator(SmallSetIterator &&Other) : isSmall(Other.isSmall) { in SmallSetIterator() function
/freebsd/contrib/llvm-project/llvm/include/llvm/Transforms/Scalar/
H A 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/contrib/llvm-project/compiler-rt/lib/orc/
H A Derror.h52 Error(Error &&Other) { in Error() function
216 Expected(Expected &&Other) { moveConstruct(std::move(Other)); } in Expected() function
312 template <class OtherT> void moveConstruct(Expected<OtherT> &&Other) { in moveConstruct()
323 template <class OtherT> void moveAssign(Expected<OtherT> &&Other) { in moveAssign()
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DSelectionDAGAddressAnalysis.h65 bool equalBaseIndex(const BaseIndexOffset &Other, in equalBaseIndex()
78 const BaseIndexOffset &Other, int64_t OtherBitSize) const { in contains()
H A DByteProvider.h80 bool hasSameSrc(const ByteProvider &Other) const { return Other.Src == Src; } in hasSameSrc()
/freebsd/contrib/llvm-project/clang/include/clang/Analysis/FlowSensitive/
H A DNoopLattice.h29 LatticeJoinEffect join(const NoopLattice &Other) { in join()
/freebsd/contrib/llvm-project/clang/include/clang/ExtractAPI/
H A DDeclarationFragments.h122 DeclarationFragments &prepend(DeclarationFragments Other) { in prepend()
130 DeclarationFragments &append(DeclarationFragments Other) { in append()
157 DeclarationFragments Other) { in insert()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DCanonicalType.h167 bool isMoreQualifiedThan(CanQual<T> Other) const { in isMoreQualifiedThan()
173 bool isAtLeastAsQualifiedAs(CanQual<T> Other) const { in isAtLeastAsQualifiedAs()
H A DASTImportError.h35 ASTImportError(const ASTImportError &Other) : Error(Other.Error) {} in ASTImportError()
/freebsd/contrib/llvm-project/llvm/lib/MC/
H A DMCSymbolELF.cpp160 void MCSymbolELF::setOther(unsigned Other) { in setOther()
169 unsigned Other = (Flags >> ELF_STO_Shift) & 7; in getOther() local
/freebsd/contrib/llvm-project/llvm/tools/llvm-cov/
H A DRenderingSupport.h29 ColoredRawOstream(ColoredRawOstream &&Other) in ColoredRawOstream() function
/freebsd/contrib/ncurses/progs/
H A Dtparm_type.h46 Other = -1 enumerator
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DValueLattice.cpp15 const ValueLatticeElement &Other, in getCompare()
H A DTFLiteUtils.cpp228 TFModelEvaluator::EvaluationResult::EvaluationResult(EvaluationResult &&Other) in EvaluationResult() argument
232 TFModelEvaluator::EvaluationResult::operator=(EvaluationResult &&Other) { in operator =() argument
/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DStackLifetime.h72 bool overlaps(const LiveRange &Other) const { in overlaps() argument
76 void join(const LiveRange &Other) { Bits |= Other.Bits; } in join() argument
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DAPFixedPoint.cpp187 APFixedPoint APFixedPoint::add(const APFixedPoint &Other, in add()
211 APFixedPoint APFixedPoint::sub(const APFixedPoint &Other, in sub()
235 APFixedPoint APFixedPoint::mul(const APFixedPoint &Other, in mul()
292 APFixedPoint APFixedPoint::div(const APFixedPoint &Other, in div()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGAddressAnalysis.cpp24 bool BaseIndexOffset::equalBaseIndex(const BaseIndexOffset &Other, in equalBaseIndex()
178 const BaseIndexOffset &Other, in contains()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/ObjCARC/
H A DPtrState.cpp99 bool RRInfo::Merge(const RRInfo &Other) { in Merge()
147 void PtrState::Merge(const PtrState &Other, bool TopDown) { in Merge()

123456789