Home
last modified time | relevance | path

Searched refs:_other (Results 1 – 25 of 57) sorted by relevance

123

/external/catch2/include/internal/
Dcatch_option.hpp21 Option( Option const& _other ) in Option() argument
22 : nullableValue( _other ? new( storage ) T( *_other ) : nullptr ) in Option()
29 Option& operator= ( Option const& _other ) { in operator =() argument
30 if( &_other != this ) { in operator =()
32 if( _other ) in operator =()
33 nullableValue = new( storage ) T( *_other ); in operator =()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/number/
DConstantMultiFieldModifier.java102 ConstantMultiFieldModifier _other = (ConstantMultiFieldModifier) other; in semanticallyEquivalent() local
103 … if (parameters != null && _other.parameters != null && parameters.obj == _other.parameters.obj) { in semanticallyEquivalent()
106 …return Arrays.equals(prefixChars, _other.prefixChars) && Arrays.equals(prefixFields, _other.prefix… in semanticallyEquivalent()
107 …&& Arrays.equals(suffixChars, _other.suffixChars) && Arrays.equals(suffixFields, _other.suffixFiel… in semanticallyEquivalent()
108 && overwrite == _other.overwrite && strong == _other.strong; in semanticallyEquivalent()
DConstantAffixModifier.java94 ConstantAffixModifier _other = (ConstantAffixModifier) other; in semanticallyEquivalent() local
95 return prefix.equals(_other.prefix) && suffix.equals(_other.suffix) && field == _other.field in semanticallyEquivalent()
96 && strong == _other.strong; in semanticallyEquivalent()
DDecimalQuantity_AbstractBCD.java114 public void copyFrom(DecimalQuantity _other) { in copyFrom() argument
115 copyBcdFrom(_other); in copyFrom()
116 DecimalQuantity_AbstractBCD other = (DecimalQuantity_AbstractBCD) _other; in copyFrom()
1031 DecimalQuantity_AbstractBCD _other = (DecimalQuantity_AbstractBCD) other; in equals() local
1034 scale == _other.scale in equals()
1035 && precision == _other.precision in equals()
1036 && flags == _other.flags in equals()
1037 && lOptPos == _other.lOptPos in equals()
1038 && lReqPos == _other.lReqPos in equals()
1039 && rReqPos == _other.rReqPos in equals()
[all …]
DSimpleModifier.java111 SimpleModifier _other = (SimpleModifier) other; in semanticallyEquivalent() local
112 … if (parameters != null && _other.parameters != null && parameters.obj == _other.parameters.obj) { in semanticallyEquivalent()
115 …return compiledPattern.equals(_other.compiledPattern) && field == _other.field && strong == _other in semanticallyEquivalent()
DMacroProps.java100 public boolean equals(Object _other) { in equals() argument
101 if (_other == null) in equals()
103 if (this == _other) in equals()
105 if (!(_other instanceof MacroProps)) in equals()
107 MacroProps other = (MacroProps) _other; in equals()
/external/icu/android_icu4j/src/main/java/android/icu/impl/number/
DConstantMultiFieldModifier.java104 ConstantMultiFieldModifier _other = (ConstantMultiFieldModifier) other; in semanticallyEquivalent() local
105 … if (parameters != null && _other.parameters != null && parameters.obj == _other.parameters.obj) { in semanticallyEquivalent()
108 …return Arrays.equals(prefixChars, _other.prefixChars) && Arrays.equals(prefixFields, _other.prefix… in semanticallyEquivalent()
109 …&& Arrays.equals(suffixChars, _other.suffixChars) && Arrays.equals(suffixFields, _other.suffixFiel… in semanticallyEquivalent()
110 && overwrite == _other.overwrite && strong == _other.strong; in semanticallyEquivalent()
DConstantAffixModifier.java96 ConstantAffixModifier _other = (ConstantAffixModifier) other; in semanticallyEquivalent() local
97 return prefix.equals(_other.prefix) && suffix.equals(_other.suffix) && field == _other.field in semanticallyEquivalent()
98 && strong == _other.strong; in semanticallyEquivalent()
DDecimalQuantity_AbstractBCD.java116 public void copyFrom(DecimalQuantity _other) { in copyFrom() argument
117 copyBcdFrom(_other); in copyFrom()
118 DecimalQuantity_AbstractBCD other = (DecimalQuantity_AbstractBCD) _other; in copyFrom()
1033 DecimalQuantity_AbstractBCD _other = (DecimalQuantity_AbstractBCD) other; in equals() local
1036 scale == _other.scale in equals()
1037 && precision == _other.precision in equals()
1038 && flags == _other.flags in equals()
1039 && lOptPos == _other.lOptPos in equals()
1040 && lReqPos == _other.lReqPos in equals()
1041 && rReqPos == _other.rReqPos in equals()
[all …]
DSimpleModifier.java113 SimpleModifier _other = (SimpleModifier) other; in semanticallyEquivalent() local
114 … if (parameters != null && _other.parameters != null && parameters.obj == _other.parameters.obj) { in semanticallyEquivalent()
117 …return compiledPattern.equals(_other.compiledPattern) && field == _other.field && strong == _other in semanticallyEquivalent()
DMacroProps.java104 public boolean equals(Object _other) { in equals() argument
105 if (_other == null) in equals()
107 if (this == _other) in equals()
109 if (!(_other instanceof MacroProps)) in equals()
111 MacroProps other = (MacroProps) _other; in equals()
/external/icu/icu4c/source/i18n/
Dnumber_modifiers.cpp106 auto* _other = dynamic_cast<const ConstantAffixModifier*>(&other); in semanticallyEquivalent() local
107 if (_other == nullptr) { in semanticallyEquivalent()
110 return fPrefix == _other->fPrefix in semanticallyEquivalent()
111 && fSuffix == _other->fSuffix in semanticallyEquivalent()
112 && fField == _other->fField in semanticallyEquivalent()
113 && fStrong == _other->fStrong; in semanticallyEquivalent()
194 auto* _other = dynamic_cast<const SimpleModifier*>(&other); in semanticallyEquivalent() local
195 if (_other == nullptr) { in semanticallyEquivalent()
199 return fParameters.obj == _other->fParameters.obj; in semanticallyEquivalent()
201 return fCompiledPattern == _other->fCompiledPattern in semanticallyEquivalent()
[all …]
Dnumber_asformat.cpp36 auto* _other = dynamic_cast<const LocalizedNumberFormatterAsFormat*>(&other); in operator ==() local
37 if (_other == nullptr) { in operator ==()
43 return fFormatter.toSkeleton(localStatus) == _other->fFormatter.toSkeleton(localStatus); in operator ==()
Dnumber_scientific.cpp109 auto* _other = dynamic_cast<const ScientificModifier*>(&other); in semanticallyEquivalent() local
110 if (_other == nullptr) { in semanticallyEquivalent()
114 return fExponent == _other->fExponent; in semanticallyEquivalent()
/external/icu/android_icu4j/src/main/java/android/icu/impl/number/range/
DRangeMacroProps.java36 public boolean equals(Object _other) { in equals() argument
37 if (_other == null) in equals()
39 if (this == _other) in equals()
41 if (!(_other instanceof RangeMacroProps)) in equals()
43 RangeMacroProps other = (RangeMacroProps) _other; in equals()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/number/range/
DRangeMacroProps.java34 public boolean equals(Object _other) { in equals() argument
35 if (_other == null) in equals()
37 if (this == _other) in equals()
39 if (!(_other instanceof RangeMacroProps)) in equals()
41 RangeMacroProps other = (RangeMacroProps) _other; in equals()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/number/
DFormattedNumberRange.java203 FormattedNumberRange _other = (FormattedNumberRange) other; in equals()
204 return Arrays.equals(string.toCharArray(), _other.string.toCharArray()) in equals()
205 && Arrays.equals(string.toFieldArray(), _other.string.toFieldArray()) in equals()
206 && quantity1.toBigDecimal().equals(_other.quantity1.toBigDecimal()) in equals()
207 && quantity2.toBigDecimal().equals(_other.quantity2.toBigDecimal()); in equals()
DFormattedNumber.java230 FormattedNumber _other = (FormattedNumber) other; in equals()
231 return Arrays.equals(nsb.toCharArray(), _other.nsb.toCharArray()) in equals()
232 && Arrays.equals(nsb.toFieldArray(), _other.nsb.toFieldArray()) in equals()
233 && fq.toBigDecimal().equals(_other.fq.toBigDecimal()); in equals()
/external/icu/android_icu4j/src/main/java/android/icu/number/
DFormattedNumberRange.java195 FormattedNumberRange _other = (FormattedNumberRange) other; in equals()
196 return Arrays.equals(string.toCharArray(), _other.string.toCharArray()) in equals()
197 && Arrays.equals(string.toFieldArray(), _other.string.toFieldArray()) in equals()
198 && quantity1.toBigDecimal().equals(_other.quantity1.toBigDecimal()) in equals()
199 && quantity2.toBigDecimal().equals(_other.quantity2.toBigDecimal()); in equals()
DFormattedNumber.java224 FormattedNumber _other = (FormattedNumber) other; in equals()
225 return Arrays.equals(nsb.toCharArray(), _other.nsb.toCharArray()) in equals()
226 && Arrays.equals(nsb.toFieldArray(), _other.nsb.toFieldArray()) in equals()
227 && fq.toBigDecimal().equals(_other.fq.toBigDecimal()); in equals()
/external/eigen/blas/
DBandTriangularSolver.h28 static void run(Index size, Index k, const LhsScalar* _lhs, Index lhsStride, RhsScalar* _other)
31 RhsMap other(_other,size,1);
64 static void run(Index size, Index k, const LhsScalar* _lhs, Index lhsStride, RhsScalar* _other)
67 RhsMap other(_other,size,1);
/external/icu/android_icu4j/src/main/tests/android/icu/dev/impl/number/
DDecimalQuantity_SimpleStorage.java274 DecimalQuantity_SimpleStorage _other = (DecimalQuantity_SimpleStorage) other;
275 lOptPos = _other.lOptPos;
276 lReqPos = _other.lReqPos;
277 rReqPos = _other.rReqPos;
278 rOptPos = _other.rOptPos;
279 primary = _other.primary;
280 primaryScale = _other.primaryScale;
281 primaryPrecision = _other.primaryPrecision;
282 fallback = _other.fallback;
283 flags = _other.flags;
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/impl/number/
DDecimalQuantity_SimpleStorage.java271 DecimalQuantity_SimpleStorage _other = (DecimalQuantity_SimpleStorage) other;
272 lOptPos = _other.lOptPos;
273 lReqPos = _other.lReqPos;
274 rReqPos = _other.rReqPos;
275 rOptPos = _other.rOptPos;
276 primary = _other.primary;
277 primaryScale = _other.primaryScale;
278 primaryPrecision = _other.primaryPrecision;
279 fallback = _other.fallback;
280 flags = _other.flags;
/external/eigen/Eigen/src/Core/products/
DTriangularSolverMatrix.h24 Scalar* _other, Index otherStride,
32 ::run(size, cols, tri, triStride, _other, otherStride, blocking);
44 Scalar* _other, Index otherStride,
51 Scalar* _other, Index otherStride,
59 OtherMapper other(_other, otherStride);
194 Scalar* _other, Index otherStride,
201 Scalar* _other, Index otherStride,
209 LhsMapper lhs(_other, otherStride);
317 pack_lhs_panel(blockA, LhsMapper(_other+absolute_j2*otherStride+i2, otherStride),
DTriangularSolverMatrix_BLAS.h54 EIGTYPE* _other, Index otherStride, level3_blocking<EIGTYPE,EIGTYPE>& /*blocking*/) \
83 …nsa, &diag, &m, &n, &numext::real_ref(alpha), (const BLASTYPE*)a, &lda, (BLASTYPE*)_other, &ldb); \
107 EIGTYPE* _other, Index otherStride, level3_blocking<EIGTYPE,EIGTYPE>& /*blocking*/) \
136 …nsa, &diag, &m, &n, &numext::real_ref(alpha), (const BLASTYPE*)a, &lda, (BLASTYPE*)_other, &ldb); \

123