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

1234567891011>>

/external/clang/lib/Format/
H A DContinuationIndenter.h260 bool operator<(const ParenState &Other) const {
261 if (Indent != Other.Indent)
262 return Indent < Other.Indent;
263 if (LastSpace != Other.LastSpace)
264 return LastSpace < Other.LastSpace;
265 if (FirstLessLess != Other.FirstLessLess)
266 return FirstLessLess < Other.FirstLessLess;
267 if (BreakBeforeClosingBrace != Other.BreakBeforeClosingBrace)
269 if (QuestionColumn != Other.QuestionColumn)
270 return QuestionColumn < Other
[all...]
/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/chromium_org/tools/clang/blink_gc_plugin/tests/
H A Ddestructor_access_finalized_field.h12 class Other : public RefCounted<Other> { class in namespace:blink
24 RefPtr<Other> m_ref;
/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);
97 unsigned MatchesAllButOneOp(const AsmWriterInst &Other) const;
/external/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
[all...]
H A DMachineLocation.h45 bool operator==(const MachineLocation &Other) const {
46 return IsRegister == Other.IsRegister && Register == Other.Register &&
47 Offset == Other.Offset;
/external/llvm/include/llvm/Support/
H A DErrorOr.h113 ErrorOr(const ErrorOr &Other) { argument
114 copyConstruct(Other);
118 ErrorOr(const ErrorOr<OtherT> &Other) { argument
119 copyConstruct(Other);
122 ErrorOr &operator =(const ErrorOr &Other) { argument
123 copyAssign(Other);
128 ErrorOr &operator =(const ErrorOr<OtherT> &Other) { argument
129 copyAssign(Other);
133 ErrorOr(ErrorOr &&Other) { argument
134 moveConstruct(std::move(Other));
138 ErrorOr(ErrorOr<OtherT> &&Other) argument
142 operator =(ErrorOr &&Other) argument
148 operator =(ErrorOr<OtherT> &&Other) argument
180 copyConstruct(const ErrorOr<OtherT> &Other) argument
203 copyAssign(const ErrorOr<OtherT> &Other) argument
212 moveConstruct(ErrorOr<OtherT> &&Other) argument
225 moveAssign(ErrorOr<OtherT> &&Other) argument
[all...]
/external/clang/include/clang/Basic/
H A DPartialDiagnostic.h187 PartialDiagnostic(const PartialDiagnostic &Other) argument
188 : DiagID(Other.DiagID), DiagStorage(nullptr), Allocator(Other.Allocator)
190 if (Other.DiagStorage) {
192 *DiagStorage = *Other.DiagStorage;
196 PartialDiagnostic(PartialDiagnostic &&Other) argument
197 : DiagID(Other.DiagID), DiagStorage(Other.DiagStorage),
198 Allocator(Other.Allocator) {
199 Other
202 PartialDiagnostic(const PartialDiagnostic &Other, Storage *DiagStorage) argument
210 PartialDiagnostic(const Diagnostic &Other, StorageAllocator &Allocator) argument
230 operator =(const PartialDiagnostic &Other) argument
244 operator =(PartialDiagnostic &&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/llvm/include/llvm/IR/
H A DConstantRange.h64 /// contained within Other.
70 const ConstantRange &Other);
209 /// from an addition of a value in this range and a value in \p Other.
210 ConstantRange add(const ConstantRange &Other) const;
213 /// from a subtraction of a value in this range and a value in \p Other.
214 ConstantRange sub(const ConstantRange &Other) const;
217 /// from a multiplication of a value in this range and a value in \p Other.
219 ConstantRange multiply(const ConstantRange &Other) const;
222 /// from a signed maximum of a value in this range and a value in \p Other.
223 ConstantRange smax(const ConstantRange &Other) cons
[all...]
/external/clang/tools/diagtool/
H A DDiagnosticNames.h25 bool operator<(const DiagnosticRecord &Other) const {
26 return getName() < Other.getName();
77 bool operator==(group_iterator &Other) const {
78 return CurrentID == Other.CurrentID;
81 bool operator!=(group_iterator &Other) const {
82 return CurrentID != Other.CurrentID;
94 bool operator<(llvm::StringRef Other) const {
95 return getName() < Other;
/external/llvm/include/llvm/Object/
H A DMachOUniversal.h50 bool operator==(const ObjectForArch &Other) const {
51 return (Parent == Other.Parent) && (Index == Other.Index);
74 bool operator==(const object_iterator &Other) const {
75 return Obj == Other.Obj;
77 bool operator!=(const object_iterator &Other) const {
78 return !(*this == Other);
/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"* nonnull %O) unnamed_addr
25 Derived::Derived(const Other &O)
H A Dderived-to-base-conv.cpp11 B(const B& Other);
17 C(const C& Other);
/external/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);
/external/valgrind/main/drd/tests/
H A Dfp_race.stderr.exp6 Other segment start (thread 2)
8 Other segment end (thread 2)
15 Other segment start (thread 2)
17 Other segment end (thread 2)
H A Dsem_as_mutex.stderr.exp6 Other segment start (thread 2)
8 Other segment end (thread 2)
15 Other segment start (thread 2)
17 Other segment end (thread 2)
H A Dsem_open.stderr.exp6 Other segment start (thread 2)
8 Other segment end (thread 2)
15 Other segment start (thread 2)
17 Other segment end (thread 2)
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/chromium_org/tools/win/ChromeDebug/ChromeDebug/
H A DProcessCategory.cs20 Other enumerator in enum:ChromeDebug.ProcessCategory
/external/clang/test/Index/
H A Dcomplete-member-access.m37 @interface Other
41 int test_two_levels(Other *other) {
/external/clang/lib/Lex/
H A DMacroInfo.cpp72 bool MacroInfo::isIdenticalTo(const MacroInfo &Other, Preprocessor &PP, argument
77 if (ReplacementTokens.size() != Other.ReplacementTokens.size() ||
78 getNumArgs() != Other.getNumArgs() ||
79 isFunctionLike() != Other.isFunctionLike() ||
80 isC99Varargs() != Other.isC99Varargs() ||
81 isGNUVarargs() != Other.isGNUVarargs())
86 for (arg_iterator I = arg_begin(), OI = Other.arg_begin(), E = arg_end();
94 const Token &B = Other.ReplacementTokens[i];
116 if (AArgNum != Other.getArgumentNum(B.getIdentifierInfo()))
/external/clang/test/Analysis/inlining/
H A Dpath-notes.cpp67 Dereferencer(const Dereferencer &Other) { argument
72 Dereferencer(Dereferencer &&Other) { argument
77 void operator=(const Dereferencer &Other) { argument
82 void operator=(Dereferencer &&Other) { argument
102 MovableWrapper(MovableWrapper &&Other) = default; member in class:defaulted::MovableWrapper
105 MovableWrapper &operator=(MovableWrapper &&Other) = default; member in class:defaulted::MovableWrapper

Completed in 519 milliseconds

1234567891011>>