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

1234567891011

/external/clang/test/Modules/Inputs/
H A Dcategory_other.h3 @interface Foo(Other)
/external/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...]
/external/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;
/external/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.h42 bool operator==(const MachineLocation &Other) const {
43 return IsRegister == Other.IsRegister && Register == Other.Register &&
44 Offset == Other.Offset;
/external/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);
/external/clang/lib/ASTMatchers/
H A DASTMatchersInternal.cpp29 void BoundNodesTreeBuilder::addMatch(const BoundNodesTreeBuilder &Other) { argument
30 for (unsigned i = 0, e = Other.Bindings.size(); i != e; ++i) {
31 Bindings.push_back(Other.Bindings[i]);
/external/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...]
/external/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.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...]
/external/harfbuzz/src/
H A Dharfbuzz-indic.cpp63 Other enumerator in enum:Form
86 Nukta, Other, Matra, Matra,
93 Other, StressMark, StressMark, StressMark,
99 Other, Other, Other, Other,
100 Other, Other, Other, Othe
[all...]
/external/harfbuzz_ng/src/hb-old/
H A Dharfbuzz-indic.cpp63 Other enumerator in enum:Form
86 Nukta, Other, Matra, Matra,
93 Other, StressMark, StressMark, StressMark,
99 Other, Other, Other, Other,
100 Other, Other, Other, Othe
[all...]
/external/clang/lib/AST/
H A DASTTypeTraits.cpp40 bool ASTNodeKind::isBaseOf(ASTNodeKind Other) const {
41 return isBaseOf(KindId, Other.KindId);
44 bool ASTNodeKind::isSame(ASTNodeKind Other) const {
45 return KindId != NKI_None && KindId == Other.KindId;
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...]
/external/clang/test/CXX/basic/basic.lookup/basic.lookup.unqual/
H A Dp14.cpp41 class Other { class in namespace:M
47 void Other::foo(YFloat a, YFloat b) {
52 namespace Other { namespace
57 using namespace Other;
/external/clang/tools/diagtool/
H A DDiagnosticNames.h25 bool operator<(const DiagnosticRecord &Other) const {
26 return getName() < Other.getName();
83 bool operator==(group_iterator &Other) const {
84 return CurrentID == Other.CurrentID;
87 bool operator!=(group_iterator &Other) const {
88 return CurrentID != Other.CurrentID;
108 bool operator<(const GroupRecord &Other) const {
109 return getName() < Other.getName();
/external/clang/lib/ASTMatchers/Dynamic/
H A DVariantValue.cpp28 MatcherList::MatcherList(const MatcherList& Other) { argument
29 *this = Other;
36 MatcherList &MatcherList::operator=(const MatcherList &Other) { argument
37 if (this == &Other) return *this;
39 for (size_t i = 0, e = Other.List.size(); i != e; ++i) {
40 List.push_back(Other.List[i]->clone());
65 VariantValue::VariantValue(const VariantValue &Other) : Type(VT_Nothing) { argument
66 *this = Other;
87 VariantValue &VariantValue::operator=(const VariantValue &Other) { argument
88 if (this == &Other) retur
[all...]
/external/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)
/external/llvm/lib/Support/
H A DConstantRange.cpp225 bool ConstantRange::contains(const ConstantRange &Other) const {
226 if (isFullSet() || Other.isEmptySet()) return true;
227 if (isEmptySet() || Other.isFullSet()) return false;
230 if (Other.isWrappedSet())
233 return Lower.ule(Other.getLower()) && Other.getUpper().ule(Upper);
236 if (!Other.isWrappedSet())
237 return Other.getUpper().ule(Upper) ||
238 Lower.ule(Other.getLower());
240 return Other
[all...]
/external/clang/test/CodeGenCXX/
H A Dcopy-constructor-elim-2.cpp16 struct Other { struct in namespace:no_elide_base
21 Derived(const Other &O);
24 // CHECK: define {{.*}} @_ZN13no_elide_base7DerivedC1ERKNS_5OtherE(%"struct.no_elide_base::Derived"* returned %this, %"struct.no_elide_base::Other"* %O) unnamed_addr
25 Derived::Derived(const Other &O)
/external/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());
/external/clang/test/Index/
H A Dcomplete-member-access.m37 @interface Other
41 int test_two_levels(Other *other) {
/external/valgrind/main/drd/tests/
H A Dsem_as_mutex3.stderr.exp6 Other segment start (thread 2)
8 Other segment end (thread 2)
H A Dsem_open3.stderr.exp6 Other segment start (thread 2)
8 Other segment end (thread 2)
/external/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()))

Completed in 684 milliseconds

1234567891011