Home | History | Annotate | Download | only in expectations

Lines Matching refs:string

8 #include <string>
17 // string and reports information to its Delegate as it's processing the
38 // Called when the input string is not well-formed. Parsing will stop after
40 virtual void OnSyntaxError(const std::string& message) = 0;
45 virtual void OnDataError(const std::string& message) = 0;
49 Parser(Delegate* delegate, const std::string& input);
52 // Runs the parser of the input string.
95 // the end of the string, with the data stored in |extracted_string_|.
107 StateFunc SyntaxError(const std::string& message);
111 void DataError(const std::string& error);
116 // The input string.
117 std::string input_;