Home
last modified time | relevance | path

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

12345678910>>...72

/third_party/pcre2/pcre2/maint/ucptestdata/
Dtestoutput136 U+0020 Separator: Space separator, Common, Other
37 U+0021 Punctuation: Other punctuation, Common, Other
38 U+0022 Punctuation: Other punctuation, Common, Other
39 U+0023 Punctuation: Other punctuation, Common, Other
40 U+0024 Symbol: Currency symbol, Common, Other
41 U+0025 Punctuation: Other punctuation, Common, Other
42 U+0026 Punctuation: Other punctuation, Common, Other
43 U+0027 Punctuation: Other punctuation, Common, Other
44 U+0028 Punctuation: Open punctuation, Common, Other
45 U+0029 Punctuation: Close punctuation, Common, Other
[all …]
Dtestoutput22 U+2E80..U+2E99 Symbol: Other symbol, Han, Other
3 U+2E9B..U+2EF3 Symbol: Other symbol, Han, Other
4 U+2F00..U+2FD5 Symbol: Other symbol, Han, Other
5 U+3005 Letter: Modifier letter, Han, Other
6 U+3007 Number: Letter number, Han, Other
7 U+3021..U+3029 Number: Letter number, Han, Other
8 U+3038..U+303A Number: Letter number, Han, Other
9 U+303B Letter: Modifier letter, Han, Other
10 U+3400..U+4DBF Letter: Other letter, Han, Other
11 U+4E00..U+9FFF Letter: Other letter, Han, Other
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/
DConstantRange.h104 const ConstantRange &Other);
115 const ConstantRange &Other);
125 const APInt &Other);
144 const ConstantRange &Other,
150 const APInt &Other,
327 const ConstantRange &Other) const;
334 const ConstantRange &Other,
339 ConstantRange add(const ConstantRange &Other) const;
346 ConstantRange addWithNoWrap(const ConstantRange &Other, unsigned NoWrapKind,
351 ConstantRange sub(const ConstantRange &Other) const;
[all …]
/third_party/boost/boost/multiprecision/detail/
Dnumber_base.hpp532 template <class Other>
533 BOOST_MP_CXX14_CONSTEXPR expression& operator=(const Other&) in operator =()
536 …static_assert(sizeof(Other) == INT_MAX, "You can not assign to a Boost.Multiprecision expression t… in operator =()
563 template <class Other>
564 BOOST_MP_CXX14_CONSTEXPR expression& operator+=(const Other&) in operator +=()
567 …static_assert(sizeof(Other) == INT_MAX, "You can not use operator+= on a Boost.Multiprecision expr… in operator +=()
570 template <class Other>
571 BOOST_MP_CXX14_CONSTEXPR expression& operator-=(const Other&) in operator -=()
574 …static_assert(sizeof(Other) == INT_MAX, "You can not use operator-= on a Boost.Multiprecision expr… in operator -=()
577 template <class Other>
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/
DRegister.h120 bool operator==(const Register &Other) const { return Reg == Other.Reg; }
121 bool operator!=(const Register &Other) const { return Reg != Other.Reg; }
122 bool operator==(const MCRegister &Other) const { return Reg == Other.id(); }
123 bool operator!=(const MCRegister &Other) const { return Reg != Other.id(); }
129 bool operator==(unsigned Other) const { return Reg == Other; }
130 bool operator!=(unsigned Other) const { return Reg != Other; }
131 bool operator==(int Other) const { return Reg == unsigned(Other); }
132 bool operator!=(int Other) const { return Reg != unsigned(Other); }
134 bool operator==(MCPhysReg Other) const { return Reg == unsigned(Other); }
135 bool operator!=(MCPhysReg Other) const { return Reg != unsigned(Other); }
DMIRYamlMapping.h42 bool operator==(const StringValue &Other) const {
43 return Value == Other.Value;
83 bool operator==(const BlockStringValue &Other) const {
84 return Value == Other.Value;
107 bool operator==(const UnsignedValue &Other) const {
108 return Value == Other.Value;
162 bool operator==(const VirtualRegisterDefinition &Other) const {
163 return ID == Other.ID && Class == Other.Class &&
164 PreferredRegister == Other.PreferredRegister;
183 bool operator==(const MachineFunctionLiveIn &Other) const {
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/
DConstantRange.cpp226 const ConstantRange &Other, in makeGuaranteedNoWrapRegion() argument
237 unsigned BitWidth = Other.getBitWidth(); in makeGuaranteedNoWrapRegion()
246 -Other.getUnsignedMax()); in makeGuaranteedNoWrapRegion()
249 APInt SMin = Other.getSignedMin(), SMax = Other.getSignedMax(); in makeGuaranteedNoWrapRegion()
257 return getNonEmpty(Other.getUnsignedMax(), APInt::getMinValue(BitWidth)); in makeGuaranteedNoWrapRegion()
260 APInt SMin = Other.getSignedMin(), SMax = Other.getSignedMax(); in makeGuaranteedNoWrapRegion()
268 return makeExactMulNUWRegion(Other.getUnsignedMax()); in makeGuaranteedNoWrapRegion()
270 return makeExactMulNSWRegion(Other.getSignedMin()) in makeGuaranteedNoWrapRegion()
271 .intersectWith(makeExactMulNSWRegion(Other.getSignedMax())); in makeGuaranteedNoWrapRegion()
276 ConstantRange ShAmt = Other.intersectWith( in makeGuaranteedNoWrapRegion()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AArch64/
DAArch64StackOffset.h53 StackOffset(const StackOffset &Other) in StackOffset() argument
54 : Bytes(Other.Bytes), ScalableBytes(Other.ScalableBytes) {} in StackOffset()
58 StackOffset &operator+=(const StackOffset::Part &Other) {
59 const TypeSize Size = Other.second.getSizeInBits();
61 ScalableBytes += Other.first * ((int64_t)Size.getKnownMinSize() / 8);
63 Bytes += Other.first * ((int64_t)Size.getFixedSize() / 8);
67 StackOffset &operator+=(const StackOffset &Other) {
68 Bytes += Other.Bytes;
69 ScalableBytes += Other.ScalableBytes;
73 StackOffset operator+(const StackOffset &Other) const {
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/MC/
DMCRegister.h76 bool operator==(const MCRegister &Other) const { return Reg == Other.Reg; }
77 bool operator!=(const MCRegister &Other) const { return Reg != Other.Reg; }
83 bool operator==(unsigned Other) const { return Reg == Other; }
84 bool operator!=(unsigned Other) const { return Reg != Other; }
85 bool operator==(int Other) const { return Reg == unsigned(Other); }
86 bool operator!=(int Other) const { return Reg != unsigned(Other); }
88 bool operator==(MCPhysReg Other) const { return Reg == unsigned(Other); }
89 bool operator!=(MCPhysReg Other) const { return Reg != unsigned(Other); }
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;
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/
DErrorOr.h94 ErrorOr(const ErrorOr &Other) { in ErrorOr() argument
95 copyConstruct(Other); in ErrorOr()
100 const ErrorOr<OtherT> &Other,
103 copyConstruct(Other);
108 const ErrorOr<OtherT> &Other,
111 copyConstruct(Other);
114 ErrorOr(ErrorOr &&Other) { in ErrorOr() argument
115 moveConstruct(std::move(Other)); in ErrorOr()
120 ErrorOr<OtherT> &&Other,
123 moveConstruct(std::move(Other));
[all …]
DMSVCErrorWorkarounds.h31 MSVCPError(MSVCPError &&Other) : Error(std::move(Other)) {} in MSVCPError() argument
33 MSVCPError &operator=(MSVCPError Other) {
34 Error::operator=(std::move(Other));
50 MSVCPExpected(MSVCPExpected &&Other) : Expected<T>(std::move(Other)) {} in MSVCPExpected() argument
52 MSVCPExpected &operator=(MSVCPExpected &&Other) {
53 Expected<T>::operator=(std::move(Other));
68 Expected<OtherT> &&Other,
71 : Expected<T>(std::move(Other)) {}
75 Expected<OtherT> &&Other,
78 : Expected<T>(std::move(Other)) {}
/third_party/skia/third_party/externals/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 …]
/third_party/boost/boost/algorithm/string/
Dfind_iterator.hpp83 find_iterator( const find_iterator& Other ) : in find_iterator() argument
84 base_type(Other), in find_iterator()
85 m_Match(Other.m_Match), in find_iterator()
86 m_End(Other.m_End) {} in find_iterator()
139 bool equal( const find_iterator& Other ) const in equal()
142 bool bOtherEof=Other.eof(); in equal()
146 m_Match==Other.m_Match && in equal()
147 m_End==Other.m_End in equal()
243 split_iterator( const split_iterator& Other ) : in split_iterator() argument
244 base_type(Other), in split_iterator()
[all …]
/third_party/boost/boost/algorithm/string/detail/
Dclassification.hpp107 is_any_ofF(const is_any_ofF& Other) : m_Size(Other.m_Size) in is_any_ofF()
118 SrcStorage=&Other.m_Storage.m_fixSet[0]; in is_any_ofF()
125 SrcStorage=Other.m_Storage.m_dynSet; in is_any_ofF()
142 is_any_ofF& operator=(const is_any_ofF& Other) in operator =()
145 if(this==&Other) return *this; in operator =()
151 if(use_fixed_storage(Other.m_Size)) in operator =()
155 SrcStorage=&Other.m_Storage.m_fixSet[0]; in operator =()
164 m_Size=Other.m_Size; in operator =()
169 SrcStorage=Other.m_Storage.m_dynSet; in operator =()
175 set_value_type* pTemp=new set_value_type[Other.m_Size]; in operator =()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/
DValueLattice.h82 ValueLatticeElement(const ValueLatticeElement &Other) : Tag(undefined) { in ValueLatticeElement() argument
83 *this = Other; in ValueLatticeElement()
88 ValueLatticeElement &operator=(const ValueLatticeElement &Other) {
91 if (isConstantRange() && !Other.isConstantRange())
96 if ((isConstant() || isNotConstant()) && !Other.isConstant() &&
97 !Other.isNotConstant())
100 switch (Other.Tag) {
103 new (&Range) ConstantRange(Other.Range);
105 Range = Other.Range;
109 ConstVal = Other.ConstVal;
[all …]
DMustExecute.h283 MustBeExecutedIterator(const MustBeExecutedIterator &Other) in MustBeExecutedIterator()
284 : Visited(Other.Visited), Explorer(Other.Explorer), in MustBeExecutedIterator()
285 CurInst(Other.CurInst) {} in MustBeExecutedIterator()
287 MustBeExecutedIterator(MustBeExecutedIterator &&Other) in MustBeExecutedIterator()
288 : Visited(std::move(Other.Visited)), Explorer(Other.Explorer), in MustBeExecutedIterator()
289 CurInst(Other.CurInst) {} in MustBeExecutedIterator()
291 MustBeExecutedIterator &operator=(MustBeExecutedIterator &&Other) {
292 if (this != &Other) {
293 std::swap(Visited, Other.Visited);
294 std::swap(CurInst, Other.CurInst);
[all …]
/third_party/typescript/tests/baselines/reference/
DsuperCallInStaticMethod.js7 class Other extends Doing { class
72 var Other = /** @class */ (function (_super) {
73 __extends(Other, _super);
74 function Other() { class in Other
78 Other.staticMethod = function () {
82 Other.lambdaInsideAStaticMethod = function () {
89 Other.objectLiteralInsideAStaticMethod = function () {
98 Object.defineProperty(Other, "staticGetter", {
112 Other.initializerInAStaticMethod = function (a) {
116 return Other;
DerrorsOnUnionsOfOverlappingObjects01.types16 interface Other {
29 declare function f(x: Foo | Other): any;
30 >f : (x: Foo | Other) => any
31 >x : Foo | Other
35 >f : (x: Foo | Other) => any
40 >f : (x: Foo | Other) => any
47 declare function g(x: Bar | Other): any;
48 >g : (x: Bar | Other) => any
49 >x : Bar | Other
53 >g : (x: Bar | Other) => any
[all …]
DsuperCallInNonStaticMethod.js7 class Other extends Doing { class
76 var Other = /** @class */ (function (_super) {
77 __extends(Other, _super);
78 function Other() { class in Other
86 Other.prototype.instanceMethod = function () {
90 Other.prototype.lambdaInsideAnInstanceMethod = function () {
97 Other.prototype.objectLiteralInsideAnInstanceMethod = function () {
106 Object.defineProperty(Other.prototype, "accessor", {
119 return Other;
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Transforms/Scalar/
DGVNExpression.h76 bool operator!=(const Expression &Other) const { return !(*this == Other); }
77 bool operator==(const Expression &Other) const {
78 if (getOpcode() != Other.getOpcode())
85 getExpressionType() != Other.getExpressionType())
88 return equals(Other);
100 virtual bool equals(const Expression &Other) const { return true; } in equals() argument
104 virtual bool exactlyEquals(const Expression &Other) const { in exactlyEquals() argument
105 return getExpressionType() == Other.getExpressionType() && equals(Other); in exactlyEquals()
213 bool equals(const Expression &Other) const override { in equals() argument
214 if (getOpcode() != Other.getOpcode()) in equals()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
DSmallSet.h64 SmallSetIterator(const SmallSetIterator &Other) : isSmall(Other.isSmall) { in SmallSetIterator() argument
66 VecIter = Other.VecIter; in SmallSetIterator()
70 new (&SetIter) SetIterTy(Other.SetIter); in SmallSetIterator()
73 SmallSetIterator(SmallSetIterator &&Other) : isSmall(Other.isSmall) { in SmallSetIterator() argument
75 VecIter = std::move(Other.VecIter); in SmallSetIterator()
79 new (&SetIter) SetIterTy(std::move(Other.SetIter)); in SmallSetIterator()
82 SmallSetIterator& operator=(const SmallSetIterator& Other) {
88 isSmall = Other.isSmall;
90 VecIter = Other.VecIter;
92 new (&SetIter) SetIterTy(Other.SetIter);
[all …]
DCachedHashString.h111 CachedHashString(const CachedHashString &Other)
112 : Size(Other.Size), Hash(Other.Hash) {
113 if (Other.isEmptyOrTombstone()) {
114 P = Other.P;
117 memcpy(P, Other.P, Size);
121 CachedHashString &operator=(CachedHashString Other) {
122 swap(*this, Other);
126 CachedHashString(CachedHashString &&Other) noexcept
127 : P(Other.P), Size(Other.Size), Hash(Other.Hash) {
128 Other.P = getEmptyKeyPtr();
/third_party/gettext/gettext-tools/doc/
DISO_639-223 afa Afro-Asiatic (Other) F
36 art Artificial (Other) S
47 bat Baltic (Other) F
50 ber Berber (Other) F
55 bnt Bantu (Other) F
62 cai Central American Indian (Other) F
64 cau Caucasian (Other) F
66 cel Celtic (Other) F
78 cpe Creoles and pidgins, English based (Other) F
79 cpf Creoles and pidgins, French-based (Other) F
[all …]
/third_party/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 …]

12345678910>>...72