Searched refs:ParseError (Results 1 - 25 of 40) sorted by relevance

12

/external/volley/src/main/java/com/android/volley/
H A DParseError.java23 public class ParseError extends VolleyError { class in inherits:VolleyError
24 public ParseError() { } method in class:ParseError
26 public ParseError(NetworkResponse networkResponse) { method in class:ParseError
30 public ParseError(Throwable cause) { method in class:ParseError
/external/libmojo/mojo/public/tools/bindings/pylib/mojom_tests/parse/
H A Drun_parser.py15 from mojom.parse.parser import Parse, ParseError namespace
28 except ParseError, e:
H A Dparser_unittest.py65 parser.ParseError,
80 parser.ParseError,
97 parser.ParseError,
109 parser.ParseError,
126 parser.ParseError,
210 parser.ParseError,
223 parser.ParseError,
236 parser.ParseError,
252 parser.ParseError,
267 parser.ParseError,
[all...]
/external/ImageMagick/Magick++/demo/
H A Dzoom.cpp27 static void ParseError (int position, char **argv) function
68 ParseError(argv_index,argv);
112 ParseError(argv_index,argv);
124 ParseError(argv_index,argv);
137 ParseError(argv_index,argv);
142 ParseError(argv_index,argv);
146 ParseError(argv_index,argv);
150 ParseError(argv_index,argv);
/external/deqp/executor/
H A DxeDefs.hpp41 class ParseError : public Error class in namespace:xe
44 ParseError (const std::string& message) : Error(message) {} function in class:xe::ParseError
H A DxeContainerFormatParser.hpp47 class ContainerParseError : public ParseError
50 ContainerParseError (const std::string& message) : ParseError(message) {}
H A DxeTestResultParser.hpp47 class TestResultParseError : public ParseError
50 TestResultParseError (const std::string& message) : ParseError(message) {}
H A DxeXMLParser.hpp77 class ParseError : public xe::ParseError class in namespace:xe::xml
80 ParseError (const std::string& message) : xe::ParseError(message) {} function in class:xe::xml::ParseError
H A DxeTestLogParser.cpp146 catch (const xe::ParseError&)
/external/volley/src/main/java/com/android/volley/toolbox/
H A DJsonArrayRequest.java20 import com.android.volley.ParseError;
68 return Response.error(new ParseError(e));
70 return Response.error(new ParseError(je));
H A DJsonObjectRequest.java20 import com.android.volley.ParseError;
71 return Response.error(new ParseError(e));
73 return Response.error(new ParseError(je));
H A DImageRequest.java26 import com.android.volley.ParseError;
162 return Response.error(new ParseError(e));
211 return Response.error(new ParseError(response));
/external/protobuf/python/google/protobuf/
H A Djson_format.py76 class ParseError(Error): class in inherits:Error
293 raise ParseError('Failed to load JSON: duplicate key {0}.'.format(name))
309 ParseError: On JSON parsing problems.
319 raise ParseError('Failed to load JSON: {0}.'.format(str(e)))
332 ParseError: In case of problems converting.
340 raise ParseError(
344 raise ParseError(
352 raise ParseError('Message type "{0}" should not have multiple "{1}" '
369 raise ParseError('repeated field {0} must be in [] which is '
378 raise ParseError('nul
[all...]
/external/protobuf/ruby/lib/google/
H A Dprotobuf.rb39 class ParseError < Error; end class in class:Google.Protobuf
/external/protobuf/conformance/
H A Dconformance_ruby.rb48 rescue Google::Protobuf::ParseError => err
56 rescue Google::Protobuf::ParseError => err
/external/protobuf/python/google/protobuf/internal/
H A Dtext_format_test.py369 self.assertRaises(text_format.ParseError, text_format.Parse, text, message)
375 text_format.ParseError,
384 text_format.ParseError,
393 text_format.ParseError,
401 text_format.ParseError,
410 text_format.ParseError,
464 text_format.ParseError, ' is specified along with field '):
737 text_format.ParseError,
746 text_format.ParseError,
825 text_format.ParseError,
[all...]
H A Djson_format_test.py104 json_format.ParseError,
571 json_format.ParseError,
627 self.assertRaises(json_format.ParseError,
666 json_format.ParseError,
671 json_format.ParseError,
677 json_format.ParseError,
684 json_format.ParseError,
692 json_format.ParseError,
698 well_known_types.ParseError,
703 well_known_types.ParseError,
[all...]
H A Dwell_known_types.py62 class ParseError(Error): class in inherits:Error
135 ParseError: On parsing problems.
143 raise ParseError(
158 raise ParseError(
168 raise ParseError('Failed to parse timestamp: invalid trailing'
174 raise ParseError(
281 ParseError: On parsing problems.
284 raise ParseError(
298 raise ParseError(
/external/libmojo/mojo/public/tools/bindings/pylib/mojom/parse/
H A Dparser.py37 class ParseError(Error): class in inherits:Error
80 raise ParseError(self.filename,
84 raise ParseError(
94 raise ParseError(self.filename,
305 raise ParseError(self.filename, "Invalid handle type %r:" % p[3],
318 raise ParseError(self.filename, "Fixed array size %d invalid:" % value,
343 raise ParseError(self.filename, "Ordinal value %d too large:" % value,
427 raise ParseError(self.filename, "Unexpected end of file")
429 raise ParseError(self.filename, "Unexpected %r:" % e.value, lineno=e.lineno,
/external/protobuf/csharp/src/Google.Protobuf.Conformance/
H A DProgram.cs102 return new ConformanceResponse { ParseError = e.Message };
106 return new ConformanceResponse { ParseError = e.Message };
/external/llvm/utils/llvm-build/llvmbuild/
H A Dcomponentinfo.py14 class ParseError(Exception): class in inherits:Exception
395 raise ParseError("multiple values for scalar key: %r" % key)
401 raise ParseError("missing value for required string: %r" % key)
409 raise ParseError("invalid value(%r) for boolean property: %r" % (
416 raise ParseError("missing value for required boolean: %r" % key)
469 except ParseError:
/external/deqp/scripts/log/
H A Dlog_parser.py66 class ParseError(Exception): class in inherits:Exception
179 raise ParseError(self.filename, self.curLine, message)
/external/llvm/lib/Support/
H A DSpecialCaseList.cpp60 std::string ParseError; local
61 if (!SCL->parse(FileOrErr.get().get(), ParseError)) {
62 Error = (Twine("error parsing file '") + Path + "': " + ParseError).str();
/external/clang/include/clang/Format/
H A DFormat.h35 enum class ParseError { Success = 0, Error, Unsuitable }; class in namespace:clang::format
42 std::error_code make_error_code(ParseError e);
884 struct is_error_code_enum<clang::format::ParseError> : std::true_type {};
/external/ImageMagick/MagickCore/
H A Dxml-tree.c1595 "ParseError","unexpected closing tag </%s>",tag);
1782 OptionWarning,"ParseError","circular entity declaration &%s",n);
1798 OptionWarning,"ParseError","unclosed <!ATTLIST");
1821 OptionWarning,"ParseError","malformed <!ATTLIST");
1835 OptionWarning,"ParseError","malformed <!ATTLIST");
1857 OptionWarning,"ParseError","malformed <!ATTLIST");
2001 "ParseError","root tag missing");
2010 "ParseError","UTF16 to UTF8 failed");
2021 "ParseError","root tag missing");
2042 OptionWarning,"ParseError","roo
[all...]

Completed in 396 milliseconds

12