Home
last modified time | relevance | path

Searched refs:_other (Results 1 – 25 of 74) 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/android_icu4j/src/main/java/android/icu/impl/number/
DConstantMultiFieldModifier.java105 ConstantMultiFieldModifier _other = (ConstantMultiFieldModifier) other; in semanticallyEquivalent() local
106 … if (parameters != null && _other.parameters != null && parameters.obj == _other.parameters.obj) { in semanticallyEquivalent()
109 …return Arrays.equals(prefixChars, _other.prefixChars) && Arrays.equals(prefixFields, _other.prefix… in semanticallyEquivalent()
110 …&& Arrays.equals(suffixChars, _other.suffixChars) && Arrays.equals(suffixFields, _other.suffixFiel… in semanticallyEquivalent()
111 && overwrite == _other.overwrite && strong == _other.strong; in semanticallyEquivalent()
DConstantAffixModifier.java98 ConstantAffixModifier _other = (ConstantAffixModifier) other; in semanticallyEquivalent() local
99 return prefix.equals(_other.prefix) && suffix.equals(_other.suffix) && field == _other.field in semanticallyEquivalent()
100 && strong == _other.strong; in semanticallyEquivalent()
DSimpleModifier.java80 SimpleModifier _other = (SimpleModifier) other; in semanticallyEquivalent() local
81 … if (parameters != null && _other.parameters != null && parameters.obj == _other.parameters.obj) { in semanticallyEquivalent()
84 …return compiledPattern.equals(_other.compiledPattern) && field == _other.field && strong == _other in semanticallyEquivalent()
DDecimalQuantity_AbstractBCD.java98 public void copyFrom(DecimalQuantity _other) { in copyFrom() argument
99 copyBcdFrom(_other); in copyFrom()
100 DecimalQuantity_AbstractBCD other = (DecimalQuantity_AbstractBCD) _other; in copyFrom()
1126 DecimalQuantity_AbstractBCD _other = (DecimalQuantity_AbstractBCD) other; in equals() local
1129 scale == _other.scale in equals()
1130 && precision == _other.precision in equals()
1131 && flags == _other.flags in equals()
1132 && lReqPos == _other.lReqPos in equals()
1133 && rReqPos == _other.rReqPos in equals()
1134 && isApproximate == _other.isApproximate; in equals()
[all …]
DMacroProps.java108 public boolean equals(Object _other) { in equals() argument
109 if (_other == null) in equals()
111 if (this == _other) in equals()
113 if (!(_other instanceof MacroProps)) in equals()
115 MacroProps other = (MacroProps) _other; in equals()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/number/
DConstantMultiFieldModifier.java103 ConstantMultiFieldModifier _other = (ConstantMultiFieldModifier) other; in semanticallyEquivalent() local
104 … if (parameters != null && _other.parameters != null && parameters.obj == _other.parameters.obj) { in semanticallyEquivalent()
107 …return Arrays.equals(prefixChars, _other.prefixChars) && Arrays.equals(prefixFields, _other.prefix… in semanticallyEquivalent()
108 …&& Arrays.equals(suffixChars, _other.suffixChars) && Arrays.equals(suffixFields, _other.suffixFiel… in semanticallyEquivalent()
109 && 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()
DSimpleModifier.java78 SimpleModifier _other = (SimpleModifier) other; in semanticallyEquivalent() local
79 … if (parameters != null && _other.parameters != null && parameters.obj == _other.parameters.obj) { in semanticallyEquivalent()
82 …return compiledPattern.equals(_other.compiledPattern) && field == _other.field && strong == _other in semanticallyEquivalent()
DDecimalQuantity_AbstractBCD.java96 public void copyFrom(DecimalQuantity _other) { in copyFrom() argument
97 copyBcdFrom(_other); in copyFrom()
98 DecimalQuantity_AbstractBCD other = (DecimalQuantity_AbstractBCD) _other; in copyFrom()
1124 DecimalQuantity_AbstractBCD _other = (DecimalQuantity_AbstractBCD) other; in equals() local
1127 scale == _other.scale in equals()
1128 && precision == _other.precision in equals()
1129 && flags == _other.flags in equals()
1130 && lReqPos == _other.lReqPos in equals()
1131 && rReqPos == _other.rReqPos in equals()
1132 && isApproximate == _other.isApproximate; in equals()
[all …]
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.cpp105 auto* _other = dynamic_cast<const ConstantAffixModifier*>(&other); in semanticallyEquivalent() local
106 if (_other == nullptr) { in semanticallyEquivalent()
109 return fPrefix == _other->fPrefix in semanticallyEquivalent()
110 && fSuffix == _other->fSuffix in semanticallyEquivalent()
111 && fField == _other->fField in semanticallyEquivalent()
112 && fStrong == _other->fStrong; in semanticallyEquivalent()
192 auto* _other = dynamic_cast<const SimpleModifier*>(&other); in semanticallyEquivalent() local
193 if (_other == nullptr) { in semanticallyEquivalent()
197 return fParameters.obj == _other->fParameters.obj; in semanticallyEquivalent()
199 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.cpp108 auto* _other = dynamic_cast<const ScientificModifier*>(&other); in semanticallyEquivalent() local
109 if (_other == nullptr) { in semanticallyEquivalent()
113 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.java187 FormattedNumberRange _other = (FormattedNumberRange) other; in equals()
188 return Arrays.equals(string.toCharArray(), _other.string.toCharArray()) in equals()
189 && Arrays.equals(string.toFieldArray(), _other.string.toFieldArray()) in equals()
190 && quantity1.toBigDecimal().equals(_other.quantity1.toBigDecimal()) in equals()
191 && quantity2.toBigDecimal().equals(_other.quantity2.toBigDecimal()); in equals()
/external/icu/android_icu4j/src/main/java/android/icu/number/
DFormattedNumberRange.java166 FormattedNumberRange _other = (FormattedNumberRange) other; in equals()
167 return Arrays.equals(string.toCharArray(), _other.string.toCharArray()) in equals()
168 && Arrays.equals(string.toFieldArray(), _other.string.toFieldArray()) in equals()
169 && quantity1.toBigDecimal().equals(_other.quantity1.toBigDecimal()) in equals()
170 && quantity2.toBigDecimal().equals(_other.quantity2.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/eigen/Eigen/src/Core/products/
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); \
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),
/external/icu/android_icu4j/src/main/tests/android/icu/dev/impl/number/
DDecimalQuantity_SimpleStorage.java280 DecimalQuantity_SimpleStorage _other = (DecimalQuantity_SimpleStorage) other;
281 lOptPos = _other.lOptPos;
282 lReqPos = _other.lReqPos;
283 rReqPos = _other.rReqPos;
284 rOptPos = _other.rOptPos;
285 primary = _other.primary;
286 primaryScale = _other.primaryScale;
287 primaryPrecision = _other.primaryPrecision;
288 fallback = _other.fallback;
289 flags = _other.flags;
[all …]
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/impl/number/
DDecimalQuantity_SimpleStorage.java277 DecimalQuantity_SimpleStorage _other = (DecimalQuantity_SimpleStorage) other;
278 lOptPos = _other.lOptPos;
279 lReqPos = _other.lReqPos;
280 rReqPos = _other.rReqPos;
281 rOptPos = _other.rOptPos;
282 primary = _other.primary;
283 primaryScale = _other.primaryScale;
284 primaryPrecision = _other.primaryPrecision;
285 fallback = _other.fallback;
286 flags = _other.flags;
[all …]
/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/deser/
DTestBasicAnnotations.java26 int _other; field in TestBasicAnnotations.SizeClassSetter
32 @JsonProperty protected void other(int value) { _other = value; } in other()
134 assertEquals(3, result._other); in testSimpleSetter()
/external/python/cpython3/Modules/_sqlite/
Drow.c190 static PyObject* pysqlite_row_richcompare(pysqlite_Row *self, PyObject *_other, int opid) in pysqlite_row_richcompare() argument
195 if (PyObject_TypeCheck(_other, &pysqlite_RowType)) { in pysqlite_row_richcompare()
196 pysqlite_Row *other = (pysqlite_Row *)_other; in pysqlite_row_richcompare()

123