reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
298 create<json::Array>(std::move(Elements)); 303 create<json::Object>(std::move(Properties)); 313 create<std::string>(std::move(V)); 320 create<llvm::StringRef>(V); 335 create<bool>(B); 343 create<int64_t>(int64_t{I}); 351 create<double>(double{D});lib/Support/JSON.cpp
112 create<StringRef>(M.as<StringRef>()); 115 create<std::string>(M.as<std::string>()); 118 create<json::Object>(M.as<json::Object>()); 121 create<json::Array>(M.as<json::Array>()); 136 create<StringRef>(M.as<StringRef>()); 139 create<std::string>(std::move(M.as<std::string>())); 143 create<json::Object>(std::move(M.as<json::Object>())); 147 create<json::Array>(std::move(M.as<json::Array>()));