HomeSort by relevance Sort by last modified time
    Searched defs:ParseError (Results 1 - 25 of 52) sorted by null

1 2 3

  /external/volley/src/main/java/com/android/volley/
ParseError.java 23 public class ParseError extends VolleyError {
24 public ParseError() { }
26 public ParseError(NetworkResponse networkResponse) {
30 public ParseError(Throwable cause) {
  /development/testrunner/
errors.py 44 class ParseError(MsgException):
  /external/deqp/executor/
xeDefs.hpp 41 class ParseError : public Error
44 ParseError (const std::string& message) : Error(message) {}
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/pgen2/
parse.py 16 class ParseError(Exception):
35 if p.addtoken(...): # parse a token; may raise ParseError
51 the ParseError exception. There is no error recovery; the parser
155 raise ParseError("too much input",
159 raise ParseError("bad input", type, value, context)
172 raise ParseError("bad token", type, value, context)
  /external/protobuf/ruby/lib/google/
protobuf.rb 39 class ParseError < Error; end
  /prebuilts/gdb/darwin-x86/lib/python2.7/lib2to3/pgen2/
parse.py 16 class ParseError(Exception):
35 if p.addtoken(...): # parse a token; may raise ParseError
51 the ParseError exception. There is no error recovery; the parser
155 raise ParseError("too much input",
159 raise ParseError("bad input", type, value, context)
172 raise ParseError("bad token", type, value, context)
  /prebuilts/gdb/linux-x86/lib/python2.7/lib2to3/pgen2/
parse.py 16 class ParseError(Exception):
35 if p.addtoken(...): # parse a token; may raise ParseError
51 the ParseError exception. There is no error recovery; the parser
155 raise ParseError("too much input",
159 raise ParseError("bad input", type, value, context)
172 raise ParseError("bad token", type, value, context)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/pgen2/
parse.py 16 class ParseError(Exception):
35 if p.addtoken(...): # parse a token; may raise ParseError
51 the ParseError exception. There is no error recovery; the parser
155 raise ParseError("too much input",
159 raise ParseError("bad input", type, value, context)
172 raise ParseError("bad token", type, value, context)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/pgen2/
parse.py 16 class ParseError(Exception):
35 if p.addtoken(...): # parse a token; may raise ParseError
51 the ParseError exception. There is no error recovery; the parser
155 raise ParseError("too much input",
159 raise ParseError("bad input", type, value, context)
172 raise ParseError("bad token", type, value, context)
  /external/ImageMagick/Magick++/demo/
zoom.cpp 27 static void ParseError (int position, char **argv)
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);
  /prebuilts/go/darwin-x86/src/encoding/csv/
reader.go 63 // A ParseError is returned for parsing errors.
65 type ParseError struct {
71 func (e *ParseError) Error() string {
75 // These are the errors that can be returned in ParseError.Error
135 // error creates a new ParseError based on err.
137 return &ParseError{
  /prebuilts/go/linux-x86/src/encoding/csv/
reader.go 63 // A ParseError is returned for parsing errors.
65 type ParseError struct {
71 func (e *ParseError) Error() string {
75 // These are the errors that can be returned in ParseError.Error
135 // error creates a new ParseError based on err.
137 return &ParseError{
  /build/soong/cc/
gen_stub_libs.py 159 class ParseError(RuntimeError):
207 raise ParseError(
224 raise ParseError(
237 raise ParseError('Unknown visiblity label: ' + visibility)
243 raise ParseError('Unexpected EOF in version block.')
248 raise ParseError(
251 raise ParseError(
  /device/linaro/bootloader/edk2/BaseTools/Source/C/Common/
ParseInf.c 234 BOOLEAN ParseError;
255 ParseError = FALSE;
319 ParseError = TRUE;
347 !ParseError &&
361 if (ParseError) {
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/Common/
ParseInf.c 229 BOOLEAN ParseError;
250 ParseError = FALSE;
309 ParseError = TRUE;
325 !ParseError &&
339 if (ParseError) {
383 BOOLEAN ParseError;
402 ParseError = FALSE;
454 ParseError = TRUE;
470 !ParseError &&
484 if (ParseError) {
    [all...]
  /external/deqp/scripts/log/
log_parser.py 66 class ParseError(Exception):
125 self.parseError("Invalid #sessionInfo")
131 self.parseError("Invalid #beginTestCaseResult")
136 self.parseError("Invalid #endTestCaseResult")
142 self.parseError("Invalid #terminateTestCaseResult")
168 self.parseError("Expected 1 <Result>, found %d" % len(resultItems))
178 def parseError (self, message):
179 raise ParseError(self.filename, self.curLine, message)
  /external/llvm/lib/Support/
SpecialCaseList.cpp 60 std::string ParseError;
61 if (!SCL->parse(FileOrErr.get().get(), ParseError)) {
62 Error = (Twine("error parsing file '") + Path + "': " + ParseError).str();
  /build/blueprint/parser/
parser.go 31 type ParseError struct {
36 func (e *ParseError) Error() string {
128 err = &ParseError{
  /build/soong/androidmk/parser/
parser.go 15 type ParseError struct {
20 func (e *ParseError) Error() string {
90 err := &ParseError{
  /external/llvm/utils/llvm-build/llvmbuild/
componentinfo.py 14 class ParseError(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:
  /frameworks/base/media/mca/
structgen.py 98 class ParseError:
235 raise ParseError(lineno, "Unknown field type '%s'!" % typestr)
238 raise ParseError(lineno, "Unknown command: '%s'!" % cmd)
244 raise ParseError(lineno, "Required field '@name' missing!")
246 raise ParseError(lineno, "Required field '@package' missing!")
248 raise ParseError(lineno, "Required field '@libname' missing!")
257 raise ParseError(lineno, "Not enough arguments specifed for command '%s'! Expected %d, " \
260 raise ParseError(lineno, "Too many arguments specifed for command '%s'! Expected %d, " \
  /external/nanopb-c/generator/google/protobuf/
text_format.py 54 class ParseError(Exception):
154 ParseError: On ASCII parsing problems.
169 ParseError: In case of ASCII parsing problems.
250 ParseError: In case of ASCII parsing problems.
375 ParseError: If the text couldn't be consumed.
387 ParseError: If an identifier couldn't be consumed.
402 ParseError: If a signed 32bit integer couldn't be consumed.
418 ParseError: If an unsigned 32bit integer couldn't be consumed.
434 ParseError: If a signed 64bit integer couldn't be consumed.
450 ParseError: If an unsigned 64bit integer couldn't be consumed
    [all...]
  /external/protobuf/python/google/protobuf/
json_format.py 76 class ParseError(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('null is not allowed to be used as an element
    [all...]
  /prebuilts/go/darwin-x86/src/net/
net.go 511 // A ParseError is the error type of literal network address parsers.
512 type ParseError struct {
521 func (e *ParseError) Error() string { return "invalid " + e.Type + ": " + e.Text }
  /prebuilts/go/linux-x86/src/net/
net.go 511 // A ParseError is the error type of literal network address parsers.
512 type ParseError struct {
521 func (e *ParseError) Error() string { return "invalid " + e.Type + ": " + e.Text }

Completed in 1637 milliseconds

1 2 3