Home
last modified time | relevance | path

Searched refs:Other (Results 1 – 25 of 2049) sorted by relevance

12345678910>>...82

/external/clang/lib/Format/
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.BreakBeforeClosingBrace)
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/CodeGen/
DMIRYamlMapping.h41 bool operator==(const StringValue &Other) const {
42 return Value == Other.Value;
82 bool operator==(const BlockStringValue &Other) const {
83 return Value == Other.Value;
106 bool operator==(const UnsignedValue &Other) const {
107 return Value == Other.Value;
161 bool operator==(const VirtualRegisterDefinition &Other) const {
162 return ID == Other.ID && Class == Other.Class &&
163 PreferredRegister == Other.PreferredRegister;
182 bool operator==(const MachineFunctionLiveIn &Other) const {
[all …]
/external/llvm/unittests/ADT/
DSparseBitVectorTest.cpp37 SparseBitVector<> Vec, Other; in TEST() local
40 Other.set(1); in TEST()
41 EXPECT_FALSE(Vec &= Other); in TEST()
46 Other.clear(); in TEST()
47 Other.set(6); in TEST()
48 EXPECT_TRUE(Vec &= Other); in TEST()
53 Other.clear(); in TEST()
54 Other.set(225); in TEST()
55 EXPECT_TRUE(Vec &= Other); in TEST()
60 Other.clear(); in TEST()
[all …]
/external/clang/include/clang/Sema/
DLookup.h173 LookupResult(TemporaryToken _, const LookupResult &Other) in LookupResult() argument
177 SemaPtr(Other.SemaPtr), in LookupResult()
178 NameInfo(Other.NameInfo), in LookupResult()
179 LookupKind(Other.LookupKind), in LookupResult()
180 IDNS(Other.IDNS), in LookupResult()
181 Redecl(Other.Redecl), in LookupResult()
182 HideTags(Other.HideTags), in LookupResult()
184 AllowHidden(Other.AllowHidden), in LookupResult()
193 LookupResult(LookupResult &&Other) in LookupResult() argument
194 : ResultKind(std::move(Other.ResultKind)), in LookupResult()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/lib/IR/
DConstantRange.cpp181 const ConstantRange &Other, in makeGuaranteedNoWrapRegion() argument
201 unsigned BitWidth = Other.getBitWidth(); in makeGuaranteedNoWrapRegion()
210 if (auto *C = Other.getSingleElement()) in makeGuaranteedNoWrapRegion()
217 -Other.getUnsignedMax())); in makeGuaranteedNoWrapRegion()
219 const APInt &SignedMin = Other.getSignedMin(); in makeGuaranteedNoWrapRegion()
220 const APInt &SignedMax = Other.getSignedMax(); in makeGuaranteedNoWrapRegion()
235 if (auto *C = Other.getSingleElement()) in makeGuaranteedNoWrapRegion()
241 SubsetIntersect(Result, ConstantRange(Other.getUnsignedMax(), in makeGuaranteedNoWrapRegion()
244 const APInt &SignedMin = Other.getSignedMin(); in makeGuaranteedNoWrapRegion()
245 const APInt &SignedMax = Other.getSignedMax(); in makeGuaranteedNoWrapRegion()
[all …]
/external/clang/include/clang/AST/
DCharUnits.h68 CharUnits& operator+= (const CharUnits &Other) {
69 Quantity += Other.Quantity;
79 CharUnits& operator-= (const CharUnits &Other) {
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.Quantity;
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/unittests/ADT/
DSparseBitVectorTest.cpp37 SparseBitVector<> Vec, Other; in TEST() local
40 Other.set(1); in TEST()
41 EXPECT_FALSE(Vec &= Other); in TEST()
46 Other.clear(); in TEST()
47 Other.set(6); in TEST()
48 EXPECT_TRUE(Vec &= Other); in TEST()
53 Other.clear(); in TEST()
54 Other.set(225); in TEST()
55 EXPECT_TRUE(Vec &= Other); in TEST()
60 Other.clear(); in TEST()
[all …]
/external/clang/include/clang/Basic/
DPartialDiagnostic.h187 PartialDiagnostic(const PartialDiagnostic &Other) in PartialDiagnostic() argument
188 : DiagID(Other.DiagID), DiagStorage(nullptr), Allocator(Other.Allocator) in PartialDiagnostic()
190 if (Other.DiagStorage) { in PartialDiagnostic()
192 *DiagStorage = *Other.DiagStorage; in PartialDiagnostic()
196 PartialDiagnostic(PartialDiagnostic &&Other) in PartialDiagnostic() argument
197 : DiagID(Other.DiagID), DiagStorage(Other.DiagStorage), in PartialDiagnostic()
198 Allocator(Other.Allocator) { in PartialDiagnostic()
199 Other.DiagStorage = nullptr; in PartialDiagnostic()
202 PartialDiagnostic(const PartialDiagnostic &Other, Storage *DiagStorage) in PartialDiagnostic() argument
203 : DiagID(Other.DiagID), DiagStorage(DiagStorage), in PartialDiagnostic()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Support/
DErrorOr.h95 ErrorOr(const ErrorOr &Other) { in ErrorOr() argument
96 copyConstruct(Other); in ErrorOr()
101 const ErrorOr<OtherT> &Other,
104 copyConstruct(Other);
109 const ErrorOr<OtherT> &Other,
112 copyConstruct(Other);
115 ErrorOr(ErrorOr &&Other) { in ErrorOr() argument
116 moveConstruct(std::move(Other)); in ErrorOr()
121 ErrorOr<OtherT> &&Other,
124 moveConstruct(std::move(Other));
[all …]
/external/libcxx/test/support/
Demplace_constructible.h21 EmplaceConstructibleAndMoveInsertable&& Other) in EmplaceConstructibleAndMoveInsertable()
22 : copied(Other.copied + 1), value(std::move(Other.value)) {} in EmplaceConstructibleAndMoveInsertable()
32 EmplaceConstructibleAndMoveable(EmplaceConstructibleAndMoveable&& Other) in EmplaceConstructibleAndMoveable()
33 noexcept : copied(Other.copied + 1), in EmplaceConstructibleAndMoveable()
34 value(std::move(Other.value)) {} in EmplaceConstructibleAndMoveable()
37 operator=(EmplaceConstructibleAndMoveable&& Other) noexcept {
38 copied = Other.copied;
39 assigned = Other.assigned + 1;
40 value = std::move(Other.value);
54 EmplaceConstructibleMoveableAndAssignable&& Other) noexcept in EmplaceConstructibleMoveableAndAssignable()
[all …]
/external/llvm/include/llvm/CodeGen/
DRegAllocPBQP.h92 AllowedRegVector(const AllowedRegVector &Other) in AllowedRegVector() argument
93 : NumOpts(Other.NumOpts), Opts(new unsigned[NumOpts]) { in AllowedRegVector()
94 std::copy(Other.Opts.get(), Other.Opts.get() + NumOpts, Opts.get()); in AllowedRegVector()
97 AllowedRegVector(AllowedRegVector &&Other) in AllowedRegVector() argument
98 : NumOpts(std::move(Other.NumOpts)), Opts(std::move(Other.Opts)) {} in AllowedRegVector()
100 AllowedRegVector& operator=(const AllowedRegVector &Other) {
101 NumOpts = Other.NumOpts;
103 std::copy(Other.Opts.get(), Other.Opts.get() + NumOpts, Opts.get());
107 AllowedRegVector& operator=(AllowedRegVector &&Other) {
108 NumOpts = std::move(Other.NumOpts);
[all …]
/external/swiftshader/third_party/llvm-subzero/include/llvm/Support/
DErrorOr.h104 ErrorOr(const ErrorOr &Other) { in ErrorOr() argument
105 copyConstruct(Other); in ErrorOr()
110 const ErrorOr<OtherT> &Other,
113 copyConstruct(Other);
118 const ErrorOr<OtherT> &Other,
121 copyConstruct(Other);
124 ErrorOr(ErrorOr &&Other) { in ErrorOr() argument
125 moveConstruct(std::move(Other)); in ErrorOr()
130 ErrorOr<OtherT> &&Other,
133 moveConstruct(std::move(Other));
[all …]
/external/llvm/include/llvm/Support/
DErrorOr.h104 ErrorOr(const ErrorOr &Other) { in ErrorOr() argument
105 copyConstruct(Other); in ErrorOr()
110 const ErrorOr<OtherT> &Other,
113 copyConstruct(Other);
118 const ErrorOr<OtherT> &Other,
121 copyConstruct(Other);
124 ErrorOr(ErrorOr &&Other) { in ErrorOr() argument
125 moveConstruct(std::move(Other)); in ErrorOr()
130 ErrorOr<OtherT> &&Other,
133 moveConstruct(std::move(Other));
[all …]
/external/llvm/lib/IR/
DConstantRange.cpp170 const ConstantRange &Other, in makeGuaranteedNoWrapRegion() argument
191 unsigned BitWidth = Other.getBitWidth(); in makeGuaranteedNoWrapRegion()
196 if (auto *C = Other.getSingleElement()) in makeGuaranteedNoWrapRegion()
206 -Other.getUnsignedMax())); in makeGuaranteedNoWrapRegion()
209 APInt SignedMin = Other.getSignedMin(); in makeGuaranteedNoWrapRegion()
210 APInt SignedMax = Other.getSignedMax(); in makeGuaranteedNoWrapRegion()
332 bool ConstantRange::contains(const ConstantRange &Other) const { in contains()
333 if (isFullSet() || Other.isEmptySet()) return true; in contains()
334 if (isEmptySet() || Other.isFullSet()) return false; in contains()
337 if (Other.isWrappedSet()) in contains()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/IR/
DConstantRange.h71 const ConstantRange &Other);
82 const ConstantRange &Other);
92 const APInt &Other);
117 const ConstantRange &Other,
263 const ConstantRange &Other) const;
267 ConstantRange add(const ConstantRange &Other) const;
271 ConstantRange addWithNoSignedWrap(const APInt &Other) const;
275 ConstantRange sub(const ConstantRange &Other) const;
280 ConstantRange multiply(const ConstantRange &Other) const;
284 ConstantRange smax(const ConstantRange &Other) const;
[all …]
/external/swiftshader/third_party/LLVM/lib/Support/
DConstantRange.cpp234 bool ConstantRange::contains(const ConstantRange &Other) const { in contains()
235 if (isFullSet() || Other.isEmptySet()) return true; in contains()
236 if (isEmptySet() || Other.isFullSet()) return false; in contains()
239 if (Other.isWrappedSet()) in contains()
242 return Lower.ule(Other.getLower()) && Other.getUpper().ule(Upper); in contains()
245 if (!Other.isWrappedSet()) in contains()
246 return Other.getUpper().ule(Upper) || in contains()
247 Lower.ule(Other.getLower()); in contains()
249 return Other.getUpper().ule(Upper) && Lower.ule(Other.getLower()); in contains()
503 ConstantRange::add(const ConstantRange &Other) const { in add()
[all …]
/external/llvm/include/llvm/IR/
DConstantRange.h72 const ConstantRange &Other);
83 const ConstantRange &Other);
93 const APInt &Other);
114 const ConstantRange &Other,
254 ConstantRange add(const ConstantRange &Other) const;
258 ConstantRange sub(const ConstantRange &Other) const;
263 ConstantRange multiply(const ConstantRange &Other) const;
267 ConstantRange smax(const ConstantRange &Other) const;
271 ConstantRange umax(const ConstantRange &Other) const;
275 ConstantRange smin(const ConstantRange &Other) const;
[all …]
/external/llvm/include/llvm/MC/
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.WriteResourceID;
91 bool operator==(const MCReadAdvanceEntry &Other) const {
92 return UseIdx == Other.UseIdx && WriteResourceID == Other.WriteResourceID
93 && Cycles == Other.Cycles;
/external/llvm/include/llvm/Object/
DArchiveWriter.h29 NewArchiveMember(NewArchiveMember &&Other) in NewArchiveMember()
30 : Buf(std::move(Other.Buf)), ModTime(Other.ModTime), UID(Other.UID), in NewArchiveMember()
31 GID(Other.GID), Perms(Other.Perms) {} in NewArchiveMember()
32 NewArchiveMember &operator=(NewArchiveMember &&Other) {
33 Buf = std::move(Other.Buf);
34 ModTime = Other.ModTime;
35 UID = Other.UID;
36 GID = Other.GID;
37 Perms = Other.Perms;
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/MC/
DMCSchedule.h56 bool operator==(const MCProcResourceDesc &Other) const {
57 return NumUnits == Other.NumUnits && SuperIdx == Other.SuperIdx
58 && BufferSize == Other.BufferSize;
68 bool operator==(const MCWriteProcResEntry &Other) const {
69 return ProcResourceIdx == Other.ProcResourceIdx && Cycles == Other.Cycles;
82 bool operator==(const MCWriteLatencyEntry &Other) const {
83 return Cycles == Other.Cycles && WriteResourceID == Other.WriteResourceID;
100 bool operator==(const MCReadAdvanceEntry &Other) const {
101 return UseIdx == Other.UseIdx && WriteResourceID == Other.WriteResourceID
102 && Cycles == Other.Cycles;
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Analysis/
DValueLattice.h83 ValueLatticeElement(const ValueLatticeElement &Other) : Tag(undefined) { in ValueLatticeElement() argument
84 *this = Other; in ValueLatticeElement()
89 ValueLatticeElement &operator=(const ValueLatticeElement &Other) {
92 if (isConstantRange() && !Other.isConstantRange())
97 if ((isConstant() || isNotConstant()) && !Other.isConstant() &&
98 !Other.isNotConstant())
101 switch (Other.Tag) {
104 new (&Range) ConstantRange(Other.Range);
106 Range = Other.Range;
110 ConstVal = Other.ConstVal;
[all …]
/external/swiftshader/third_party/LLVM/include/llvm/Support/
DConstantRange.h67 const ConstantRange &Other);
203 ConstantRange add(const ConstantRange &Other) const;
207 ConstantRange sub(const ConstantRange &Other) const;
212 ConstantRange multiply(const ConstantRange &Other) const;
216 ConstantRange smax(const ConstantRange &Other) const;
220 ConstantRange umax(const ConstantRange &Other) const;
225 ConstantRange udiv(const ConstantRange &Other) const;
229 ConstantRange binaryAnd(const ConstantRange &Other) const;
233 ConstantRange binaryOr(const ConstantRange &Other) const;
238 ConstantRange shl(const ConstantRange &Other) const;
[all …]
/external/icu/icu4c/source/test/testdata/
DGraphemeBreakTest.txt25 ÷ 0020 ÷ 0020 ÷ # ÷ [0.2] SPACE (Other) ÷ [999.0] SPACE (Other) ÷ [0.3]
26 …020 × 0308 ÷ 0020 ÷ # ÷ [0.2] SPACE (Other) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999…
27 ÷ 0020 ÷ 000D ÷ # ÷ [0.2] SPACE (Other) ÷ [5.0] <CARRIAGE RETURN (CR)> (CR) ÷ [0.3]
28 ÷ 0020 × 0308 ÷ 000D ÷ # ÷ [0.2] SPACE (Other) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [5…
29 ÷ 0020 ÷ 000A ÷ # ÷ [0.2] SPACE (Other) ÷ [5.0] <LINE FEED (LF)> (LF) ÷ [0.3]
30 ÷ 0020 × 0308 ÷ 000A ÷ # ÷ [0.2] SPACE (Other) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [5…
31 ÷ 0020 ÷ 0001 ÷ # ÷ [0.2] SPACE (Other) ÷ [5.0] <START OF HEADING> (Control) ÷ [0.3]
32 ÷ 0020 × 0308 ÷ 0001 ÷ # ÷ [0.2] SPACE (Other) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [5…
33 ÷ 0020 × 034F ÷ # ÷ [0.2] SPACE (Other) × [9.0] COMBINING GRAPHEME JOINER (Extend) ÷ [0.3]
34 ÷ 0020 × 0308 × 034F ÷ # ÷ [0.2] SPACE (Other) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9…
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Transforms/Scalar/
DGVNExpression.h77 bool operator!=(const Expression &Other) const { return !(*this == Other); }
78 bool operator==(const Expression &Other) const {
79 if (getOpcode() != Other.getOpcode())
86 getExpressionType() != Other.getExpressionType())
89 return equals(Other);
101 virtual bool equals(const Expression &Other) const { return true; } in equals() argument
105 virtual bool exactlyEquals(const Expression &Other) const { in exactlyEquals() argument
106 return getExpressionType() == Other.getExpressionType() && equals(Other); in exactlyEquals()
214 bool equals(const Expression &Other) const override { in equals() argument
215 if (getOpcode() != Other.getOpcode()) in equals()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ADT/
DSmallSet.h65 SmallSetIterator(const SmallSetIterator &Other) : isSmall(Other.isSmall) { in SmallSetIterator() argument
67 VecIter = Other.VecIter; in SmallSetIterator()
71 new (&SetIter) SetIterTy(Other.SetIter); in SmallSetIterator()
74 SmallSetIterator(SmallSetIterator &&Other) : isSmall(Other.isSmall) { in SmallSetIterator() argument
76 VecIter = std::move(Other.VecIter); in SmallSetIterator()
80 new (&SetIter) SetIterTy(std::move(Other.SetIter)); in SmallSetIterator()
83 SmallSetIterator& operator=(const SmallSetIterator& Other) {
89 isSmall = Other.isSmall;
91 VecIter = Other.VecIter;
93 new (&SetIter) SetIterTy(Other.SetIter);
[all …]

12345678910>>...82