Home
last modified time | relevance | path

Searched refs:is_numeric (Results 1 – 23 of 23) sorted by relevance

/external/protobuf/php/src/Google/Protobuf/Internal/
DGPBUtil.php113 if (is_numeric($var)) {
122 if (is_numeric($var)) {
139 if (is_numeric($var)) {
157 if (is_numeric($var)) {
170 if (is_float($var) || is_numeric($var)) {
179 if (is_float($var) || is_numeric($var)) {
425 if (!is_numeric($timestamp[$i])) {
DRepeatedField.php192 if (!is_numeric($offset) || $offset < 0 || $offset >= $count) {
216 if (!is_numeric($offset) || $count === 0 || $offset !== $count - 1) {
DMessage.php835 if (is_numeric($value)) {
896 if (!is_numeric($value)) {
914 if (!is_numeric($value)) {
929 if (!is_numeric($value)) {
947 if (!is_numeric($value)) {
/external/wpa_supplicant_8/hs20/server/www/
Dusers.php12 if (!is_numeric($id))
123 if (!is_numeric($dump))
286 if (!is_numeric($limit))
/external/libchrome/base/numerics/
Dsafe_conversions_impl.h607 static const bool is_numeric = std::is_arithmetic<type>::value;
616 static const bool is_numeric = true;
625 static const bool is_numeric = true;
634 static const bool is_numeric = true;
643 UnderlyingType<L>::is_numeric && UnderlyingType<R>::is_numeric &&
650 UnderlyingType<L>::is_numeric && UnderlyingType<R>::is_numeric &&
658 UnderlyingType<L>::is_numeric && UnderlyingType<R>::is_numeric &&
Dsafe_conversions.h211 static_assert(UnderlyingType<Src>::is_numeric, "Argument must be numeric.");
/external/pdfium/third_party/base/numerics/
Dsafe_conversions_impl.h608 static const bool is_numeric = std::is_arithmetic<type>::value;
617 static const bool is_numeric = true;
626 static const bool is_numeric = true;
635 static const bool is_numeric = true;
644 UnderlyingType<L>::is_numeric && UnderlyingType<R>::is_numeric &&
651 UnderlyingType<L>::is_numeric && UnderlyingType<R>::is_numeric &&
659 UnderlyingType<L>::is_numeric && UnderlyingType<R>::is_numeric &&
Dsafe_conversions.h221 static_assert(UnderlyingType<Src>::is_numeric, "Argument must be numeric.");
/external/skia/src/utils/
DSkJSON.cpp264 static inline bool is_numeric(char c) { return g_token_flags[static_cast<uint8_t>(c)] & 0x10; } in is_numeric() function
752 if (is_numeric(*p) || !decimal_scale) { in matchFastFloatDecimalPart()
771 if (!is_numeric(*p)) { in matchFastFloatPart()
804 if (!is_numeric(*p)) { in matchFast32OrFloat()
825 if (!is_numeric(*p)) { in matchFast32OrFloat()
/external/skqp/src/utils/
DSkJSON.cpp256 static inline bool is_numeric(char c) { return g_token_flags[static_cast<uint8_t>(c)] & 0x10; } in is_numeric() function
744 if (is_numeric(*p) || !decimal_scale) { in matchFastFloatDecimalPart()
763 if (!is_numeric(*p)) { in matchFastFloatPart()
796 if (!is_numeric(*p)) { in matchFast32OrFloat()
817 if (!is_numeric(*p)) { in matchFast32OrFloat()
/external/grpc-grpc/src/php/lib/Grpc/
DAbstractCall.php52 is_numeric($timeout = $options['timeout'])
/external/perfetto/src/trace_processor/sqlite/
Dsqlite_utils.h41 using is_numeric = variable
174 template <typename T, typename sqlite_utils::is_numeric<T>* = nullptr>
/external/javasqlite/src/main/java/SQLite/
DShell.java145 static boolean is_numeric(String str) { in is_numeric() method in Shell
271 } else if (is_numeric(args[i])) { in newrow()
/external/libtextclassifier/native/utils/tflite/
Dstring_projection.cc196 bool is_numeric(char c) { return c >= '0' && c <= '9'; } in is_numeric() function
337 if (index + 1 < length && is_numeric(input_ptr[index + 1])) { in FindNextSeparator()
/external/mesa3d/src/compiler/glsl/
Dir_set_program_inouts.cpp269 (type->fields.array->is_numeric() || in try_mark_partial_variable()
Dast_to_hir.cpp326 if (!to->is_numeric() || !from->type->is_numeric()) in apply_implicit_conversion()
360 if (!type_a->is_numeric() || !type_b->is_numeric()) { in arithmetic_result_type()
499 if (!type->is_numeric()) { in unary_arithmetic_result_type()
685 if (!type_a->is_numeric() in relational_result_type()
686 || !type_b->is_numeric() in relational_result_type()
4592 if (var->type->is_numeric()) { in process_initializer()
4604 if (var->type->is_numeric()) { in process_initializer()
5273 (var->type->is_numeric() || var->type->is_boolean())) { in hir()
5864 (var->type->is_numeric() || var->type->is_boolean())) { in hir()
Dast_function.cpp564 if (formal->type->is_numeric() || formal->type->is_boolean()) { in generate_call()
2091 return type->is_numeric() || type->is_boolean() || in is_valid_constructor()
/external/python/parse_type/parse_type/
Dparse.py975 is_numeric = type and type in 'n%fegdobh'
1101 if is_numeric:
/external/mesa3d/src/compiler/
Dglsl_types.h747 bool is_numeric() const in is_numeric() function
Dnir_types.cpp379 return type->is_numeric(); in glsl_type_is_numeric()
/external/llvm-project/lldb/bindings/python/
Dpython-extensions.swig554 # (is_numeric, is_signed)
555 # the value of is_signed is undefined if is_numeric == false
/external/rust/crates/grpcio-sys/grpc/third_party/upb/tests/pb/
Dtest_decoder.cc74 bool is_numeric; member
/external/rust/crates/unicode-segmentation/src/
Dtables.rs40 fn is_numeric(c: char) -> bool { in is_numeric() function
50 is_alphabetic(c) || is_numeric(c) in is_alphanumeric()