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

1 2

  /frameworks/volley/src/com/android/volley/
ParseError.java 26 public class ParseError extends VolleyError {
27 public ParseError() { }
29 public ParseError(NetworkResponse networkResponse) {
33 public ParseError(Throwable cause) {
  /external/chromium/third_party/libjingle/source/talk/p2p/base/
parsing.h 34 #include "talk/xmllite/xmlelement.h" // Needed to delete ParseError.extra.
43 struct ParseError {
50 ParseError() : extra(NULL) {}
52 ~ParseError() {
71 bool BadParse(const std::string& text, ParseError* err);
96 ParseError* error);
100 ParseError* error);
  /development/testrunner/
errors.py 44 class ParseError(MsgException):
  /external/chromium_org/third_party/android_testrunner/
errors.py 44 class ParseError(MsgException):
  /external/chromium_org/third_party/libjingle/source/talk/p2p/base/
parsing.h 35 #include "talk/xmllite/xmlelement.h" // Needed to delete ParseError.extra.
46 struct ParseError {
53 ParseError() : extra(NULL) {}
55 ~ParseError() {
74 bool BadParse(const std::string& text, ParseError* err);
142 ParseError* error);
146 ParseError* error);
  /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/chromium_org/third_party/yasm/source/patched-yasm/tools/python-yasm/pyxelator/
parse_core.py 69 class ParseError(Exception):
82 raise ParseError(reason,*blah)
  /external/chromium/chrome/common/extensions/
update_manifest.cc 35 void UpdateManifest::ParseError(const char* details, ...) {
203 ParseError("Empty xml");
214 ParseError("%s", xml_errors.c_str());
220 ParseError("Missing root node");
227 ParseError("Missing or incorrect xmlns on gupdate tag");
232 ParseError("Missing gupdate tag");
238 ParseError("Missing/incorrect protocol on gupdate tag "
260 ParseError("%s", error.c_str());
  /external/chromium_org/tools/site_compare/
command_line.py 27 class ParseError(Exception):
42 Should raise ParseError if it wants
282 except ParseError, e:
317 except ParseError, e:
397 raise ParseError("Unknown argument: '%s'" % argstr)
401 raise ParseError("Argument '%s' requires a value" % argstr)
422 raise ParseError
426 raise ParseError("'%s': '%s' does not exist" % (argstr, value))
434 raise ParseError
439 except ParseError, e
    [all...]
  /external/llvm/utils/llvm-build/llvmbuild/
componentinfo.py 11 class ParseError(Exception):
389 raise ParseError("multiple values for scalar key: %r" % key)
395 raise ParseError("missing value for required string: %r" % key)
403 raise ParseError("invalid value(%r) for boolean property: %r" % (
410 raise ParseError("missing value for required boolean: %r" % key)
463 except ParseError,e:
  /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/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/
ecmametadatapass.py 28 class ParseError(Exception):
222 ParseError: If the root context is popped.
230 raise ParseError(self._token)
261 ParseError: When the token appears in an invalid context.
424 except ParseError:
  /external/chromium_org/chrome/common/extensions/
update_manifest.cc 37 void UpdateManifest::ParseError(const char* details, ...) {
221 ParseError("Empty xml");
232 ParseError("%s", xml_errors.c_str());
238 ParseError("Missing root node");
245 ParseError("Missing or incorrect xmlns on gupdate tag");
250 ParseError("Missing gupdate tag");
256 ParseError("Missing/incorrect protocol on gupdate tag "
278 ParseError("%s", error.c_str());
  /external/chromium_org/third_party/closure_linter/closure_linter/
ecmametadatapass.py 28 class ParseError(Exception):
222 ParseError: If the root context is popped.
230 raise ParseError(self._token)
261 ParseError: When the token appears in an invalid context.
424 except ParseError:
  /external/chromium_org/third_party/protobuf/python/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/
text_format.py 52 class ParseError(Exception):
134 ParseError: On ASCII parsing problems.
149 ParseError: In case of ASCII parsing problems.
230 ParseError: In case of ASCII parsing problems.
379 ParseError: If the text couldn't be consumed.
402 ParseError: If an identifier couldn't be consumed.
417 ParseError: If a signed 32bit integer couldn't be consumed.
433 ParseError: If an unsigned 32bit integer couldn't be consumed.
449 ParseError: If a signed 64bit integer couldn't be consumed.
465 ParseError: If an unsigned 64bit integer couldn't be consumed
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/tests/
test_parser.py 21 from ..pgen2.parse import ParseError
41 except ParseError:
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/tests/
test_parser.py 21 from ..pgen2.parse import ParseError
41 except ParseError:
  /external/chromium_org/base/android/jni_generator/
jni_generator.py 22 class ParseError(Exception):
428 ParseError: if unable to parse.
444 raise ParseError('could not parse @CalledByNative method signature',
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/models/
test_expectations.py 60 class ParseError(Exception):
62 super(ParseError, self).__init__()
69 return 'ParseError(warnings=%s)' % self.warnings
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/xml/etree/
ElementTree.py 64 "parse", "ParseError",
138 class ParseError(SyntaxError):
642 # @exception ParseError If the parser fails to parse the document.
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/xml/etree/
ElementTree.py 64 "parse", "ParseError",
138 class ParseError(SyntaxError):
642 # @exception ParseError If the parser fails to parse the document.
    [all...]
  /external/chromium_org/chrome/browser/chromeos/cros/
native_network_parser.cc 742 network->SetError(ParseError(error_string));
810 ConnectionError NativeNetworkParser::ParseError(const std::string& error) {
    [all...]
  /external/llvm/lib/MC/MCParser/
AsmParser.cpp 104 bool ParseError;
108 ParseStatementInfo() : Opcode(~0U), ParseError(false), AsmRewrites(0) {}
110 : Opcode(~0), ParseError(false), AsmRewrites(rewrites) {}
    [all...]

Completed in 545 milliseconds

1 2