/external/perfetto/src/trace_processor/ |
D | storage_columns.h | 134 using NumericType = typename Accessor::Type; 154 NumericType min = kTMin; in BoundFilter() 155 NumericType max = kTMax; in BoundFilter() 157 min = FindGtBound<NumericType>(IsOpGe(op), sqlite_val); in BoundFilter() 159 max = FindLtBound<NumericType>(IsOpLe(op), sqlite_val); in BoundFilter() 161 auto val = FindEqBound<NumericType>(sqlite_val); in BoundFilter() 185 auto raw = sqlite_utils::ExtractSqliteValue<NumericType>(value); in Filter() 215 if (std::is_same<NumericType, int32_t>::value) { in GetType() 217 } else if (std::is_same<NumericType, uint8_t>::value || in GetType() 218 std::is_same<NumericType, uint32_t>::value) { in GetType() [all …]
|
D | storage_schema.h | 50 template <class NumericType> 53 const std::deque<NumericType>* vals, 55 NumericDequeAccessor<NumericType> accessor(vals, index, 60 template <class NumericType> 62 const std::deque<NumericType>* vals) { in AddOrderedNumericColumn() 63 NumericDequeAccessor<NumericType> accessor(vals, nullptr, in AddOrderedNumericColumn()
|
/external/cldr/tools/java/org/unicode/cldr/test/ |
D | CheckNumbers.java | 14 import org.unicode.cldr.test.DisplayAndInputProcessor.NumericType; 168 NumericType type = NumericType.getNumericType(path); in handleCheck() 169 if (type == NumericType.NOT_NUMERIC) { in handleCheck() 188 if (type == NumericType.CURRENCY || type == NumericType.CURRENCY_ABBREVIATED) { in handleCheck() 189 if (type == NumericType.CURRENCY_ABBREVIATED && value.equals("0")) { in handleCheck() 200 if (type == NumericType.PERCENT) { in handleCheck() 251 … if (type == NumericType.DECIMAL_ABBREVIATED || type == NumericType.CURRENCY_ABBREVIATED) { in handleCheck() 293 private static UnicodeSet findUnquotedChars(NumericType type, String value) { in findUnquotedChars() 297 if (type == NumericType.DECIMAL_ABBREVIATED) { in findUnquotedChars() 344 List<CheckStatus> result, NumericType type) { in checkDecimalFormatConsistency() [all …]
|
D | DisplayAndInputProcessor.java | 255 NumericType numericType = NumericType.getNumericType(path); in processForDisplay() 256 if (numericType != NumericType.NOT_NUMERIC) { in processForDisplay() 264 … if (numericType != NumericType.CURRENCY && numericType != NumericType.CURRENCY_ABBREVIATED) { in processForDisplay() 373 NumericType numericType = NumericType.getNumericType(path); in processInput() 374 if (numericType != NumericType.NOT_NUMERIC) { in processInput() 375 if (numericType == NumericType.CURRENCY) { in processInput() 377 if (numericType == NumericType.CURRENCY_ABBREVIATED) { in processInput() 384 if (numericType == NumericType.DECIMAL_ABBREVIATED) { in processInput() 877 public static String getCanonicalPattern(String inpattern, NumericType type, boolean isPOSIX) { in getCanonicalPattern() 881 if (type == NumericType.DECIMAL_ABBREVIATED || type == NumericType.CURRENCY_ABBREVIATED in getCanonicalPattern() [all …]
|
D | CLDRTest.java | 27 import org.unicode.cldr.test.DisplayAndInputProcessor.NumericType; 146 NumericType type = NumericType.getNumericType(xpath); in TestCurrencyFormats() 147 if (type == NumericType.NOT_NUMERIC) continue; in TestCurrencyFormats()
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/lang/ |
D | UCharacterTest.java | 2202 … if(UCharacter.getIntPropertyMaxValue(UProperty.NUMERIC_TYPE)!=UCharacter.NumericType.COUNT-1) { in TestAdditionalProperties() 2330 { 0x0F33, UCharacter.NumericType.NUMERIC, -1./2. }, in TestNumericProperties() 2331 { 0x0C66, UCharacter.NumericType.DECIMAL, 0 }, in TestNumericProperties() 2332 { 0x96f6, UCharacter.NumericType.NUMERIC, 0 }, in TestNumericProperties() 2333 { 0xa833, UCharacter.NumericType.NUMERIC, 1./16. }, in TestNumericProperties() 2334 { 0x2152, UCharacter.NumericType.NUMERIC, 1./10. }, in TestNumericProperties() 2335 { 0x2151, UCharacter.NumericType.NUMERIC, 1./9. }, in TestNumericProperties() 2336 { 0x1245f, UCharacter.NumericType.NUMERIC, 1./8. }, in TestNumericProperties() 2337 { 0x2150, UCharacter.NumericType.NUMERIC, 1./7. }, in TestNumericProperties() 2338 { 0x2159, UCharacter.NumericType.NUMERIC, 1./6. }, in TestNumericProperties() [all …]
|
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/lang/ |
D | UCharacterTest.java | 2199 … if(UCharacter.getIntPropertyMaxValue(UProperty.NUMERIC_TYPE)!=UCharacter.NumericType.COUNT-1) { in TestAdditionalProperties() 2327 { 0x0F33, UCharacter.NumericType.NUMERIC, -1./2. }, in TestNumericProperties() 2328 { 0x0C66, UCharacter.NumericType.DECIMAL, 0 }, in TestNumericProperties() 2329 { 0x96f6, UCharacter.NumericType.NUMERIC, 0 }, in TestNumericProperties() 2330 { 0xa833, UCharacter.NumericType.NUMERIC, 1./16. }, in TestNumericProperties() 2331 { 0x2152, UCharacter.NumericType.NUMERIC, 1./10. }, in TestNumericProperties() 2332 { 0x2151, UCharacter.NumericType.NUMERIC, 1./9. }, in TestNumericProperties() 2333 { 0x1245f, UCharacter.NumericType.NUMERIC, 1./8. }, in TestNumericProperties() 2334 { 0x2150, UCharacter.NumericType.NUMERIC, 1./7. }, in TestNumericProperties() 2335 { 0x2159, UCharacter.NumericType.NUMERIC, 1./6. }, in TestNumericProperties() [all …]
|
/external/v8/src/base/ |
D | safe_conversions_impl.h | 23 template <typename NumericType> 25 static const int value = std::numeric_limits<NumericType>::is_iec559 26 ? std::numeric_limits<NumericType>::max_exponent 27 : (sizeof(NumericType) * 8 + 1 - 28 std::numeric_limits<NumericType>::is_signed);
|
D | safe_math_impl.h | 365 template <typename NumericType> 368 std::numeric_limits<NumericType>::is_integer 370 : (std::numeric_limits<NumericType>::is_iec559 ? NUMERIC_FLOATING
|
/external/pdfium/third_party/base/numerics/ |
D | safe_conversions_impl.h | 19 template <typename NumericType> 21 static const int value = std::is_floating_point<NumericType>::value 22 ? std::numeric_limits<NumericType>::max_exponent 23 : std::numeric_limits<NumericType>::digits + 1; 28 template <typename NumericType> 30 static const int value = std::numeric_limits<NumericType>::digits + 31 std::is_signed<NumericType>::value;
|
D | safe_math_impl.h | 518 template <typename NumericType> 521 std::is_integral<NumericType>::value 523 : (std::is_floating_point<NumericType>::value ? NUMERIC_FLOATING
|
/external/libchrome/base/numerics/ |
D | safe_conversions_impl.h | 26 template <typename NumericType> 28 static const int value = std::is_floating_point<NumericType>::value 29 ? std::numeric_limits<NumericType>::max_exponent 30 : std::numeric_limits<NumericType>::digits + 1; 35 template <typename NumericType> 37 static const int value = std::numeric_limits<NumericType>::digits + 38 std::is_signed<NumericType>::value;
|
D | checked_math_impl.h | 452 template <typename NumericType> 455 std::is_integral<NumericType>::value 457 : (std::is_floating_point<NumericType>::value ? NUMERIC_FLOATING
|
/external/icu/android_icu4j/src/main/java/android/icu/impl/ |
D | UCharacterProperty.java | 20 import android.icu.lang.UCharacter.NumericType; 1431 return NumericType.COUNT-1; 1959 (ntv==NTV_NONE_) ? NumericType.NONE : in ntvGetType() 1960 (ntv<NTV_DIGIT_START_) ? NumericType.DECIMAL : in ntvGetType() 1961 (ntv<NTV_NUMERIC_START_) ? NumericType.DIGIT : in ntvGetType() 1962 NumericType.NUMERIC; in ntvGetType()
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
D | UCharacterProperty.java | 19 import com.ibm.icu.lang.UCharacter.NumericType; 1430 return NumericType.COUNT-1; 1958 (ntv==NTV_NONE_) ? NumericType.NONE : in ntvGetType() 1959 (ntv<NTV_DIGIT_START_) ? NumericType.DECIMAL : in ntvGetType() 1960 (ntv<NTV_NUMERIC_START_) ? NumericType.DIGIT : in ntvGetType() 1961 NumericType.NUMERIC; in ntvGetType()
|
/external/cldr/tools/java/org/unicode/cldr/icu/ |
D | LocaleMapper.java | 17 import org.unicode.cldr.test.DisplayAndInputProcessor.NumericType; 383 if (NumericType.getNumericType(xpath) == NumericType.CURRENCY) { in getStringValue()
|
/external/libchrome/mojo/public/tools/bindings/ |
D | README.md | 729 BasicTypeName = Identifier | "associated" Identifier | HandleType | NumericType 730 NumericType = "bool" | "int8" | "uint8" | "int16" | "uint16" | "int32"
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/lang/ |
D | UCharacter.java | 3595 public static interface NumericType interface in UCharacter
|
/external/icu/android_icu4j/src/main/java/android/icu/lang/ |
D | UCharacter.java | 3063 public static interface NumericType interface in UCharacter
|
/external/icu/icu4j/tools/build/ |
D | icu4j55.api3.gz |
|
D | icu4j56.api3.gz | 12;ICU4J 56.1;;
2ST@3.6;PB;NS;NF;NS; ... |
D | icu4j57.api3.gz |
|
D | icu4j54.api3.gz |
|
D | icu4j59.api3.gz |
|
D | icu4j58.api3.gz |
|