HomeSort by relevance Sort by last modified time
    Searched refs:NumericType (Results 1 - 19 of 19) sorted by null

  /external/perfetto/src/trace_processor/
storage_columns.h 134 using NumericType = typename Accessor::Type;
154 NumericType min = kTMin;
155 NumericType max = kTMax;
157 min = FindGtBound<NumericType>(IsOpGe(op), sqlite_val);
159 max = FindLtBound<NumericType>(IsOpLe(op), sqlite_val);
161 auto val = FindEqBound<NumericType>(sqlite_val);
185 auto raw = sqlite_utils::ExtractSqliteValue<NumericType>(value);
215 if (std::is_same<NumericType, int32_t>::value) {
217 } else if (std::is_same<NumericType, uint8_t>::value ||
218 std::is_same<NumericType, uint32_t>::value)
    [all...]
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) {
63 NumericDequeAccessor<NumericType> accessor(vals, nullptr,
  /external/v8/src/base/
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);
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/cldr/tools/java/org/unicode/cldr/test/
CheckNumbers.java 14 import org.unicode.cldr.test.DisplayAndInputProcessor.NumericType;
168 NumericType type = NumericType.getNumericType(path);
169 if (type == NumericType.NOT_NUMERIC) {
188 if (type == NumericType.CURRENCY || type == NumericType.CURRENCY_ABBREVIATED) {
189 if (type == NumericType.CURRENCY_ABBREVIATED && value.equals("0")) {
200 if (type == NumericType.PERCENT) {
251 if (type == NumericType.DECIMAL_ABBREVIATED || type == NumericType.CURRENCY_ABBREVIATED)
    [all...]
DisplayAndInputProcessor.java 255 NumericType numericType = NumericType.getNumericType(path);
256 if (numericType != NumericType.NOT_NUMERIC) {
260 value = getCanonicalPattern(value, numericType, isPosix);
264 if (numericType != NumericType.CURRENCY && numericType != NumericType.CURRENCY_ABBREVIATED)
    [all...]
CLDRTest.java 27 import org.unicode.cldr.test.DisplayAndInputProcessor.NumericType;
146 NumericType type = NumericType.getNumericType(xpath);
147 if (type == NumericType.NOT_NUMERIC) continue;
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/lang/
UCharacterTest.java     [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/lang/
UCharacterTest.java     [all...]
  /external/libchrome/base/numerics/
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;
    [all...]
checked_math_impl.h 452 template <typename NumericType>
455 std::is_integral<NumericType>::value
457 : (std::is_floating_point<NumericType>::value ? NUMERIC_FLOATING
  /external/pdfium/third_party/base/numerics/
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;
safe_math_impl.h 518 template <typename NumericType>
521 std::is_integral<NumericType>::value
523 : (std::is_floating_point<NumericType>::value ? NUMERIC_FLOATING
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
UCharacterProperty.java 20 import android.icu.lang.UCharacter.NumericType;
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
UCharacterProperty.java 19 import com.ibm.icu.lang.UCharacter.NumericType;
    [all...]
  /external/cldr/tools/java/org/unicode/cldr/icu/
LocaleMapper.java 17 import org.unicode.cldr.test.DisplayAndInputProcessor.NumericType;
383 if (NumericType.getNumericType(xpath) == NumericType.CURRENCY) {
  /external/icu/android_icu4j/src/main/java/android/icu/lang/
UCharacter.java     [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/lang/
UCharacter.java     [all...]
  /external/cldr/tools/java/libs/
icu4j.jar 

Completed in 444 milliseconds