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

1234567891011>>

/external/clang/lib/Format/
H A DContinuationIndenter.h266 bool operator<(const ParenState &Other) const {
267 if (Indent != Other.Indent)
268 return Indent < Other.Indent;
269 if (LastSpace != Other.LastSpace)
270 return LastSpace < Other.LastSpace;
271 if (NestedBlockIndent != Other.NestedBlockIndent)
272 return NestedBlockIndent < Other.NestedBlockIndent;
273 if (FirstLessLess != Other.FirstLessLess)
274 return FirstLessLess < Other.FirstLessLess;
275 if (BreakBeforeClosingBrace != Other
[all...]
/external/clang/test/Modules/Inputs/
H A Dcategory_other.h3 @interface Foo(Other)
/external/llvm/include/llvm/Object/
H A DArchiveWriter.h29 NewArchiveMember(NewArchiveMember &&Other) argument
30 : Buf(std::move(Other.Buf)), ModTime(Other.ModTime), UID(Other.UID),
31 GID(Other.GID), Perms(Other.Perms) {}
32 NewArchiveMember &operator=(NewArchiveMember &&Other) { argument
33 Buf = std::move(Other.Buf);
34 ModTime = Other.ModTime;
35 UID = Other
[all...]
/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...]
/external/llvm/unittests/ADT/
H A DSparseBitVectorTest.cpp37 SparseBitVector<> Vec, Other; local
40 Other.set(1);
41 EXPECT_FALSE(Vec &= Other);
46 Other.clear();
47 Other.set(6);
48 EXPECT_TRUE(Vec &= Other);
53 Other.clear();
54 Other.set(225);
55 EXPECT_TRUE(Vec &= Other);
60 Other
67 SparseBitVector<> Vec, Other; local
[all...]
/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/include/llvm/IR/
H A DConstantRange.h64 /// predicate with any value contained within Other is contained in the
66 /// 'union over all y in Other . { x : icmp op x y is true }'. If the exact
70 /// Example: Pred = ult and Other = i8 [2, 5) returns Result = [0, 4)
72 const ConstantRange &Other);
75 /// satisfy the given predicate with all values contained within Other.
77 /// 'intersection over all y in Other . { x : icmp op x y is true }'. If the
81 /// Example: Pred = ult and Other = i8 [2, 5) returns [0, 2)
83 const ConstantRange &Other);
86 /// the given predicate with any value contained within Other. Formally, this
87 /// returns the exact answer when the superset of 'union over all y in Other
[all...]
/external/swiftshader/third_party/LLVM/include/llvm/Support/
H A DConstantRange.h61 /// contained within Other.
67 const ConstantRange &Other);
202 /// from an addition of a value in this range and a value in \p Other.
203 ConstantRange add(const ConstantRange &Other) const;
206 /// from a subtraction of a value in this range and a value in \p Other.
207 ConstantRange sub(const ConstantRange &Other) const;
210 /// from a multiplication of a value in this range and a value in \p Other.
212 ConstantRange multiply(const ConstantRange &Other) const;
215 /// from a signed maximum of a value in this range and a value in \p Other.
216 ConstantRange smax(const ConstantRange &Other) cons
[all...]
/external/llvm/utils/TableGen/
H A DAsmWriterInst.h65 bool operator!=(const AsmWriterOperand &Other) const {
66 if (OperandType != Other.OperandType || Str != Other.Str) return true;
68 return MIOpNo != Other.MIOpNo || MiModifier != Other.MiModifier;
71 bool operator==(const AsmWriterOperand &Other) const {
72 return !operator!=(Other);
91 unsigned MatchesAllButOneOp(const AsmWriterInst &Other) const;
/external/swiftshader/third_party/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/Support/
H A DErrorOr.h104 ErrorOr(const ErrorOr &Other) { argument
105 copyConstruct(Other);
110 const ErrorOr<OtherT> &Other,
113 copyConstruct(Other);
118 const ErrorOr<OtherT> &Other,
121 copyConstruct(Other);
124 ErrorOr(ErrorOr &&Other) { argument
125 moveConstruct(std::move(Other));
130 ErrorOr<OtherT> &&Other,
133 moveConstruct(std::move(Other));
109 ErrorOr( const ErrorOr<OtherT> &Other, typename std::enable_if<std::is_convertible<OtherT, T>::value>::type * = nullptr) argument
117 ErrorOr( const ErrorOr<OtherT> &Other, typename std::enable_if< !std::is_convertible<OtherT, const T &>::value>::type * = nullptr) argument
129 ErrorOr( ErrorOr<OtherT> &&Other, typename std::enable_if<std::is_convertible<OtherT, T>::value>::type * = nullptr) argument
139 ErrorOr( ErrorOr<OtherT> &&Other, typename std::enable_if<!std::is_convertible<OtherT, T>::value>::type * = nullptr) argument
146 operator =(const ErrorOr &Other) argument
151 operator =(ErrorOr &&Other) argument
187 copyConstruct(const ErrorOr<OtherT> &Other) argument
210 copyAssign(const ErrorOr<OtherT> &Other) argument
219 moveConstruct(ErrorOr<OtherT> &&Other) argument
232 moveAssign(ErrorOr<OtherT> &&Other) argument
[all...]
H A DMemory.h164 OwningMemoryBlock(OwningMemoryBlock &&Other) { argument
165 M = Other.M;
166 Other.M = MemoryBlock();
168 OwningMemoryBlock& operator=(OwningMemoryBlock &&Other) { argument
169 M = Other.M;
170 Other.M = MemoryBlock();
/external/clang/include/clang/Sema/
H A DLookup.h173 LookupResult(TemporaryToken _, const LookupResult &Other) argument
177 SemaPtr(Other.SemaPtr),
178 NameInfo(Other.NameInfo),
179 LookupKind(Other.LookupKind),
180 IDNS(Other.IDNS),
181 Redecl(Other.Redecl),
182 HideTags(Other.HideTags),
184 AllowHidden(Other.AllowHidden),
193 LookupResult(LookupResult &&Other) argument
194 : ResultKind(std::move(Other
209 operator =(LookupResult &&Other) argument
423 addAllDecls(const LookupResult &Other) argument
[all...]
/external/v8/tools/clang/blink_gc_plugin/tests/
H A Ddestructor_access_finalized_field.h12 class Other : public RefCounted<Other> { class in namespace:blink
37 RefPtr<Other> m_ref;
/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/tools/llvm-cov/
H A DRenderingSupport.h30 ColoredRawOstream(ColoredRawOstream &&Other) argument
31 : OS(Other.OS), IsColorUsed(Other.IsColorUsed) {
34 Other.IsColorUsed = false;
/external/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;
/external/llvm/include/llvm/CodeGen/
H A DRegAllocPBQP.h92 AllowedRegVector(const AllowedRegVector &Other) argument
93 : NumOpts(Other.NumOpts), Opts(new unsigned[NumOpts]) {
94 std::copy(Other.Opts.get(), Other.Opts.get() + NumOpts, Opts.get());
97 AllowedRegVector(AllowedRegVector &&Other) argument
98 : NumOpts(std::move(Other.NumOpts)), Opts(std::move(Other.Opts)) {}
100 AllowedRegVector& operator=(const AllowedRegVector &Other) { argument
101 NumOpts = Other.NumOpts;
103 std::copy(Other
107 operator =(AllowedRegVector &&Other) argument
204 NodeMetadata(const NodeMetadata &Other) argument
220 NodeMetadata(NodeMetadata &&Other) argument
231 operator =(const NodeMetadata &Other) argument
248 operator =(NodeMetadata &&Other) argument
[all...]
/external/swiftshader/third_party/LLVM/lib/Support/
H A DConstantRange.cpp234 bool ConstantRange::contains(const ConstantRange &Other) const {
235 if (isFullSet() || Other.isEmptySet()) return true;
236 if (isEmptySet() || Other.isFullSet()) return false;
239 if (Other.isWrappedSet())
242 return Lower.ule(Other.getLower()) && Other.getUpper().ule(Upper);
245 if (!Other.isWrappedSet())
246 return Other.getUpper().ule(Upper) ||
247 Lower.ule(Other.getLower());
249 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"* dereferenceable({{[0-9]+}}) %O) unnamed_addr
25 Derived::Derived(const Other &O)
/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/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)

Completed in 1575 milliseconds

1234567891011>>