| /third_party/json/docs/examples/ |
| D | is_binary.cpp | 21 std::cout << j_null.is_binary() << '\n'; in main() 22 std::cout << j_boolean.is_binary() << '\n'; in main() 23 std::cout << j_number_integer.is_binary() << '\n'; in main() 24 std::cout << j_number_unsigned_integer.is_binary() << '\n'; in main() 25 std::cout << j_number_float.is_binary() << '\n'; in main() 26 std::cout << j_object.is_binary() << '\n'; in main() 27 std::cout << j_array.is_binary() << '\n'; in main() 28 std::cout << j_string.is_binary() << '\n'; in main() 29 std::cout << j_binary.is_binary() << '\n'; in main()
|
| /third_party/json/docs/mkdocs/docs/api/basic_json/ |
| D | is_binary.md | 1 # <small>nlohmann::basic_json::</small>is_binary 4 constexpr bool is_binary() const noexcept; 25 The following code exemplifies `is_binary()` for all JSON types. 28 --8<-- "examples/is_binary.cpp" 34 --8<-- "examples/is_binary.output"
|
| D | is_primitive.md | 27 return is_null() || is_string() || is_boolean() || is_number() || is_binary(); 64 - [is_binary()](is_binary.md) returns whether JSON value is a binary array
|
| D | value_t.md | 22 [`is_discarded`](is_discarded.md), [`is_binary`](is_binary.md), [`is_primitive`](is_primitive.md), …
|
| D | index.md | 171 - [**is_binary**](is_binary.md) - return whether value is a binary array
|
| /third_party/json/tests/src/ |
| D | unit-inspection.cpp | 31 CHECK(!j.is_binary()); 49 CHECK(!j.is_binary()); 67 CHECK(!j.is_binary()); 85 CHECK(!j.is_binary()); 103 CHECK(!j.is_binary()); 121 CHECK(!j.is_binary()); 139 CHECK(!j.is_binary()); 157 CHECK(!j.is_binary()); 175 CHECK(j.is_binary()); 193 CHECK(!j.is_binary());
|
| D | unit-cbor.cpp | 1558 CHECK(j.is_binary()); 1589 if (parsed.is_binary()) in __anonb6a849290202() 1599 CHECK(j.at("foo").is_binary()); 2664 CHECK(jb["binary"].is_binary());
|
| /third_party/googletest/googletest/scripts/ |
| D | upload.py | 680 def UploadFile(filename, file_id, content, is_binary, status, is_base): argument 699 ("is_binary", str(is_binary)), 717 base_content, new_content, is_binary, status = files[filename] 724 UploadFile(filename, file_id, base_content, is_binary, status, True) 726 UploadFile(filename, file_id, new_content, is_binary, status, False) 928 is_binary = mimetype and not mimetype.startswith("text/") 929 if is_binary and self.IsImage(filename): 948 is_binary = mimetype and not mimetype.startswith("text/") 952 elif is_binary: 968 if is_binary: [all …]
|
| /third_party/toybox/toys/pending/ |
| D | diff.c | 45 int dir_num, size, is_binary, status, change, len[2]; 380 TT.is_binary = 0; //loop calls to diff in diff() 409 for (t = 0; t < i && !TT.is_binary; t++) in diff() 410 if (!bufi[t]) TT.is_binary = 1; in diff() 411 for (t = 0; t < j && !TT.is_binary; t++) in diff() 412 if (!bufj[t]) TT.is_binary = 1; in diff() 420 if (TT.is_binary || (TT.status == SAME)) return NULL; in diff() 725 if ((toys.optflags & FLAG_q) || TT.is_binary) in show_status()
|
| /third_party/json/include/nlohmann/ |
| D | json.hpp | 1290 return is_null() || is_string() || is_boolean() || is_number() || is_binary(); in is_primitive() 1365 constexpr bool is_binary() const noexcept in is_binary() function in basic_json 1489 return is_binary() ? m_value.binary : nullptr; in get_impl_ptr() 1495 return is_binary() ? m_value.binary : nullptr; in get_impl_ptr() 1893 if (!is_binary()) in get_binary() 1905 if (!is_binary()) in get_binary() 2448 else if (is_binary()) in erase() 2519 else if (is_binary()) in erase() 3534 if (JSON_HEDLEY_LIKELY(is_binary())) in swap() 3550 if (JSON_HEDLEY_LIKELY(is_binary())) in swap()
|
| /third_party/libcoap/src/ |
| D | coap_debug.c | 668 is_binary(int content_format) { in is_binary() function 977 if (is_binary(content_format) || !isprint(data[0]) || is_oscore_payload) { in coap_show_pdu()
|
| /third_party/json/include/nlohmann/detail/conversions/ |
| D | from_json.hpp | 298 if (JSON_HEDLEY_UNLIKELY(!j.is_binary())) in from_json()
|
| /third_party/openssl/test/ |
| D | ectest.c | 2155 int ret = 0, is_binary = 0; in cardinality_test() local 2171 is_binary = (EC_GROUP_get_field_type(g1) == NID_X9_62_characteristic_two_field); in cardinality_test() 2191 || !TEST_ptr(g2 = (is_binary) ? in cardinality_test() 2195 || !TEST_int_eq(0, is_binary) in cardinality_test()
|
| /third_party/json/docs/mkdocs/docs/features/ |
| D | binary_values.md | 66 j.is_binary(); // returns true
|
| /third_party/toybox/generated/ |
| D | globals.h | 605 int dir_num, size, is_binary, status, change, len[2]; member
|
| /third_party/json/tests/abi/include/nlohmann/ |
| D | json_v3_10_5.hpp | 4093 if (JSON_HEDLEY_UNLIKELY(!j.is_binary())) in from_json() 18457 return is_null() || is_string() || is_boolean() || is_number() || is_binary(); in is_primitive() 18532 constexpr bool is_binary() const noexcept in is_binary() function in nlohmann::basic_json 18656 return is_binary() ? m_value.binary : nullptr; in get_impl_ptr() 18662 return is_binary() ? m_value.binary : nullptr; in get_impl_ptr() 19057 if (!is_binary()) in get_binary() 19069 if (!is_binary()) in get_binary() 19446 else if (is_binary()) in erase() 19518 else if (is_binary()) in erase() 20437 if (JSON_HEDLEY_LIKELY(is_binary())) in swap() [all …]
|
| /third_party/json/single_include/nlohmann/ |
| D | json.hpp | 4854 if (JSON_HEDLEY_UNLIKELY(!j.is_binary())) in from_json() 20468 return is_null() || is_string() || is_boolean() || is_number() || is_binary(); in is_primitive() 20543 constexpr bool is_binary() const noexcept in is_binary() function in basic_json 20667 return is_binary() ? m_value.binary : nullptr; in get_impl_ptr() 20673 return is_binary() ? m_value.binary : nullptr; in get_impl_ptr() 21071 if (!is_binary()) in get_binary() 21083 if (!is_binary()) in get_binary() 21626 else if (is_binary()) in erase() 21697 else if (is_binary()) in erase() 22712 if (JSON_HEDLEY_LIKELY(is_binary())) in swap() [all …]
|
| /third_party/json/ |
| D | README.md | 1089 j.is_binary(); // true
|