/external/jsoncpp/src/test_lib_json/ |
D | main.cpp | 13 #define kint32max Json::Value::maxInt 14 #define kint32min Json::Value::minInt 15 #define kuint32max Json::Value::maxUInt 16 #define kint64max Json::Value::maxInt64 17 #define kint64min Json::Value::minInt64 18 #define kuint64max Json::Value::maxUInt64 32 static inline double uint64ToDouble(Json::UInt64 value) { in uint64ToDouble() 36 static inline double uint64ToDouble(Json::UInt64 value) { in uint64ToDouble() 37 return static_cast<double>(Json::Int64(value / 2)) * 2.0 + in uint64ToDouble() 38 Json::Int64(value & 1); in uint64ToDouble() [all …]
|
/external/webrtc/webrtc/base/ |
D | json.h | 30 bool GetIntFromJson(const Json::Value& in, int* out); 31 bool GetUIntFromJson(const Json::Value& in, unsigned int* out); 32 bool GetStringFromJson(const Json::Value& in, std::string* out); 33 bool GetBoolFromJson(const Json::Value& in, bool* out); 34 bool GetDoubleFromJson(const Json::Value& in, double* out); 37 bool GetValueFromJsonArray(const Json::Value& in, size_t n, 38 Json::Value* out); 39 bool GetIntFromJsonArray(const Json::Value& in, size_t n, 41 bool GetUIntFromJsonArray(const Json::Value& in, size_t n, 43 bool GetStringFromJsonArray(const Json::Value& in, size_t n, [all …]
|
D | json.cc | 21 bool GetStringFromJson(const Json::Value& in, std::string* out) { in GetStringFromJson() 42 bool GetIntFromJson(const Json::Value& in, int* out) { in GetIntFromJson() 45 ret = in.isConvertibleTo(Json::intValue); in GetIntFromJson() 62 bool GetUIntFromJson(const Json::Value& in, unsigned int* out) { in GetUIntFromJson() 65 ret = in.isConvertibleTo(Json::uintValue); in GetUIntFromJson() 82 bool GetBoolFromJson(const Json::Value& in, bool* out) { in GetBoolFromJson() 85 ret = in.isConvertibleTo(Json::booleanValue); in GetBoolFromJson() 103 bool GetDoubleFromJson(const Json::Value& in, double* out) { in GetDoubleFromJson() 106 ret = in.isConvertibleTo(Json::realValue); in GetDoubleFromJson() 124 bool JsonArrayToVector(const Json::Value& value, in JsonArrayToVector() [all …]
|
D | json_unittest.cc | 19 static Json::Value in_s("foo"); 20 static Json::Value in_sn("99"); 21 static Json::Value in_si("-99"); 22 static Json::Value in_sb("true"); 23 static Json::Value in_sd("1.2"); 24 static Json::Value in_n(12); 25 static Json::Value in_i(-12); 26 static Json::Value in_u(34U); 27 static Json::Value in_b(true); 28 static Json::Value in_d(1.2); [all …]
|
/external/tensorflow/tensorflow/core/profiler/internal/ |
D | tfprof_timeline.cc | 42 Json::Value ChromeTraceFormatter::CreateEvent(const string& ph, in CreateEvent() 46 Json::Value event(Json::objectValue); in CreateEvent() 47 event["ph"] = Json::Value(ph); in CreateEvent() 48 event["cat"] = Json::Value(category); in CreateEvent() 49 event["name"] = Json::Value(name); in CreateEvent() 50 event["pid"] = Json::Int64(pid); in CreateEvent() 51 event["tid"] = Json::Int64(tid); in CreateEvent() 52 event["ts"] = Json::Int64(ts); in CreateEvent() 57 Json::Value event(Json::objectValue); in EmitPID() 58 event["name"] = Json::Value("process_name"); in EmitPID() [all …]
|
D | tfprof_timeline.h | 37 Json::Value CreateEvent(const string& ph, const string& category, 43 const string& category, const string& name, Json::Value args); 59 std::vector<Json::Value> events_; 60 std::vector<Json::Value> metadata_; 150 Json::Value args(Json::objectValue); in EmitTreeNode() 151 args["name"] = Json::Value(node->name()); in EmitTreeNode() 152 args["op"] = Json::Value(node->name()); in EmitTreeNode()
|
/external/perfetto/src/trace_processor/ |
D | json_trace_utils_unittest.cc | 30 ASSERT_EQ(CoerceToUint32(Json::Value(42)).value_or(0), 42); in TEST() 31 ASSERT_EQ(CoerceToUint32(Json::Value("42")).value_or(0), 42); in TEST() 32 ASSERT_EQ(CoerceToInt64(Json::Value(42.1)).value_or(-1), 42); in TEST() 36 ASSERT_EQ(CoerceToInt64(Json::Value(42)).value_or(-1), 42); in TEST() 37 ASSERT_EQ(CoerceToInt64(Json::Value("42")).value_or(-1), 42); in TEST() 38 ASSERT_EQ(CoerceToInt64(Json::Value(42.1)).value_or(-1), 42); in TEST() 39 ASSERT_FALSE(CoerceToInt64(Json::Value("foo")).has_value()); in TEST() 40 ASSERT_FALSE(CoerceToInt64(Json::Value("1234!")).has_value()); in TEST() 44 ASSERT_EQ(CoerceToNs(Json::Value(42)).value_or(-1), 42000); in TEST() 45 ASSERT_EQ(CoerceToNs(Json::Value("42")).value_or(-1), 42000); in TEST() [all …]
|
D | json_trace_utils.cc | 32 base::Optional<int64_t> CoerceToNs(const Json::Value& value) { in CoerceToNs() 34 case Json::realValue: in CoerceToNs() 36 case Json::uintValue: in CoerceToNs() 37 case Json::intValue: in CoerceToNs() 39 case Json::stringValue: { in CoerceToNs() 52 base::Optional<int64_t> CoerceToInt64(const Json::Value& value) { in CoerceToInt64() 54 case Json::realValue: in CoerceToInt64() 55 case Json::uintValue: in CoerceToInt64() 56 case Json::intValue: in CoerceToInt64() 58 case Json::stringValue: { in CoerceToInt64() [all …]
|
D | json_trace_utils.h | 24 namespace Json { 35 base::Optional<int64_t> CoerceToNs(const Json::Value& value); 36 base::Optional<int64_t> CoerceToInt64(const Json::Value& value); 37 base::Optional<uint32_t> CoerceToUint32(const Json::Value& value);
|
D | json_trace_tokenizer_unittest.cc | 32 Json::Value value; in TEST() 57 Json::Value value; in TEST() 72 Json::Value value; in TEST() 82 Json::Value value; in TEST()
|
D | json_trace_parser.h | 30 namespace Json { 39 base::Optional<int64_t> CoerceToInt64(const Json::Value& value); 40 base::Optional<uint32_t> CoerceToUint32(const Json::Value& value);
|
D | json_trace_tokenizer.cc | 37 Json::Value* value, in ReadOneJsonDict() 70 Json::Reader reader; in ReadOneJsonDict() 126 std::unique_ptr<Json::Value> value(new Json::Value()); in Parse()
|
/external/jsoncpp/src/jsontestrunner/ |
D | main.cpp | 63 printValueTree(FILE* fout, Json::Value& value, const std::string& path = ".") { in printValueTree() 64 if (value.hasComment(Json::commentBefore)) { in printValueTree() 65 fprintf(fout, "%s\n", value.getComment(Json::commentBefore).c_str()); in printValueTree() 68 case Json::nullValue: in printValueTree() 71 case Json::intValue: in printValueTree() 75 Json::valueToString(value.asLargestInt()).c_str()); in printValueTree() 77 case Json::uintValue: in printValueTree() 81 Json::valueToString(value.asLargestUInt()).c_str()); in printValueTree() 83 case Json::realValue: in printValueTree() 89 case Json::stringValue: in printValueTree() [all …]
|
/external/tensorflow/tensorflow/core/platform/cloud/ |
D | oauth_client.cc | 51 Status ReadJsonValue(const Json::Value& json, const string& name, in ReadJsonValue() 52 Json::Value* value) { in ReadJsonValue() 56 *value = json.get(name, Json::Value::null); in ReadJsonValue() 57 if (*value == Json::Value::null) { in ReadJsonValue() 64 Status ReadJsonString(const Json::Value& json, const string& name, in ReadJsonString() 66 Json::Value json_value; in ReadJsonString() 76 Status ReadJsonInt(const Json::Value& json, const string& name, int64* value) { in ReadJsonInt() 77 Json::Value json_value; in ReadJsonInt() 136 Json::Value root; in EncodeJwtClaim() 137 root["iss"] = Json::Value(client_email.begin(), client_email.end()); in EncodeJwtClaim() [all …]
|
D | oauth_client_test.cc | 69 Json::Value json; in TEST() 70 Json::Reader reader; in TEST() 97 Json::Value json; in TEST() 98 Json::Reader reader; in TEST() 185 Json::Value header_json, claim_json; in TEST() 187 EXPECT_EQ("RS256", header_json.get("alg", Json::Value::null).asString()); in TEST() 188 EXPECT_EQ("JWT", header_json.get("typ", Json::Value::null).asString()); in TEST() 190 header_json.get("kid", Json::Value::null).asString()); in TEST() 194 claim_json.get("iss", Json::Value::null).asString()); in TEST() 196 claim_json.get("scope", Json::Value::null).asString()); in TEST() [all …]
|
/external/jsoncpp/ |
D | NEWS.txt | 35 - Patch #10: BOOST_FOREACH compatibility. Made Json::iterator more 62 - Patch #16: Missing field copy in Json::Value::iterator causing infinite 94 Types Json::Int64 and Json::UInt64 have been added. They are aliased 98 Types Json::LargestInt and Json::LargestUInt have been added. They are 100 either Json::Int/Json::UInt or Json::Int64/Json::UInt64 respectively. 102 Json::Value::asInt() and Json::Value::asUInt() still returns plain 106 Json::Value::asInt64() and Json::Value::asUInt64() have been added 109 Json::Value::asLargestInt() and Json::Value::asLargestUInt() returns 117 Warning: Json::Value::asInt() and Json::Value::asUInt() now returns 125 - The type Json::ArrayIndex is used for indexes of a JSON value array. It [all …]
|
/external/shaderc/spirv-headers/tools/buildHeaders/jsoncpp/dist/json/ |
D | json.h | 199 namespace Json { 248 namespace Json { 299 namespace Json { 391 namespace Json { 510 typedef Json::UInt UInt; 511 typedef Json::Int Int; 513 typedef Json::UInt64 UInt64; 514 typedef Json::Int64 Int64; 516 typedef Json::LargestInt LargestInt; 517 typedef Json::LargestUInt LargestUInt; [all …]
|
/external/swiftshader/third_party/SPIRV-Headers/tools/buildHeaders/jsoncpp/dist/json/ |
D | json.h | 199 namespace Json { 248 namespace Json { 299 namespace Json { 391 namespace Json { 510 typedef Json::UInt UInt; 511 typedef Json::Int Int; 513 typedef Json::UInt64 UInt64; 514 typedef Json::Int64 Int64; 516 typedef Json::LargestInt LargestInt; 517 typedef Json::LargestUInt LargestUInt; [all …]
|
/external/deqp-deps/SPIRV-Headers/tools/buildHeaders/jsoncpp/dist/json/ |
D | json.h | 199 namespace Json { 248 namespace Json { 299 namespace Json { 391 namespace Json { 510 typedef Json::UInt UInt; 511 typedef Json::Int Int; 513 typedef Json::UInt64 UInt64; 514 typedef Json::Int64 Int64; 516 typedef Json::LargestInt LargestInt; 517 typedef Json::LargestUInt LargestUInt; [all …]
|
/external/protobuf/conformance/third_party/jsoncpp/ |
D | json.h | 227 namespace Json { 276 namespace Json { 327 namespace Json { 419 namespace Json { 553 typedef Json::UInt UInt; 554 typedef Json::Int Int; 556 typedef Json::UInt64 UInt64; 557 typedef Json::Int64 Int64; 559 typedef Json::LargestInt LargestInt; 560 typedef Json::LargestUInt LargestUInt; [all …]
|
/external/deqp-deps/SPIRV-Headers/tools/buildHeaders/ |
D | jsonToSpirv.cpp | 252 Json::Reader reader; in jsonToSpirv() 253 Json::Value root; in jsonToSpirv() 263 const auto getCaps = [](const Json::Value& object) { in jsonToSpirv() 276 const auto getExts = [](const Json::Value& object) { in jsonToSpirv() 288 const Json::Value insts = root["instructions"]; in jsonToSpirv() 317 …const auto populateEnumValues = [&getCaps,&getExts](EnumValues* dest, const Json::Value& source, b… in jsonToSpirv() 320 auto getValue = [&bitEnum](const Json::Value& enumerant) { in jsonToSpirv() 344 const Json::Value& paramsJson = enumerant["parameters"]; in jsonToSpirv() 362 … spv::EnumValues* enumValues, const Json::Value& operandEnum, const std::string& category) { in jsonToSpirv() 369 const Json::Value operandEnums = root["operand_kinds"]; in jsonToSpirv()
|
/external/swiftshader/third_party/SPIRV-Headers/tools/buildHeaders/ |
D | jsonToSpirv.cpp | 252 Json::Reader reader; in jsonToSpirv() 253 Json::Value root; in jsonToSpirv() 263 const auto getCaps = [](const Json::Value& object) { in jsonToSpirv() 276 const auto getExts = [](const Json::Value& object) { in jsonToSpirv() 288 const Json::Value insts = root["instructions"]; in jsonToSpirv() 317 …const auto populateEnumValues = [&getCaps,&getExts](EnumValues* dest, const Json::Value& source, b… in jsonToSpirv() 320 auto getValue = [&bitEnum](const Json::Value& enumerant) { in jsonToSpirv() 344 const Json::Value& paramsJson = enumerant["parameters"]; in jsonToSpirv() 362 … spv::EnumValues* enumValues, const Json::Value& operandEnum, const std::string& category) { in jsonToSpirv() 369 const Json::Value operandEnums = root["operand_kinds"]; in jsonToSpirv()
|
/external/shaderc/spirv-headers/tools/buildHeaders/ |
D | jsonToSpirv.cpp | 252 Json::Reader reader; in jsonToSpirv() 253 Json::Value root; in jsonToSpirv() 263 const auto getCaps = [](const Json::Value& object) { in jsonToSpirv() 276 const auto getExts = [](const Json::Value& object) { in jsonToSpirv() 288 const Json::Value insts = root["instructions"]; in jsonToSpirv() 317 …const auto populateEnumValues = [&getCaps,&getExts](EnumValues* dest, const Json::Value& source, b… in jsonToSpirv() 320 auto getValue = [&bitEnum](const Json::Value& enumerant) { in jsonToSpirv() 344 const Json::Value& paramsJson = enumerant["parameters"]; in jsonToSpirv() 362 … spv::EnumValues* enumValues, const Json::Value& operandEnum, const std::string& category) { in jsonToSpirv() 369 const Json::Value operandEnums = root["operand_kinds"]; in jsonToSpirv()
|
/external/tensorflow/tensorflow/contrib/cloud/kernels/ |
D | gcs_config_ops.cc | 89 Json::Value json; in Compute() 90 Json::Reader reader; in Compute() 117 ConstantAuthProvider(const Json::Value& json, in ConstantAuthProvider() 125 ConstantAuthProvider(const Json::Value& json, Env* env) in ConstantAuthProvider() 157 Json::Value json_;
|
/external/tensorflow/tensorflow/core/profiler/rpc/client/ |
D | trace_events_to_json_test.cc | 34 Json::Value ToJsonValue(const string& json_str) { in ToJsonValue() 35 Json::Value json; in ToJsonValue() 36 Json::Reader reader; in ToJsonValue()
|