HomeSort by relevance Sort by last modified time
    Searched refs:ParseError (Results 101 - 125 of 164) sorted by null

1 2 3 45 6 7

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/pgen2/
driver.py 82 raise parse.ParseError("incomplete input",
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/
patcomp.py 61 except parse.ParseError as e:
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/pgen2/
driver.py 82 raise parse.ParseError("incomplete input",
  /test/framework/harnesses/host_controller/command_processor/
command_config.py 107 except text_format.ParseError as e:
  /tools/acloud/public/
config.py 231 except text_format.ParseError as e:
  /prebuilts/go/darwin-x86/src/time/
format.go 656 // ParseError describes a problem parsing a time string.
657 type ParseError struct {
669 // Error returns the string representation of a ParseError.
670 func (e *ParseError) Error() string {
813 return Time{}, &ParseError{alayout, avalue, prefix, value, ""}
817 return Time{}, &ParseError{alayout, avalue, "", value, ": extra text: " + value}
1035 return Time{}, &ParseError{alayout, avalue, stdstr, value, ": " + rangeErrString + " out of range"}
1038 return Time{}, &ParseError{alayout, avalue, stdstr, value, ""}
1049 return Time{}, &ParseError{alayout, avalue, "", value, ": day out of range"}
    [all...]
  /prebuilts/go/linux-x86/src/time/
format.go 656 // ParseError describes a problem parsing a time string.
657 type ParseError struct {
669 // Error returns the string representation of a ParseError.
670 func (e *ParseError) Error() string {
813 return Time{}, &ParseError{alayout, avalue, prefix, value, ""}
817 return Time{}, &ParseError{alayout, avalue, "", value, ": extra text: " + value}
1035 return Time{}, &ParseError{alayout, avalue, stdstr, value, ": " + rangeErrString + " out of range"}
1038 return Time{}, &ParseError{alayout, avalue, stdstr, value, ""}
1049 return Time{}, &ParseError{alayout, avalue, "", value, ": day out of range"}
    [all...]
  /build/blueprint/parser/
parser.go 31 type ParseError struct {
36 func (e *ParseError) Error() string {
128 err = &ParseError{
  /external/golang-protobuf/_conformance/
conformance.go 121 ParseError: err.Error(),
  /tools/metalava/src/test/java/com/android/tools/metalava/
SystemServiceCheckTest.kt 296 TESTROOT/manifest.xml: error: Failed to parse TESTROOT/manifest.xml: The markup in the document preceding the root element must be well-formed. [ParseError:1]
  /development/testrunner/coverage/
coverage.py 256 except errors.ParseError:
  /external/deqp/executor/
xeBatchExecutor.cpp 293 catch (const ParseError& e)
  /external/python/cpython2/Lib/test/
test_xml_etree.py 746 ... except ET.ParseError, v:
898 ParseError: unknown encoding: line 1, column 30
1031 ParseError: undefined entity: line 1, column 10
1035 ParseError: undefined entity &entity;: line 5, column 10
1052 >>> issubclass(ET.ParseError, SyntaxError)
1064 except ET.ParseError:
    [all...]
  /external/protobuf/csharp/src/Google.Protobuf.Conformance/
Conformance.cs 191 new pbr::GeneratedClrTypeInfo(typeof(global::Conformance.ConformanceResponse), global::Conformance.ConformanceResponse.Parser, new[]{ "ParseError", "SerializeError", "RuntimeError", "ProtobufPayload", "JsonPayload", "Skipped" }, new[]{ "Result" }, null, null),
436 case ResultOneofCase.ParseError:
437 ParseError = other.ParseError;
471 public string ParseError {
472 get { return resultCase_ == ResultOneofCase.ParseError ? (string) result_ : ""; }
475 resultCase_ = ResultOneofCase.ParseError;
555 ParseError = 1,
583 if (ParseError != other.ParseError) return false
    [all...]
  /prebuilts/go/darwin-x86/src/net/
ip.go 366 return &ParseError{Type: "IP address", Text: s}
670 return nil, nil, &ParseError{Type: "CIDR address", Text: s}
681 return nil, nil, &ParseError{Type: "CIDR address", Text: s}
  /prebuilts/go/linux-x86/src/net/
ip.go 366 return &ParseError{Type: "IP address", Text: s}
670 return nil, nil, &ParseError{Type: "CIDR address", Text: s}
681 return nil, nil, &ParseError{Type: "CIDR address", Text: s}
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_xml_etree.py 739 ... except ET.ParseError, v:
1017 ParseError: undefined entity: line 1, column 10
1021 ParseError: undefined entity &entity;: line 5, column 10
1038 >>> issubclass(ET.ParseError, SyntaxError)
1050 except ET.ParseError:
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/TargetTool/
TargetTool.py 52 raise ParseError('LoadTargetTxtFile() : No Target.txt file exists.')
  /external/clang/unittests/AST/
SourceLocationTest.cpp 31 TEST(MatchVerifier, ParseError) {
  /external/python/cpython3/Lib/test/
test_xml_etree.py 603 with self.assertRaises(ET.ParseError) as cm:
614 with self.assertRaises(ET.ParseError) as cm:
790 self.assertRaises(ET.ParseError, ET.XML, bxml(encoding))
829 with self.assertRaises(ET.ParseError) as cm:
834 with self.assertRaises(ET.ParseError) as cm:
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_xml_etree.py 739 ... except ET.ParseError, v:
1018 ParseError: undefined entity: line 1, column 10
1022 ParseError: undefined entity &entity;: line 5, column 10
1039 >>> issubclass(ET.ParseError, SyntaxError)
1051 except ET.ParseError:
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_xml_etree.py 739 ... except ET.ParseError, v:
1018 ParseError: undefined entity: line 1, column 10
1022 ParseError: undefined entity &entity;: line 5, column 10
1039 >>> issubclass(ET.ParseError, SyntaxError)
1051 except ET.ParseError:
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_xml_etree.py 739 ... except ET.ParseError, v:
1018 ParseError: undefined entity: line 1, column 10
1022 ParseError: undefined entity &entity;: line 5, column 10
1039 >>> issubclass(ET.ParseError, SyntaxError)
1051 except ET.ParseError:
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_xml_etree.py 739 ... except ET.ParseError, v:
1018 ParseError: undefined entity: line 1, column 10
1022 ParseError: undefined entity &entity;: line 5, column 10
1039 >>> issubclass(ET.ParseError, SyntaxError)
1051 except ET.ParseError:
    [all...]
  /development/vndk/tools/sourcedr/sourcedr/
ninja.py 264 class ParseError(ValueError):
273 s = 'ParseError: {}:{}:{}'.format(self.path, self.line, self.column)
297 raise ParseError(self.path, self._line, self._line_pos + 1, reason)

Completed in 1721 milliseconds

1 2 3 45 6 7