Home
last modified time | relevance | path

Searched refs:str_stream (Results 1 – 3 of 3) sorted by relevance

/external/antlr/runtime/Cpp/include/
Dantlr3exception.inl229 StringStreamType& str_stream ) const
240 str_stream << " : syntax error...\n";
251 str_stream << " : Extraneous input...";
257 str_stream << " : Extraneous input - expected <EOF>\n";
261 str_stream << " : Extraneous input - expected "
274 str_stream << " : Missing token ("
281 str_stream <<" : Missing <EOF>\n";
285 str_stream << " : Missing " << tokenNames[BaseType::m_expecting] <<" \n";
295 str_stream << " : cannot match to any predicted input...\n";
309 str_stream << " : unexpected input...\n expected one of : ";
[all …]
Dantlr3exception.hpp202 …virtual void displayRecognitionError( ANTLR_UINT8** tokenNames, StringStreamType& str_stream) cons…
/external/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
DScriptInterpreterPython.cpp3058 StreamString str_stream; in GetDocumentationForItem() local
3059 str_stream << "Function " << item in GetDocumentationForItem()
3061 dest = std::string(str_stream.GetString()); in GetDocumentationForItem()