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

1234567

/freebsd-10.0-release/contrib/llvm/tools/clang/include/clang/AST/
H A DCharUnits.h69 CharUnits& operator+= (const CharUnits &Other) { argument
70 Quantity += Other.Quantity;
80 CharUnits& operator-= (const CharUnits &Other) { argument
81 Quantity -= Other.Quantity;
93 bool operator== (const CharUnits &Other) const {
94 return Quantity == Other.Quantity;
96 bool operator!= (const CharUnits &Other) const {
97 return Quantity != Other.Quantity;
101 bool operator< (const CharUnits &Other) const {
102 return Quantity < Other
[all...]
H A DNestedNameSpecifier.h95 NestedNameSpecifier(const NestedNameSpecifier &Other) argument
96 : llvm::FoldingSetNode(Other), Prefix(Other.Prefix),
97 Specifier(Other.Specifier) {
345 NestedNameSpecifierLocBuilder(const NestedNameSpecifierLocBuilder &Other);
348 operator=(const NestedNameSpecifierLocBuilder &Other);
430 void Adopt(NestedNameSpecifierLoc Other);
H A DDeclFriend.h200 bool operator==(const friend_iterator &Other) const {
201 return Ptr == Other.Ptr;
204 bool operator!=(const friend_iterator &Other) const {
205 return Ptr != Other.Ptr;
H A DDependentDiagnostic.h149 bool operator==(ddiag_iterator Other) const {
150 return Ptr == Other.Ptr;
153 bool operator!=(ddiag_iterator Other) const {
154 return Ptr != Other.Ptr;
/freebsd-10.0-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;
H A DDAGISelMatcher.cpp34 /// unlinkNode - Unlink the specified node from this chain. If Other == this,
35 /// we unlink the next pointer and return it. Otherwise we unlink Other from
37 Matcher *Matcher::unlinkNode(Matcher *Other) { argument
38 if (this == Other)
41 // Scan until we find the predecessor of Other.
43 for (; Cur && Cur->getNext() != Other; Cur = Cur->getNext())
48 Cur->setNext(Other->takeNext());
52 /// canMoveBefore - Return true if this matcher is the same as Other, or if
53 /// we can move this matcher past all of the nodes in-between Other and this
54 /// node. Other mus
[all...]
/freebsd-10.0-release/contrib/llvm/include/llvm/MC/
H A DMCSchedule.h39 bool operator==(const MCProcResourceDesc &Other) const {
40 return NumUnits == Other.NumUnits && SuperIdx == Other.SuperIdx
41 && IsBuffered == Other.IsBuffered;
51 bool operator==(const MCWriteProcResEntry &Other) const {
52 return ProcResourceIdx == Other.ProcResourceIdx && Cycles == Other.Cycles;
65 bool operator==(const MCWriteLatencyEntry &Other) const {
66 return Cycles == Other.Cycles && WriteResourceID == Other
[all...]
H A DMachineLocation.h47 bool operator==(const MachineLocation &Other) const {
48 return IsRegister == Other.IsRegister && Register == Other.Register &&
49 Offset == Other.Offset;
H A DMCELF.h31 static void setOther(MCSymbolData &SD, unsigned Other);
/freebsd-10.0-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...]
/freebsd-10.0-release/contrib/llvm/include/llvm/Support/
H A DErrorOr.h212 ErrorOr(const ErrorOr &Other) : IsValid(false) { argument
213 copyConstruct(Other);
217 ErrorOr(const ErrorOr<OtherT> &Other) : IsValid(false) { argument
218 copyConstruct(Other);
221 ErrorOr &operator =(const ErrorOr &Other) { argument
222 copyAssign(Other);
227 ErrorOr &operator =(const ErrorOr<OtherT> &Other) { argument
228 copyAssign(Other);
233 ErrorOr(ErrorOr &&Other) : IsValid(false) { argument
234 moveConstruct(std::move(Other));
238 ErrorOr(ErrorOr<OtherT> &&Other) argument
242 operator =(ErrorOr &&Other) argument
248 operator =(ErrorOr<OtherT> &&Other) argument
298 copyConstruct(const ErrorOr<OtherT> &Other) argument
326 copyAssign(const ErrorOr<OtherT> &Other) argument
336 moveConstruct(ErrorOr<OtherT> &&Other) argument
357 moveAssign(ErrorOr<OtherT> &&Other) argument
437 ErrorOr(const ErrorOr &Other) argument
444 operator =(const ErrorOr &Other) argument
455 ErrorOr(ErrorOr &&Other) argument
462 operator =(ErrorOr &&Other) argument
[all...]
H A DConstantRange.h61 /// contained within Other.
67 const ConstantRange &Other);
206 /// from an addition of a value in this range and a value in \p Other.
207 ConstantRange add(const ConstantRange &Other) const;
210 /// from a subtraction of a value in this range and a value in \p Other.
211 ConstantRange sub(const ConstantRange &Other) const;
214 /// from a multiplication of a value in this range and a value in \p Other.
216 ConstantRange multiply(const ConstantRange &Other) const;
219 /// from a signed maximum of a value in this range and a value in \p Other.
220 ConstantRange smax(const ConstantRange &Other) cons
[all...]
H A DSourceMgr.h194 bool operator<(const SMFixIt &Other) const {
195 if (Range.Start.getPointer() != Other.Range.Start.getPointer())
196 return Range.Start.getPointer() < Other.Range.Start.getPointer();
197 if (Range.End.getPointer() != Other.Range.End.getPointer())
198 return Range.End.getPointer() < Other.Range.End.getPointer();
199 return Text < Other.Text;
/freebsd-10.0-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-10.0-release/contrib/llvm/lib/Support/
H A DConstantRange.cpp224 bool ConstantRange::contains(const ConstantRange &Other) const {
225 if (isFullSet() || Other.isEmptySet()) return true;
226 if (isEmptySet() || Other.isFullSet()) return false;
229 if (Other.isWrappedSet())
232 return Lower.ule(Other.getLower()) && Other.getUpper().ule(Upper);
235 if (!Other.isWrappedSet())
236 return Other.getUpper().ule(Upper) ||
237 Lower.ule(Other.getLower());
239 return Other
[all...]
/freebsd-10.0-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());
99 OwningArrayPtr(OwningArrayPtr &&Other) : Ptr(Other.take()) {} argument
101 OwningArrayPtr &operator=(OwningArrayPtr &&Other) { argument
102 reset(Other.take());
/freebsd-10.0-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
598 Adopt(NestedNameSpecifierLoc Other) argument
[all...]
/freebsd-10.0-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-10.0-release/contrib/llvm/lib/MC/
H A DMCELF.cpp73 // Other is stored in the last six bits of st_other
75 void MCELF::setOther(MCSymbolData &SD, unsigned Other) { argument
77 SD.setFlags(OtherFlags | (Other << ELF_Other_Shift));
81 unsigned Other = local
83 return Other;
/freebsd-10.0-release/contrib/llvm/tools/clang/include/clang/Sema/
H A DLookup.h171 LookupResult(TemporaryToken _, const LookupResult &Other) argument
175 SemaRef(Other.SemaRef),
176 NameInfo(Other.NameInfo),
177 LookupKind(Other.LookupKind),
178 IDNS(Other.IDNS),
179 Redecl(Other.Redecl),
180 HideTags(Other.HideTags),
182 AllowHidden(Other.AllowHidden)
376 void addAllDecls(const LookupResult &Other) { argument
377 Decls.append(Other
[all...]
/freebsd-10.0-release/contrib/llvm/include/llvm/Object/
H A DObjectFile.h104 bool operator==(const RelocationRef &Other) const;
146 bool operator==(const SectionRef &Other) const;
147 bool operator<(const SectionRef &Other) const;
210 bool operator==(const SymbolRef &Other) const;
211 bool operator<(const SymbolRef &Other) const;
255 bool operator==(const LibraryRef &Other) const;
256 bool operator<(const LibraryRef &Other) const;
407 inline bool SymbolRef::operator==(const SymbolRef &Other) const {
408 return SymbolPimpl == Other.SymbolPimpl;
411 inline bool SymbolRef::operator<(const SymbolRef &Other) cons
[all...]
/freebsd-10.0-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...]
/freebsd-10.0-release/contrib/llvm/tools/clang/lib/Format/
H A DTokenAnnotator.h225 AnnotatedLine(const AnnotatedLine &Other) argument
226 : First(Other.First), Type(Other.Type), Level(Other.Level),
227 InPPDirective(Other.InPPDirective),
228 MustBeDeclaration(Other.MustBeDeclaration),
229 MightBeFunctionDecl(Other.MightBeFunctionDecl),
230 StartsDefinition(Other.StartsDefinition) {
/freebsd-10.0-release/contrib/llvm/tools/clang/lib/ASTMatchers/
H A DASTMatchersInternal.cpp29 void BoundNodesMap::copyTo(BoundNodesMap *Other) const {
33 Other->NodeMap[I->first] = I->second;
/freebsd-10.0-release/contrib/llvm/lib/CodeGen/
H A DRegisterCoalescer.cpp1276 // Lanes with defined values in this register. Other lanes are undef and
1318 ConflictResolution analyzeValue(unsigned ValNo, JoinVals &Other);
1319 void computeAssignment(unsigned ValNo, JoinVals &Other);
1323 bool isPrunedValue(unsigned ValNo, JoinVals &Other);
1338 bool mapValues(JoinVals &Other);
1342 bool resolveConflicts(JoinVals &Other);
1344 /// Prune the live range of values in Other.LI where they would conflict with
1347 void pruneValues(JoinVals &Other, SmallVectorImpl<SlotIndex> &EndPoints);
1398 /// Recursively calls computeAssignment() on this and Other, guaranteeing that
1403 JoinVals::analyzeValue(unsigned ValNo, JoinVals &Other) { argument
1607 computeAssignment(unsigned ValNo, JoinVals &Other) argument
1642 mapValues(JoinVals &Other) argument
1670 taintExtent(unsigned ValNo, unsigned TaintedLanes, JoinVals &Other, SmallVectorImpl<std::pair<SlotIndex, unsigned> > &TaintExtent) argument
1727 resolveConflicts(JoinVals &Other) argument
1796 isPrunedValue(unsigned ValNo, JoinVals &Other) argument
1811 pruneValues(JoinVals &Other, SmallVectorImpl<SlotIndex> &EndPoints) argument
[all...]

Completed in 275 milliseconds

1234567