/external/catch2/include/internal/ |
D | catch_option.hpp | 21 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/ |
D | ConstantMultiFieldModifier.java | 105 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()
|
D | ConstantAffixModifier.java | 98 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()
|
D | SimpleModifier.java | 80 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()
|
D | DecimalQuantity_AbstractBCD.java | 98 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 …]
|
D | MacroProps.java | 108 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/ |
D | ConstantMultiFieldModifier.java | 103 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()
|
D | ConstantAffixModifier.java | 96 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()
|
D | SimpleModifier.java | 78 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()
|
D | DecimalQuantity_AbstractBCD.java | 96 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 …]
|
D | MacroProps.java | 104 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/ |
D | number_modifiers.cpp | 105 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 …]
|
D | number_asformat.cpp | 36 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 ==()
|
D | number_scientific.cpp | 108 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/ |
D | RangeMacroProps.java | 36 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/ |
D | RangeMacroProps.java | 34 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/ |
D | FormattedNumberRange.java | 187 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/ |
D | FormattedNumberRange.java | 166 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/ |
D | BandTriangularSolver.h | 28 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/ |
D | TriangularSolverMatrix_BLAS.h | 54 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); \
|
D | TriangularSolverMatrix.h | 24 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/ |
D | DecimalQuantity_SimpleStorage.java | 280 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/ |
D | DecimalQuantity_SimpleStorage.java | 277 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/ |
D | TestBasicAnnotations.java | 26 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/ |
D | row.c | 190 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()
|