Home
last modified time | relevance | path

Searched refs:Other (Results 1 – 25 of 552) sorted by relevance

12345678910>>...23

/minix3/external/bsd/llvm/dist/clang/lib/Format/
H A DContinuationIndenter.h268 bool operator<(const ParenState &Other) const {
269 if (Indent != Other.Indent)
270 return Indent < Other.Indent;
271 if (LastSpace != Other.LastSpace)
272 return LastSpace < Other.LastSpace;
273 if (NestedBlockIndent != Other.NestedBlockIndent)
274 return NestedBlockIndent < Other.NestedBlockIndent;
275 if (FirstLessLess != Other.FirstLessLess)
276 return FirstLessLess < Other.FirstLessLess;
277 if (BreakBeforeClosingBrace != Other.BreakBeforeClosingBrace)
[all …]
/minix3/external/bsd/llvm/dist/clang/include/clang/AST/
H A DCharUnits.h68 CharUnits& operator+= (const CharUnits &Other) {
69 Quantity += Other.Quantity;
79 CharUnits& operator-= (const CharUnits &Other) {
80 Quantity -= Other.Quantity;
92 bool operator== (const CharUnits &Other) const {
93 return Quantity == Other.Quantity;
95 bool operator!= (const CharUnits &Other) const {
96 return Quantity != Other.Quantity;
100 bool operator< (const CharUnits &Other) const {
101 return Quantity < Other.Quantity;
[all …]
H A DASTTypeTraits.h65 bool isSame(ASTNodeKind Other) const;
73 bool isBaseOf(ASTNodeKind Other, unsigned *Distance = nullptr) const;
79 bool operator<(const ASTNodeKind &Other) const {
80 return KindId < Other.KindId;
259 bool operator<(const DynTypedNode &Other) const {
260 assert(getMemoizationData() && Other.getMemoizationData());
261 return getMemoizationData() < Other.getMemoizationData();
263 bool operator==(const DynTypedNode &Other) const {
266 if (!NodeKind.isSame(Other.NodeKind))
271 return getUnchecked<QualType>() == Other.getUnchecked<QualType>();
[all …]
/minix3/external/bsd/llvm/dist/clang/include/clang/Basic/
H A DPartialDiagnostic.h187 PartialDiagnostic(const PartialDiagnostic &Other) in PartialDiagnostic() argument
188 : DiagID(Other.DiagID), DiagStorage(nullptr), Allocator(Other.Allocator) in PartialDiagnostic()
190 if (Other.DiagStorage) { in PartialDiagnostic()
192 *DiagStorage = *Other.DiagStorage; in PartialDiagnostic()
196 PartialDiagnostic(PartialDiagnostic &&Other) in PartialDiagnostic() argument
197 : DiagID(Other.DiagID), DiagStorage(Other.DiagStorage), in PartialDiagnostic()
198 Allocator(Other.Allocator) { in PartialDiagnostic()
199 Other.DiagStorage = nullptr; in PartialDiagnostic()
202 PartialDiagnostic(const PartialDiagnostic &Other, Storage *DiagStorage) in PartialDiagnostic() argument
203 : DiagID(Other.DiagID), DiagStorage(DiagStorage), in PartialDiagnostic()
[all …]
/minix3/external/bsd/llvm/dist/llvm/include/llvm/Support/
H A DErrorOr.h113 ErrorOr(const ErrorOr &Other) { in ErrorOr() argument
114 copyConstruct(Other); in ErrorOr()
119 const ErrorOr<OtherT> &Other,
122 copyConstruct(Other);
127 const ErrorOr<OtherT> &Other,
130 copyConstruct(Other);
133 ErrorOr(ErrorOr &&Other) { in ErrorOr() argument
134 moveConstruct(std::move(Other)); in ErrorOr()
139 ErrorOr<OtherT> &&Other,
142 moveConstruct(std::move(Other));
[all …]
/minix3/external/bsd/llvm/dist/llvm/include/llvm/MC/
H A DMCSchedule.h47 bool operator==(const MCProcResourceDesc &Other) const {
48 return NumUnits == Other.NumUnits && SuperIdx == Other.SuperIdx
49 && BufferSize == Other.BufferSize;
59 bool operator==(const MCWriteProcResEntry &Other) const {
60 return ProcResourceIdx == Other.ProcResourceIdx && Cycles == Other.Cycles;
73 bool operator==(const MCWriteLatencyEntry &Other) const {
74 return Cycles == Other.Cycles && WriteResourceID == Other.WriteResourceID;
91 bool operator==(const MCReadAdvanceEntry &Other) const {
92 return UseIdx == Other.UseIdx && WriteResourceID == Other.WriteResourceID
93 && Cycles == Other.Cycles;
H A DMachineLocation.h45 bool operator==(const MachineLocation &Other) const {
46 return IsRegister == Other.IsRegister && Register == Other.Register &&
47 Offset == Other.Offset;
/minix3/external/bsd/llvm/dist/llvm/include/llvm/CodeGen/
H A DRegAllocPBQP.h88 AllowedRegVector(const AllowedRegVector &Other) in AllowedRegVector() argument
89 : NumOpts(Other.NumOpts), Opts(new unsigned[NumOpts]) { in AllowedRegVector()
90 std::copy(Other.Opts.get(), Other.Opts.get() + NumOpts, Opts.get()); in AllowedRegVector()
93 AllowedRegVector(AllowedRegVector &&Other) in AllowedRegVector() argument
94 : NumOpts(std::move(Other.NumOpts)), Opts(std::move(Other.Opts)) {} in AllowedRegVector()
96 AllowedRegVector& operator=(const AllowedRegVector &Other) {
97 NumOpts = Other.NumOpts;
99 std::copy(Other.Opts.get(), Other.Opts.get() + NumOpts, Opts.get());
103 AllowedRegVector& operator=(AllowedRegVector &&Other) {
104 NumOpts = std::move(Other.NumOpts);
[all …]
/minix3/external/bsd/llvm/dist/llvm/lib/IR/
H A DConstantRange.cpp222 bool ConstantRange::contains(const ConstantRange &Other) const { in contains()
223 if (isFullSet() || Other.isEmptySet()) return true; in contains()
224 if (isEmptySet() || Other.isFullSet()) return false; in contains()
227 if (Other.isWrappedSet()) in contains()
230 return Lower.ule(Other.getLower()) && Other.getUpper().ule(Upper); in contains()
233 if (!Other.isWrappedSet()) in contains()
234 return Other.getUpper().ule(Upper) || in contains()
235 Lower.ule(Other.getLower()); in contains()
237 return Other.getUpper().ule(Upper) && Lower.ule(Other.getLower()); in contains()
539 ConstantRange::add(const ConstantRange &Other) const { in add()
[all …]
/minix3/external/bsd/llvm/dist/llvm/include/llvm/IR/
H A DConstantRange.h70 const ConstantRange &Other);
204 ConstantRange add(const ConstantRange &Other) const;
208 ConstantRange sub(const ConstantRange &Other) const;
213 ConstantRange multiply(const ConstantRange &Other) const;
217 ConstantRange smax(const ConstantRange &Other) const;
221 ConstantRange umax(const ConstantRange &Other) const;
226 ConstantRange udiv(const ConstantRange &Other) const;
230 ConstantRange binaryAnd(const ConstantRange &Other) const;
234 ConstantRange binaryOr(const ConstantRange &Other) const;
239 ConstantRange shl(const ConstantRange &Other) const;
[all …]
/minix3/external/bsd/llvm/dist/llvm/utils/TableGen/
H A DAsmWriterInst.h71 bool operator!=(const AsmWriterOperand &Other) const {
72 if (OperandType != Other.OperandType || Str != Other.Str) return true;
74 return MIOpNo != Other.MIOpNo || MiModifier != Other.MiModifier;
77 bool operator==(const AsmWriterOperand &Other) const {
78 return !operator!=(Other);
96 unsigned MatchesAllButOneOp(const AsmWriterInst &Other) const;
/minix3/external/bsd/llvm/dist/clang/tools/diagtool/
H A DDiagnosticNames.h28 bool operator<(const DiagnosticRecord &Other) const {
29 return getName() < Other.getName();
80 bool operator==(group_iterator &Other) const {
81 return CurrentID == Other.CurrentID;
84 bool operator!=(group_iterator &Other) const {
85 return CurrentID != Other.CurrentID;
97 bool operator<(llvm::StringRef Other) const {
98 return getName() < Other;
/minix3/share/misc/
H A Dlanguage21 Afro-Asiatic (Other) afa
27 Altaic (Other) tut
37 Artificial (Other) art
42 Austronesian (Other) map
49 Baltic (Other) bat
54 Bantu (Other) bnt
63 Berber (Other) ber
81 Caucasian (Other) cau
83 Celtic (Other) cel
84 Central American Indian (Other) cai
[all …]
/minix3/external/bsd/llvm/dist/clang/lib/AST/
H A DNestedNameSpecifier.cpp476 NestedNameSpecifierLocBuilder(const NestedNameSpecifierLocBuilder &Other) in NestedNameSpecifierLocBuilder() argument
477 : Representation(Other.Representation), Buffer(nullptr), in NestedNameSpecifierLocBuilder()
480 if (!Other.Buffer) in NestedNameSpecifierLocBuilder()
483 if (Other.BufferCapacity == 0) { in NestedNameSpecifierLocBuilder()
485 Buffer = Other.Buffer; in NestedNameSpecifierLocBuilder()
486 BufferSize = Other.BufferSize; in NestedNameSpecifierLocBuilder()
491 Append(Other.Buffer, Other.Buffer + Other.BufferSize, Buffer, BufferSize, in NestedNameSpecifierLocBuilder()
497 operator=(const NestedNameSpecifierLocBuilder &Other) { in operator =() argument
498 Representation = Other.Representation; in operator =()
500 if (Buffer && Other.Buffer && BufferCapacity >= Other.BufferSize) { in operator =()
[all …]
/minix3/external/bsd/llvm/dist/llvm/include/llvm/Object/
H A DMachOUniversal.h48 bool operator==(const ObjectForArch &Other) const {
49 return (Parent == Other.Parent) && (Index == Other.Index);
76 bool operator==(const object_iterator &Other) const {
77 return Obj == Other.Obj;
79 bool operator!=(const object_iterator &Other) const {
80 return !(*this == Other);
H A DBinary.h139 OwningBinary(OwningBinary<T>&& Other);
140 OwningBinary<T> &operator=(OwningBinary<T> &&Other);
156 OwningBinary<T>::OwningBinary(OwningBinary &&Other) in OwningBinary() argument
157 : Bin(std::move(Other.Bin)), Buf(std::move(Other.Buf)) {} in OwningBinary()
160 OwningBinary<T> &OwningBinary<T>::operator=(OwningBinary &&Other) {
161 Bin = std::move(Other.Bin);
162 Buf = std::move(Other.Buf);
/minix3/external/bsd/llvm/dist/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DAPSIntType.h92 bool operator==(const APSIntType &Other) const {
93 return BitWidth == Other.BitWidth && IsUnsigned == Other.IsUnsigned;
100 bool operator<(const APSIntType &Other) const {
102 std::tie(Other.BitWidth, Other.IsUnsigned);
/minix3/external/bsd/llvm/dist/llvm/test/MC/ARM/
H A Darm-elf-symver.s41 @ CHECK-NEXT: Other: 0
50 @ CHECK-NEXT: Other: 0
59 @ CHECK-NEXT: Other: 0
68 @ CHECK-NEXT: Other: 0
77 @ CHECK-NEXT: Other: 0
86 @ CHECK-NEXT: Other: 0
95 @ CHECK-NEXT: Other: 0
104 @ CHECK-NEXT: Other: 0
113 @ CHECK-NEXT: Other: 0
122 @ CHECK-NEXT: Other: 0
[all …]
/minix3/external/bsd/llvm/dist/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyldImpl.h144 inline bool operator==(const RelocationValueRef &Other) const {
145 return SectionID == Other.SectionID && Offset == Other.Offset &&
146 Addend == Other.Addend && SymbolName == Other.SymbolName;
148 inline bool operator<(const RelocationValueRef &Other) const {
149 if (SectionID != Other.SectionID)
150 return SectionID < Other.SectionID;
151 if (Offset != Other.Offset)
152 return Offset < Other.Offset;
153 if (Addend != Other.Addend)
154 return Addend < Other.Addend;
[all …]
/minix3/external/bsd/llvm/dist/clang/test/CXX/basic/basic.lookup/basic.lookup.unqual/
H A Dp14.cpp41 class Other { class
47 void Other::foo(YFloat a, YFloat b) { in foo()
52 namespace Other { namespace
57 using namespace Other;
/minix3/external/bsd/llvm/dist/llvm/lib/ExecutionEngine/
H A DGDBRegistrationListener.cpp72 RegisteredObjectInfo(RegisteredObjectInfo &&Other) in RegisteredObjectInfo()
73 : Size(Other.Size), Entry(Other.Entry), Obj(std::move(Other.Obj)) {} in RegisteredObjectInfo()
75 RegisteredObjectInfo& operator=(RegisteredObjectInfo &&Other) { in operator =()
76 Size = Other.Size; in operator =()
77 Entry = Other.Entry; in operator =()
78 Obj = std::move(Other.Obj); in operator =()
/minix3/external/bsd/llvm/dist/llvm/test/MC/Mips/
H A Dmicromips-label-test.s22 # CHECK: Other: 0
29 # CHECK: Other: 128
36 # CHECK: Other: 0
43 # CHECK: Other: 128
50 # CHECK: Other: 0
/minix3/external/bsd/llvm/dist/llvm/tools/llvm-cov/
H A DRenderingSupport.h30 ColoredRawOstream(ColoredRawOstream &&Other) in ColoredRawOstream() argument
31 : OS(Other.OS), IsColorUsed(Other.IsColorUsed) { in ColoredRawOstream()
34 Other.IsColorUsed = false; in ColoredRawOstream()
/minix3/external/bsd/llvm/dist/clang/lib/Lex/
H A DMacroInfo.cpp72 bool MacroInfo::isIdenticalTo(const MacroInfo &Other, Preprocessor &PP, in isIdenticalTo() argument
77 if (ReplacementTokens.size() != Other.ReplacementTokens.size() || in isIdenticalTo()
78 getNumArgs() != Other.getNumArgs() || in isIdenticalTo()
79 isFunctionLike() != Other.isFunctionLike() || in isIdenticalTo()
80 isC99Varargs() != Other.isC99Varargs() || in isIdenticalTo()
81 isGNUVarargs() != Other.isGNUVarargs()) in isIdenticalTo()
86 for (arg_iterator I = arg_begin(), OI = Other.arg_begin(), E = arg_end(); in isIdenticalTo()
94 const Token &B = Other.ReplacementTokens[i]; in isIdenticalTo()
116 if (AArgNum != Other.getArgumentNum(B.getIdentifierInfo())) in isIdenticalTo()
/minix3/external/bsd/llvm/dist/clang/test/Analysis/inlining/
H A Dpath-notes.cpp67 Dereferencer(const Dereferencer &Other) { in Dereferencer() argument
72 Dereferencer(Dereferencer &&Other) { in Dereferencer() argument
77 void operator=(const Dereferencer &Other) { in operator =() argument
82 void operator=(Dereferencer &&Other) { in operator =() argument
102 MovableWrapper(MovableWrapper &&Other) = default;
105 MovableWrapper &operator=(MovableWrapper &&Other) = default;

12345678910>>...23