Home
last modified time | relevance | path

Searched refs:error_stream (Results 1 – 5 of 5) sorted by relevance

/external/chromium_org/ppapi/native_client/src/trusted/plugin/
Djson_manifest.cc119 nacl::stringstream error_stream; in IsValidDictionary() local
120 error_stream << parent_key << " property '" << container_key in IsValidDictionary()
123 *error_string = error_stream.str(); in IsValidDictionary()
143 nacl::stringstream error_stream; in IsValidDictionary() local
144 error_stream << parent_key << " property '" << container_key in IsValidDictionary()
147 *error_string = error_stream.str(); in IsValidDictionary()
177 nacl::stringstream error_stream; in IsValidUrlSpec() local
178 error_stream << "PNaCl-like NMF with application/x-nacl mimetype instead " in IsValidUrlSpec()
180 *error_string = error_stream.str(); in IsValidUrlSpec()
197 nacl::stringstream error_stream; in IsValidUrlSpec() local
[all …]
Dscriptable_plugin.cc30 nacl::stringstream error_stream; in Error() local
31 error_stream << call_name << ": " << error; in Error()
33 error_stream << " - " + exception->AsString(); in Error()
37 std::string str = error_stream.str(); in Error()
/external/chromium_org/chrome/browser/feedback/
Dfeedback_util.cc131 std::stringstream error_stream; in OnURLFetchComplete() local
137 error_stream << "Success"; in OnURLFetchComplete()
150 error_stream << "No connection to server."; in OnURLFetchComplete()
153 error_stream << "Client error: HTTP response code " << response_code; in OnURLFetchComplete()
155 error_stream << "Server error: HTTP response code " << response_code; in OnURLFetchComplete()
157 error_stream << "Unknown error: HTTP response code " << response_code; in OnURLFetchComplete()
162 source->GetURL() << ") status: " << error_stream.str(); in OnURLFetchComplete()
/external/chromium/chrome/browser/
Dbug_report_util.cc121 std::stringstream error_stream; in OnURLFetchComplete() local
126 error_stream << "Success"; in OnURLFetchComplete()
139 error_stream << "No connection to server."; in OnURLFetchComplete()
142 error_stream << "Client error: HTTP response code " << response_code; in OnURLFetchComplete()
144 error_stream << "Server error: HTTP response code " << response_code; in OnURLFetchComplete()
146 error_stream << "Unknown error: HTTP response code " << response_code; in OnURLFetchComplete()
151 << ") status: " << error_stream.str(); in OnURLFetchComplete()
/external/clang/lib/Tooling/
DTooling.cpp69 llvm::raw_svector_ostream error_stream(error_msg); in getCC1Arguments() local
70 Compilation->PrintJob(error_stream, Compilation->getJobs(), "; ", true); in getCC1Arguments()
72 << error_stream.str(); in getCC1Arguments()