Home
last modified time | relevance | path

Searched refs:fromJSON (Results 1 – 17 of 17) sorted by relevance

/external/llvm-project/clang-tools-extra/clangd/
DProtocol.h120 bool fromJSON(const llvm::json::Value &, URIForFile &, llvm::json::Path);
127 bool fromJSON(const llvm::json::Value &, TextDocumentIdentifier &,
144 bool fromJSON(const llvm::json::Value &, VersionedTextDocumentIdentifier &,
172 bool fromJSON(const llvm::json::Value &, Position &, llvm::json::Path);
198 bool fromJSON(const llvm::json::Value &, Range &, llvm::json::Path);
234 bool fromJSON(const llvm::json::Value &, TextEdit &, llvm::json::Path);
254 bool fromJSON(const llvm::json::Value &, TextDocumentItem &, llvm::json::Path);
261 bool fromJSON(const llvm::json::Value &E, TraceLevel &Out, llvm::json::Path);
264 inline bool fromJSON(const llvm::json::Value &, NoParams &, llvm::json::Path) { in fromJSON() function
314 bool fromJSON(const llvm::json::Value &, CompletionItemKind &,
[all …]
DProtocol.cpp54 bool fromJSON(const llvm::json::Value &E, URIForFile &R, llvm::json::Path P) { in fromJSON() function
88 bool fromJSON(const llvm::json::Value &Params, TextDocumentIdentifier &R, in fromJSON() function
100 bool fromJSON(const llvm::json::Value &Params, in fromJSON() function
103 return fromJSON(Params, static_cast<TextDocumentIdentifier &>(R), P) && O && in fromJSON()
107 bool fromJSON(const llvm::json::Value &Params, Position &R, in fromJSON() function
124 bool fromJSON(const llvm::json::Value &Params, Range &R, llvm::json::Path P) { in fromJSON() function
151 bool fromJSON(const llvm::json::Value &Params, TextDocumentItem &R, in fromJSON() function
158 bool fromJSON(const llvm::json::Value &Params, TextEdit &R, in fromJSON() function
177 bool fromJSON(const llvm::json::Value &E, TraceLevel &Out, llvm::json::Path P) { in fromJSON() function
195 bool fromJSON(const llvm::json::Value &E, SymbolKind &Out, llvm::json::Path P) { in fromJSON() function
[all …]
DClangdLSPServer.h228 if (!fromJSON(Raw, Result, Root)) { in parse()
/external/llvm-project/lldb/include/lldb/Target/
DTraceSessionFileParser.h136 bool fromJSON(const Value &value,
140 bool fromJSON(const Value &value,
144 bool fromJSON(const Value &value,
148 bool fromJSON(const Value &value,
152 bool fromJSON(const Value &value,
157 bool fromJSON(
163 bool fromJSON( in fromJSON() function
170 fromJSON(value, in fromJSON()
/external/llvm-project/lldb/source/Plugins/Trace/intel-pt/
DTraceIntelPTSessionFileParser.cpp62 if (!json::fromJSON(m_trace_session_file, session, root)) in Parse()
76 bool fromJSON(const Value &value, in fromJSON() function
84 bool fromJSON( in fromJSON() function
90 fromJSON( in fromJSON()
DTraceIntelPTSessionFileParser.h70 bool fromJSON(
76 bool fromJSON(const Value &value,
/external/llvm-project/lldb/source/Target/
DTraceSessionFileParser.cpp178 bool fromJSON(const Value &value, TraceSessionFileParser::JSONAddress &address, in fromJSON() function
188 bool fromJSON(const Value &value, TraceSessionFileParser::JSONModule &module, in fromJSON() function
197 bool fromJSON(const Value &value, TraceSessionFileParser::JSONThread &thread, in fromJSON() function
203 bool fromJSON(const Value &value, TraceSessionFileParser::JSONProcess &process, in fromJSON() function
210 bool fromJSON(const Value &value, in fromJSON() function
217 bool fromJSON(const Value &value, in fromJSON() function
DTrace.cpp39 bool fromJSON(const Value &value, JSONSimplePluginSettings &plugin_settings, in fromJSON() function
45 bool fromJSON(const Value &value, JSONSimpleTraceSession &session, Path path) { in fromJSON() function
65 if (!json::fromJSON(trace_session_file, json_session, root)) in FindPlugin()
/external/llvm-project/llvm/include/llvm/Support/
DJSON.h646 inline bool fromJSON(const Value &E, std::string &Out, Path P) { in fromJSON() function
654 inline bool fromJSON(const Value &E, int &Out, Path P) { in fromJSON() function
662 inline bool fromJSON(const Value &E, int64_t &Out, Path P) { in fromJSON() function
670 inline bool fromJSON(const Value &E, double &Out, Path P) { in fromJSON() function
678 inline bool fromJSON(const Value &E, bool &Out, Path P) { in fromJSON() function
686 inline bool fromJSON(const Value &E, std::nullptr_t &Out, Path P) { in fromJSON() function
695 bool fromJSON(const Value &E, llvm::Optional<T> &Out, Path P) { in fromJSON() function
701 if (!fromJSON(E, Result, P)) in fromJSON()
707 bool fromJSON(const Value &E, std::vector<T> &Out, Path P) { in fromJSON() function
712 if (!fromJSON((*A)[I], Out[I], P.index(I))) in fromJSON()
[all …]
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/
DJSON.h566 inline bool fromJSON(const Value &E, std::string &Out) { in fromJSON() function
573 inline bool fromJSON(const Value &E, int &Out) { in fromJSON() function
580 inline bool fromJSON(const Value &E, int64_t &Out) { in fromJSON() function
587 inline bool fromJSON(const Value &E, double &Out) { in fromJSON() function
594 inline bool fromJSON(const Value &E, bool &Out) { in fromJSON() function
601 template <typename T> bool fromJSON(const Value &E, llvm::Optional<T> &Out) { in fromJSON() function
607 if (!fromJSON(E, Result)) in fromJSON()
612 template <typename T> bool fromJSON(const Value &E, std::vector<T> &Out) { in fromJSON() function
617 if (!fromJSON((*A)[I], Out[I])) in fromJSON()
624 bool fromJSON(const Value &E, std::map<std::string, T> &Out) { in fromJSON() function
[all …]
/external/llvm-project/llvm/unittests/Support/
DJSONTest.cpp376 bool fromJSON(const Value &E, CustomStruct &R, Path P) { in fromJSON() function
407 ASSERT_TRUE(fromJSON(J, R, Root)); in TEST()
411 ASSERT_FALSE(fromJSON(J, R, Root)); in TEST()
424 EXPECT_FALSE(fromJSON(nullptr, V, Root)); in TEST()
428 EXPECT_FALSE(fromJSON(Object{}, V, Root)); in TEST()
431 EXPECT_FALSE(fromJSON(Object{{"str", 1}}, V, Root)); in TEST()
435 EXPECT_FALSE(fromJSON(Object{{"str", "1"}, {"int", "string"}}, V, Root)); in TEST()
439 EXPECT_FALSE(fromJSON(Object{{"str", "1"}, {"bool", "string"}}, V, Root)); in TEST()
/external/sl4a/Common/src/com/googlecode/android_scripting/jsonrpc/
DJsonDeserializable.java23 public JSONObject fromJSON() throws JSONException; in fromJSON() method
/external/llvm-project/lldb/source/Utility/
DTraceOptions.cpp16 bool fromJSON(const Value &value, TraceTypeInfo &info, Path path) { in fromJSON() function
/external/llvm-project/lldb/include/lldb/Utility/
DTraceOptions.h76 bool fromJSON(const Value &value, lldb_private::TraceTypeInfo &info, Path path);
/external/llvm-project/clang-tools-extra/clangd/benchmarks/
DIndexBenchmark.cpp60 if (!fromJSON(Item, Request, Root)) { in extractQueriesFromLogs()
/external/llvm-project/clang-tools-extra/clangd/index/
DIndex.cpp34 bool fromJSON(const llvm::json::Value &Parameters, FuzzyFindRequest &Request, in fromJSON() function
DIndex.h60 bool fromJSON(const llvm::json::Value &Value, FuzzyFindRequest &Request,