| /src/external/gpl3/gcc.old/dist/gcc/ |
| json.h | 0 /* JSON trees 24 /* Implementation of JSON, a lightweight data-interchange format. 26 See http://www.json.org/ 30 Supports creating a DOM-like tree of json::value *, and then dumping 31 json::value * to text. */ 33 namespace json namespace 36 /* Forward decls of json::value and its subclasses (using indentation 47 /* An enum for discriminating the subclasses of json::value. */ 51 /* class json::object. */ 54 /* class json::array. * [all...] |
| json.h | 0 /* JSON trees 24 /* Implementation of JSON, a lightweight data-interchange format. 26 See http://www.json.org/ 30 Supports creating a DOM-like tree of json::value *, and then dumping 31 json::value * to text. */ 33 namespace json namespace 36 /* Forward decls of json::value and its subclasses (using indentation 47 /* An enum for discriminating the subclasses of json::value. */ 51 /* class json::object. */ 54 /* class json::array. * [all...] |
| diagnostic.h | 62 /* JSON-based output. */ 161 namespace json { class value; } namespace 300 json::value *(*make_json_for_path) (diagnostic_context *, const diagnostic_path *); 585 extern json::value *json_from_expanded_location (diagnostic_context *context,
|
| diagnostic.h | 62 /* JSON-based output. */ 161 namespace json { class value; } namespace 300 json::value *(*make_json_for_path) (diagnostic_context *, const diagnostic_path *); 585 extern json::value *json_from_expanded_location (diagnostic_context *context,
|
| /src/common/lib/libprop/ |
| prop_number.c | 203 const bool json = ctx->poec_format == PROP_FORMAT_JSON; local 209 * For unsigned numbers, we output in hex for XML, decimal for JSON. 214 json ? "%" PRIu64 : "0x%" PRIx64, 686 /* JSON numbers are always base-10. */ 706 /* No hex numbers in JSON. */ 716 /* No end tag to advance over in JSON. */
|
| prop_number.c | 203 const bool json = ctx->poec_format == PROP_FORMAT_JSON; local 209 * For unsigned numbers, we output in hex for XML, decimal for JSON. 214 json ? "%" PRIu64 : "0x%" PRIx64, 686 /* JSON numbers are always base-10. */ 706 /* No hex numbers in JSON. */ 716 /* No end tag to advance over in JSON. */
|
| /src/external/apache2/llvm/dist/llvm/lib/Support/ |
| JSON.cpp | 1 //=== JSON.cpp - JSON value, parsing and serialization - C++ -----------*-===// 9 #include "llvm/Support/JSON.h" 18 namespace json { namespace in namespace:llvm 63 const json::Object *Object::getObject(StringRef K) const { 68 json::Object *Object::getObject(StringRef K) { 73 const json::Array *Object::getArray(StringRef K) const { 78 json::Array *Object::getArray(StringRef K) { 103 : Value(json::Array(Elements)) {} 121 create<json::Object>(M.as<json::Object>()) [all...] |
| JSON.cpp | 1 //=== JSON.cpp - JSON value, parsing and serialization - C++ -----------*-===// 9 #include "llvm/Support/JSON.h" 18 namespace json { namespace in namespace:llvm 63 const json::Object *Object::getObject(StringRef K) const { 68 json::Object *Object::getObject(StringRef K) { 73 const json::Array *Object::getArray(StringRef K) const { 78 json::Array *Object::getArray(StringRef K) { 103 : Value(json::Array(Elements)) {} 121 create<json::Object>(M.as<json::Object>()) [all...] |
| /src/external/bsd/wpa/dist/src/utils/ |
| utils_module_tests.c | 20 #include "utils/json.h" 847 const char *json; member in struct:json_test_data 895 wpa_printf(MSG_INFO, "JSON tests"); 901 root = json_parse(test->json, os_strlen(test->json)); 903 wpa_printf(MSG_INFO, "JSON test %u failed", i); 909 "JSON test %u tree mismatch: %s %s",
|
| utils_module_tests.c | 20 #include "utils/json.h" 847 const char *json; member in struct:json_test_data 895 wpa_printf(MSG_INFO, "JSON tests"); 901 root = json_parse(test->json, os_strlen(test->json)); 903 wpa_printf(MSG_INFO, "JSON test %u failed", i); 909 "JSON test %u tree mismatch: %s %s",
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/Support/ |
| JSON.h | 1 //===--- JSON.h - JSON values, parsing and serialization -------*- C++ -*-===// 10 /// This file supports working with JSON data. 14 /// - classes which hold dynamically-typed parsed JSON structures 16 /// See json::Value, and the related types json::Object and json::Array. 18 /// - functions to parse JSON text into Values, and to serialize Values to text. 21 /// - a convention and helpers for mapping between json::Value and user-defined 24 /// - an output API json::OStream which can emit JSON without materializin 58 namespace json { namespace in namespace:llvm [all...] |
| JSON.h | 1 //===--- JSON.h - JSON values, parsing and serialization -------*- C++ -*-===// 10 /// This file supports working with JSON data. 14 /// - classes which hold dynamically-typed parsed JSON structures 16 /// See json::Value, and the related types json::Object and json::Array. 18 /// - functions to parse JSON text into Values, and to serialize Values to text. 21 /// - a convention and helpers for mapping between json::Value and user-defined 24 /// - an output API json::OStream which can emit JSON without materializin 58 namespace json { namespace in namespace:llvm [all...] |
| /src/external/gpl3/binutils/dist/ld/ |
| ldelf.c | 1530 const char *json; local 1538 json = t->o->package_metadata.json; 1568 memcpy (json_bits, json, strlen(json)); 1604 json_t *json = json_loads (ldelf_emit_note_fdo_package_metadata, local 1606 if (!json) 1609 "JSON, ignoring: %s\n"), 1614 json_decref (json); 1630 t->o->package_metadata.json = ldelf_emit_note_fdo_package_metadata [all...] |
| ldelf.c | 1530 const char *json; local 1538 json = t->o->package_metadata.json; 1568 memcpy (json_bits, json, strlen(json)); 1604 json_t *json = json_loads (ldelf_emit_note_fdo_package_metadata, local 1606 if (!json) 1609 "JSON, ignoring: %s\n"), 1614 json_decref (json); 1630 t->o->package_metadata.json = ldelf_emit_note_fdo_package_metadata [all...] |
| /src/external/gpl3/binutils.old/dist/ld/ |
| ldelf.c | 1531 const char *json; local 1539 json = t->o->package_metadata.json; 1569 memcpy (json_bits, json, strlen(json)); 1605 json_t *json = json_loads (ldelf_emit_note_fdo_package_metadata, local 1607 if (!json) 1610 "JSON, ignoring: %s\n"), 1615 json_decref (json); 1631 t->o->package_metadata.json = ldelf_emit_note_fdo_package_metadata [all...] |
| ldelf.c | 1531 const char *json; local 1539 json = t->o->package_metadata.json; 1569 memcpy (json_bits, json, strlen(json)); 1605 json_t *json = json_loads (ldelf_emit_note_fdo_package_metadata, local 1607 if (!json) 1610 "JSON, ignoring: %s\n"), 1615 json_decref (json); 1631 t->o->package_metadata.json = ldelf_emit_note_fdo_package_metadata [all...] |
| /src/external/bsd/wpa/dist/src/common/ |
| dpp.c | 15 #include "utils/json.h" 784 const char *json) 803 json_len = os_strlen(json); 804 wpa_hexdump_ascii(MSG_DEBUG, "DPP: configRequest JSON", json, json_len); 879 wpabuf_put_data(clear, json, json_len); 943 const char *json) 947 conf_req = dpp_build_conf_req_attr(auth, json); 979 struct wpabuf *buf = NULL, *json = NULL; local 1010 json = wpabuf_alloc(len) 3784 struct wpabuf *json; local 3815 struct wpabuf *msg = NULL, *clear = NULL, *json; local [all...] |
| dpp.c | 15 #include "utils/json.h" 784 const char *json) 803 json_len = os_strlen(json); 804 wpa_hexdump_ascii(MSG_DEBUG, "DPP: configRequest JSON", json, json_len); 879 wpabuf_put_data(clear, json, json_len); 943 const char *json) 947 conf_req = dpp_build_conf_req_attr(auth, json); 979 struct wpabuf *buf = NULL, *json = NULL; local 1010 json = wpabuf_alloc(len) 3784 struct wpabuf *json; local 3815 struct wpabuf *msg = NULL, *clear = NULL, *json; local [all...] |
| /src/external/cddl/osnet/dist/uts/common/dtrace/ |
| dtrace.c | 3913 * This function possesses just enough knowledge about JSON to extract a single 3914 * value from a JSON string and store it in the scratch buffer. It is able 3917 * elemlist is a list of JSON keys, stored as packed NUL-terminated strings, to 3934 * The set of states for the state machine closely matches the JSON 3935 * specification (http://json.org/). Briefly: 3963 * Processes a Number literal from the JSON, including any exponent 3968 * Processes a "true", "false" or "null" literal in the JSON. 3972 * Processes a String literal from the JSON, whether the String denotes 3990 dtrace_json(uint64_t size, uintptr_t json, char *elemlist, int nelems, 4006 for (cur = json; cur < json + size; cur++) 5272 uintptr_t json = tupregs[0].dttk_value; local [all...] |
| dtrace.c | 3913 * This function possesses just enough knowledge about JSON to extract a single 3914 * value from a JSON string and store it in the scratch buffer. It is able 3917 * elemlist is a list of JSON keys, stored as packed NUL-terminated strings, to 3934 * The set of states for the state machine closely matches the JSON 3935 * specification (http://json.org/). Briefly: 3963 * Processes a Number literal from the JSON, including any exponent 3968 * Processes a "true", "false" or "null" literal in the JSON. 3972 * Processes a String literal from the JSON, whether the String denotes 3990 dtrace_json(uint64_t size, uintptr_t json, char *elemlist, int nelems, 4006 for (cur = json; cur < json + size; cur++) 5272 uintptr_t json = tupregs[0].dttk_value; local [all...] |
| /src/external/gpl3/binutils/dist/bfd/ |
| elf-bfd.h | 2071 const char *json; 2069 const char *json; member in struct:output_elf_obj_tdata::__anon7341
|
| elf-bfd.h | 2071 const char *json; 2069 const char *json; member in struct:output_elf_obj_tdata::__anon7341
|
| /src/external/gpl3/binutils.old/dist/bfd/ |
| elf-bfd.h | 2021 const char *json; 2019 const char *json; member in struct:output_elf_obj_tdata::__anon8825
|
| elf-bfd.h | 2021 const char *json; 2019 const char *json; member in struct:output_elf_obj_tdata::__anon8825
|