Searched refs:Other (Results 1 - 25 of 191) sorted by relevance

12345678

/freebsd-9.3-release/contrib/llvm/tools/clang/lib/Format/
H A DContinuationIndenter.h213 bool operator<(const ParenState &Other) const {
214 if (Indent != Other.Indent)
215 return Indent < Other.Indent;
216 if (LastSpace != Other.LastSpace)
217 return LastSpace < Other.LastSpace;
218 if (FirstLessLess != Other.FirstLessLess)
219 return FirstLessLess < Other.FirstLessLess;
220 if (BreakBeforeClosingBrace != Other.BreakBeforeClosingBrace)
222 if (QuestionColumn != Other.QuestionColumn)
223 return QuestionColumn < Other
[all...]
/freebsd-9.3-release/contrib/llvm/tools/clang/include/clang/AST/
H A DCharUnits.h68 CharUnits& operator+= (const CharUnits &Other) { argument
69 Quantity += Other.Quantity;
79 CharUnits& operator-= (const CharUnits &Other) { argument
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
[all...]
H A DASTTypeTraits.h56 /// \brief Returns \c true if \c this and \c Other represent the same kind.
57 bool isSame(ASTNodeKind Other) const;
59 /// \brief Returns \c true if \c this is a base kind of (or same as) \c Other.
60 bool isBaseOf(ASTNodeKind Other) const;
196 bool operator<(const DynTypedNode &Other) const {
197 assert(getMemoizationData() && Other.getMemoizationData());
198 return getMemoizationData() < Other.getMemoizationData();
200 bool operator==(const DynTypedNode &Other) const {
202 if (!NodeKind.isSame(Other.NodeKind))
207 return *get<QualType>() == *Other
[all...]
/freebsd-9.3-release/contrib/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);
98 unsigned MatchesAllButOneOp(const AsmWriterInst &Other) const;
/freebsd-9.3-release/contrib/llvm/include/llvm/MC/
H A DMCSchedule.h42 bool operator==(const MCProcResourceDesc &Other) const {
43 return NumUnits == Other.NumUnits && SuperIdx == Other.SuperIdx
44 && BufferSize == Other.BufferSize;
54 bool operator==(const MCWriteProcResEntry &Other) const {
55 return ProcResourceIdx == Other.ProcResourceIdx && Cycles == Other.Cycles;
68 bool operator==(const MCWriteLatencyEntry &Other) const {
69 return Cycles == Other.Cycles && WriteResourceID == Other
[all...]
H A DMachineLocation.h45 bool operator==(const MachineLocation &Other) const {
46 return IsRegister == Other.IsRegister && Register == Other.Register &&
47 Offset == Other.Offset;
H A DMCELF.h31 static void setOther(MCSymbolData &SD, unsigned Other);
/freebsd-9.3-release/contrib/llvm/include/llvm/Support/
H A DErrorOr.h127 ErrorOr(const ErrorOr &Other) { argument
128 copyConstruct(Other);
132 ErrorOr(const ErrorOr<OtherT> &Other) { argument
133 copyConstruct(Other);
136 ErrorOr &operator =(const ErrorOr &Other) { argument
137 copyAssign(Other);
142 ErrorOr &operator =(const ErrorOr<OtherT> &Other) { argument
143 copyAssign(Other);
148 ErrorOr(ErrorOr &&Other) { argument
149 moveConstruct(std::move(Other));
153 ErrorOr(ErrorOr<OtherT> &&Other) argument
157 operator =(ErrorOr &&Other) argument
163 operator =(ErrorOr<OtherT> &&Other) argument
196 copyConstruct(const ErrorOr<OtherT> &Other) argument
219 copyAssign(const ErrorOr<OtherT> &Other) argument
229 moveConstruct(ErrorOr<OtherT> &&Other) argument
242 moveAssign(ErrorOr<OtherT> &&Other) argument
[all...]
H A DConstantRange.h69 /// contained within Other.
75 const ConstantRange &Other);
214 /// from an addition of a value in this range and a value in \p Other.
215 ConstantRange add(const ConstantRange &Other) const;
218 /// from a subtraction of a value in this range and a value in \p Other.
219 ConstantRange sub(const ConstantRange &Other) const;
222 /// from a multiplication of a value in this range and a value in \p Other.
224 ConstantRange multiply(const ConstantRange &Other) const;
227 /// from a signed maximum of a value in this range and a value in \p Other.
228 ConstantRange smax(const ConstantRange &Other) cons
[all...]
/freebsd-9.3-release/contrib/llvm/include/llvm/Object/
H A DMachOUniversal.h48 bool operator==(const ObjectForArch &Other) const {
49 return (Parent == Other.Parent) && (Index == Other.Index);
66 bool operator==(const object_iterator &Other) const {
67 return Obj == Other.Obj;
69 bool operator!=(const object_iterator &Other) const {
70 return !(*this == Other);
H A DObjectFile.h101 bool operator==(const RelocationRef &Other) const;
145 bool operator==(const SectionRef &Other) const;
146 bool operator<(const SectionRef &Other) const;
209 bool operator==(const SymbolRef &Other) const;
210 bool operator<(const SymbolRef &Other) const;
249 bool operator==(const LibraryRef &Other) const;
250 bool operator<(const LibraryRef &Other) const;
397 inline bool SymbolRef::operator==(const SymbolRef &Other) const {
398 return SymbolPimpl == Other.SymbolPimpl;
401 inline bool SymbolRef::operator<(const SymbolRef &Other) cons
[all...]
/freebsd-9.3-release/contrib/llvm/tools/clang/include/clang/Basic/
H A DPartialDiagnostic.h195 PartialDiagnostic(const PartialDiagnostic &Other) argument
196 : DiagID(Other.DiagID), DiagStorage(0), Allocator(Other.Allocator)
198 if (Other.DiagStorage) {
200 *DiagStorage = *Other.DiagStorage;
205 PartialDiagnostic(PartialDiagnostic &&Other) argument
206 : DiagID(Other.DiagID), DiagStorage(Other.DiagStorage),
207 Allocator(Other.Allocator) {
208 Other
212 PartialDiagnostic(const PartialDiagnostic &Other, Storage *DiagStorage) argument
220 PartialDiagnostic(const Diagnostic &Other, StorageAllocator &Allocator) argument
240 operator =(const PartialDiagnostic &Other) argument
255 operator =(PartialDiagnostic &&Other) argument
[all...]
H A DABI.h67 bool Equals(const VirtualAdjustment &Other) const {
68 return memcmp(this, &Other, sizeof(Other)) == 0;
135 bool Equals(const VirtualAdjustment &Other) const {
136 return memcmp(this, &Other, sizeof(Other)) == 0;
/freebsd-9.3-release/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DAPSIntType.h91 bool operator==(const APSIntType &Other) const {
92 return BitWidth == Other.BitWidth && IsUnsigned == Other.IsUnsigned;
99 bool operator<(const APSIntType &Other) const {
100 if (BitWidth < Other.BitWidth)
102 if (BitWidth > Other.BitWidth)
104 if (!IsUnsigned && Other.IsUnsigned)
/freebsd-9.3-release/contrib/llvm/lib/Support/
H A DConstantRange.cpp222 bool ConstantRange::contains(const ConstantRange &Other) const {
223 if (isFullSet() || Other.isEmptySet()) return true;
224 if (isEmptySet() || Other.isFullSet()) return false;
227 if (Other.isWrappedSet())
230 return Lower.ule(Other.getLower()) && Other.getUpper().ule(Upper);
233 if (!Other.isWrappedSet())
234 return Other.getUpper().ule(Upper) ||
235 Lower.ule(Other.getLower());
237 return Other
[all...]
/freebsd-9.3-release/contrib/llvm/include/llvm/ADT/
H A DOwningPtr.h36 OwningPtr(OwningPtr &&Other) : Ptr(Other.take()) {} argument
38 OwningPtr &operator=(OwningPtr &&Other) { argument
39 reset(Other.take());
100 OwningArrayPtr(OwningArrayPtr &&Other) : Ptr(Other.take()) {} argument
102 OwningArrayPtr &operator=(OwningArrayPtr &&Other) { argument
103 reset(Other.take());
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/AST/
H A DNestedNameSpecifier.cpp439 NestedNameSpecifierLocBuilder(const NestedNameSpecifierLocBuilder &Other) argument
440 : Representation(Other.Representation), Buffer(0),
443 if (!Other.Buffer)
446 if (Other.BufferCapacity == 0) {
448 Buffer = Other.Buffer;
449 BufferSize = Other.BufferSize;
454 BufferSize = Other.BufferSize;
455 BufferCapacity = Other.BufferSize;
457 memcpy(Buffer, Other.Buffer, BufferSize);
462 operator=(const NestedNameSpecifierLocBuilder &Other) { argument
597 Adopt(NestedNameSpecifierLoc Other) argument
[all...]
H A DASTTypeTraits.cpp42 bool ASTNodeKind::isBaseOf(ASTNodeKind Other) const {
43 return isBaseOf(KindId, Other.KindId);
46 bool ASTNodeKind::isSame(ASTNodeKind Other) const {
47 return KindId != NKI_None && KindId == Other.KindId;
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/Lex/
H A DMacroInfo.cpp71 bool MacroInfo::isIdenticalTo(const MacroInfo &Other, Preprocessor &PP, argument
76 if (ReplacementTokens.size() != Other.ReplacementTokens.size() ||
77 getNumArgs() != Other.getNumArgs() ||
78 isFunctionLike() != Other.isFunctionLike() ||
79 isC99Varargs() != Other.isC99Varargs() ||
80 isGNUVarargs() != Other.isGNUVarargs())
85 for (arg_iterator I = arg_begin(), OI = Other.arg_begin(), E = arg_end();
93 const Token &B = Other.ReplacementTokens[i];
115 if (AArgNum != Other.getArgumentNum(B.getIdentifierInfo()))
/freebsd-9.3-release/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyldImpl.h126 inline bool operator==(const RelocationValueRef &Other) const {
127 return SectionID == Other.SectionID && Offset == Other.Offset &&
128 Addend == Other.Addend && SymbolName == Other.SymbolName;
130 inline bool operator <(const RelocationValueRef &Other) const {
131 if (SectionID != Other.SectionID)
132 return SectionID < Other.SectionID;
133 if (Offset != Other.Offset)
134 return Offset < Other
[all...]
/freebsd-9.3-release/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/
H A DConsumed.h146 ConsumedStateMap(const ConsumedStateMap &Other) argument
147 : Reachable(Other.Reachable), From(Other.From), VarMap(Other.VarMap),
165 void intersect(const ConsumedStateMap *Other);
194 /// \param Other -- The second map to compare against.
195 bool operator!=(const ConsumedStateMap *Other) const;
/freebsd-9.3-release/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Checkers/
H A DObjCRetainCount.h160 bool operator==(const RetEffect &Other) const {
161 return K == Other.K && O == Other.O;
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/ASTMatchers/
H A DASTMatchersInternal.cpp31 void BoundNodesTreeBuilder::addMatch(const BoundNodesTreeBuilder &Other) { argument
32 for (unsigned i = 0, e = Other.Bindings.size(); i != e; ++i) {
33 Bindings.push_back(Other.Bindings[i]);
/freebsd-9.3-release/contrib/llvm/lib/MC/
H A DMCELF.cpp72 // Other is stored in the last six bits of st_other
74 void MCELF::setOther(MCSymbolData &SD, unsigned Other) { argument
76 SD.setFlags(OtherFlags | (Other << ELF_Other_Shift));
80 unsigned Other = local
82 return Other;
/freebsd-9.3-release/contrib/llvm/include/llvm/Analysis/
H A DMemoryDependenceAnalysis.h76 /// Other - This marker indicates that the query has no known dependency
79 Other enumerator in enum:llvm::MemDepResult::DepType
81 /// If DepType is "Other", the upper part of the pair
115 PairTy(reinterpret_cast<Instruction*>(NonLocal), Other));
119 PairTy(reinterpret_cast<Instruction*>(NonFuncLocal), Other));
123 PairTy(reinterpret_cast<Instruction*>(Unknown), Other));
138 return Value.getInt() == Other
145 return Value.getInt() == Other
152 return Value.getInt() == Other
159 if (Value.getInt() == Other) retur
[all...]

Completed in 240 milliseconds

12345678