Home
last modified time | relevance | path

Searched refs:ToASCIIString (Results 1 – 12 of 12) sorted by relevance

/third_party/node/tools/inspector_protocol/encoding/
Dencoding.cc19 std::string Status::ToASCIIString() const { in ToASCIIString() function in v8_inspector_protocol_encoding::Status
24 return ToASCIIString("JSON: unprocessed input remains"); in ToASCIIString()
26 return ToASCIIString("JSON: stack limit exceeded"); in ToASCIIString()
28 return ToASCIIString("JSON: no input"); in ToASCIIString()
30 return ToASCIIString("JSON: invalid token"); in ToASCIIString()
32 return ToASCIIString("JSON: invalid number"); in ToASCIIString()
34 return ToASCIIString("JSON: invalid string"); in ToASCIIString()
36 return ToASCIIString("JSON: unexpected array end"); in ToASCIIString()
38 return ToASCIIString("JSON: comma or array end expected"); in ToASCIIString()
40 return ToASCIIString("JSON: string literal expected"); in ToASCIIString()
[all …]
Dencoding.h129 std::string ToASCIIString() const;
132 std::string ToASCIIString(const char* msg) const;
Dencoding_test.cc130 EXPECT_EQ("OK", ok_status.ToASCIIString()); in TEST()
132 EXPECT_EQ("JSON: colon expected at position 42", json_error.ToASCIIString()); in TEST()
134 EXPECT_EQ("CBOR: trailing junk at position 21", cbor_error.ToASCIIString()); in TEST()
/third_party/node/deps/v8/third_party/inspector_protocol/crdtp/
Dstatus_test.cc16 EXPECT_EQ("OK", ok_status.ToASCIIString()); in TEST()
18 EXPECT_EQ("JSON: colon expected at position 42", json_error.ToASCIIString()); in TEST()
20 EXPECT_EQ("CBOR: trailing junk at position 21", cbor_error.ToASCIIString()); in TEST()
Dstatus_test_support.cc9 *os << status.ToASCIIString() << " (error: 0x" << std::hex in PrintTo()
Dstatus.cc123 std::string Status::ToASCIIString() const { in ToASCIIString() function in v8_crdtp::Status
Dstatus.h106 std::string ToASCIIString() const;
Dprotocol_core.cc40 msg += " - " + s.ToASCIIString(); in ErrorMessage()
Ddispatch.cc176 return DispatchResponse::ParseError(status_.ToASCIIString()); in DispatchError()
/third_party/node/tools/inspector_protocol/lib/
Dencoding_cpp.template27 std::string Status::ToASCIIString() const {
32 return ToASCIIString("JSON: unprocessed input remains");
34 return ToASCIIString("JSON: stack limit exceeded");
36 return ToASCIIString("JSON: no input");
38 return ToASCIIString("JSON: invalid token");
40 return ToASCIIString("JSON: invalid number");
42 return ToASCIIString("JSON: invalid string");
44 return ToASCIIString("JSON: unexpected array end");
46 return ToASCIIString("JSON: comma or array end expected");
48 return ToASCIIString("JSON: string literal expected");
[all …]
Dencoding_h.template138 std::string ToASCIIString() const;
141 std::string ToASCIIString(const char* msg) const;
/third_party/node/deps/v8/src/inspector/
Dv8-inspector-session-impl.cc379 v8_crdtp::DispatchResponse::ParseError(status.ToASCIIString())))); in dispatchProtocolMessage()