/third_party/json/docs/examples/ |
H A D | is_number.cpp | 19 // call is_number() in main() 21 std::cout << j_null.is_number() << '\n'; in main() 22 std::cout << j_boolean.is_number() << '\n'; in main() 23 std::cout << j_number_integer.is_number() << '\n'; in main() 24 std::cout << j_number_unsigned_integer.is_number() << '\n'; in main() 25 std::cout << j_number_float.is_number() << '\n'; in main() 26 std::cout << j_object.is_number() << '\n'; in main() 27 std::cout << j_array.is_number() << '\n'; in main() 28 std::cout << j_string.is_number() << '\n'; in main() 29 std::cout << j_binary.is_number() << '\ in main() [all...] |
/third_party/json/tests/src/ |
H A D | unit-inspection.cpp | 27 CHECK(!j.is_number()); 45 CHECK(!j.is_number()); 63 CHECK(!j.is_number()); 81 CHECK(!j.is_number()); 99 CHECK(!j.is_number()); 117 CHECK(j.is_number()); 135 CHECK(j.is_number()); 153 CHECK(j.is_number()); 171 CHECK(!j.is_number()); 189 CHECK(!j.is_number()); [all...] |
H A D | unit-algorithms.cpp | 65 if (value.is_number()) 99 return (value.is_number()); 158 return value.is_number();
|
/third_party/python/Modules/_io/ |
H A D | _iomodule.c | 208 int line_buffering, is_number; in _io_open_impl() 213 is_number = PyNumber_Check(file); in _io_open_impl() 215 if (is_number) { in _io_open_impl() 225 if (!is_number && in _io_open_impl() 207 int line_buffering, is_number; _io_open_impl() local
|
/third_party/node/deps/openssl/openssl/crypto/conf/ |
H A D | conf_lib.c | 335 int (*is_number)(const CONF *, char) = &default_is_number; in NCONF_get_number_e() 349 if (conf->meth->is_number != NULL) in NCONF_get_number_e() 350 is_number = conf->meth->is_number; in NCONF_get_number_e() 354 for (res = 0; is_number(conf, *str); str++) { in NCONF_get_number_e()
|
/third_party/openssl/crypto/conf/ |
H A D | conf_lib.c | 335 int (*is_number)(const CONF *, char) = &default_is_number; in NCONF_get_number_e() 349 if (conf->meth->is_number != NULL) in NCONF_get_number_e() 350 is_number = conf->meth->is_number; in NCONF_get_number_e() 354 for (res = 0; is_number(conf, *str); str++) { in NCONF_get_number_e()
|
/third_party/mesa3d/src/compiler/glsl/ |
H A D | s_expression.h | 69 virtual bool is_number() const { return false; } in is_number() function in s_expression 81 bool is_number() const { return true; } in is_number() function in s_number
|
H A D | s_expression.cpp | 186 case NUMBER: if (expr->is_number()) *p_number = (s_number *) expr; break; in match()
|
/third_party/rust/crates/clap/clap_lex/tests/ |
H A D | parsed.rs | 126 assert!(next.is_number()); in is_negative_number() 136 assert!(next.is_number()); in is_positive_number() 146 assert!(!next.is_number()); in is_not_number()
|
H A D | shorts.rs | 154 fn is_number() { in is_number() functions 161 assert!(shorts.is_number()); in is_number() 172 assert!(!shorts.is_number()); in is_not_number()
|
/third_party/node/deps/openssl/openssl/include/openssl/ |
H A D | conftypes.h | 29 int (*is_number) (const CONF *conf, char c); member
|
/third_party/openssl/include/openssl/ |
H A D | conftypes.h | 29 int (*is_number) (const CONF *conf, char c); member
|
/third_party/rust/crates/clap/clap_lex/src/ |
H A D | lib.rs | 305 pub fn is_number(&self) -> bool { in is_number() functions 436 pub fn is_number(&self) -> bool { in display() functions
|
/third_party/openssl/ohos_lite/include/openssl/ |
H A D | conf.h | 45 int (*is_number) (const CONF *conf, char c); member
|
/third_party/ffmpeg/libavformat/ |
H A D | id3v2.c | 598 static int is_number(const char *str) in is_number() function 609 strlen(t->value) == 4 && is_number(t->value)) in get_date_tag()
|
/third_party/skia/third_party/externals/libpng/contrib/gregbook/ |
H A D | rpng2-x.c | 192 static int is_number (char *p); 445 if (!argv[1] || !is_number(argv[1])) in main() 2074 static int is_number(char *p) in is_number() function
|
/third_party/json/include/nlohmann/ |
H A D | json.hpp | 1290 return is_null() || is_string() || is_boolean() || is_number() || is_binary(); 1315 /// @sa https://json.nlohmann.me/api/basic_json/is_number/ 1316 constexpr bool is_number() const noexcept 3651 if ((lhs.is_number_float() && std::isnan(lhs.m_value.number_float) && rhs.is_number()) 3652 || (rhs.is_number_float() && std::isnan(rhs.m_value.number_float) && lhs.is_number()))
|
/third_party/json/docs/docset/ |
H A D | docSet.sql | 66 INSERT INTO searchIndex(name, type, path) VALUES ('basic_json::is_number', 'Method', 'api/basic_json/is_number/index.html');
|
/third_party/rust/crates/clap/src/parser/ |
H A D | parser.rs | 654 && next.is_number()) 859 if self.cmd[opt].is_allow_hyphen_values_set() || (self.cmd[opt].is_allow_negative_numbers_set() && short_arg.is_number())) in parse_short_arg() 868 && short_arg.is_number() in parse_short_arg()
|
/third_party/node/deps/v8/src/codegen/ |
H A D | code-stub-assembler.cc | 13923 Label is_number(this); 13924 GotoIf(TaggedIsSmi(input), &is_number); 13925 Branch(IsHeapNumber(CAST(input)), &is_number, is_not_number); 13926 BIND(&is_number); 13929 void CodeStubAssembler::GotoIfNumber(TNode<Object> input, Label* is_number) { 13930 GotoIf(TaggedIsSmi(input), is_number); 13931 GotoIf(IsHeapNumber(CAST(input)), is_number);
|
H A D | code-stub-assembler.h | 768 void GotoIfNumber(TNode<Object> value, Label* is_number);
|
/third_party/json/single_include/nlohmann/ |
H A D | json.hpp | 2839 @ref basic_json::is_number() (with @ref basic_json::is_number_integer(), 20468 return is_null() || is_string() || is_boolean() || is_number() || is_binary(); 20493 /// @sa https://json.nlohmann.me/api/basic_json/is_number/ 20494 constexpr bool is_number() const noexcept 22829 if ((lhs.is_number_float() && std::isnan(lhs.m_value.number_float) && rhs.is_number()) 22830 || (rhs.is_number_float() && std::isnan(rhs.m_value.number_float) && lhs.is_number()))
|
/third_party/json/tests/abi/include/nlohmann/ |
H A D | json_v3_10_5.hpp | 112 @ref basic_json::is_number() (with @ref basic_json::is_number_integer(), 18457 return is_null() || is_string() || is_boolean() || is_number() || is_binary(); 18482 /// @sa https://json.nlohmann.me/api/basic_json/is_number/ 18483 constexpr bool is_number() const noexcept
|