Home
last modified time | relevance | path

Searched defs:ParseError (Results 1 – 25 of 63) sorted by relevance

123

/external/rust/crates/macaddr/src/parser/
Dmod.rs17 pub enum ParseError { enum
35 impl fmt::Display for ParseError { implementation
47 impl Error for ParseError {} implementation
91 fn read_char(&mut self) -> Result<char, ParseError> { in read_char() argument
101 fn read_digit(&mut self) -> Result<u8, ParseError> { in read_digit() argument
112 fn probe_delimiter(&mut self) -> Result<Option<()>, ParseError> { in probe_delimiter() argument
138 pub fn read_v6_addr(&mut self) -> Result<MacAddr6, ParseError> { in read_v6_addr() argument
162 pub fn read_v8_addr(&mut self) -> Result<MacAddr8, ParseError> { in read_v8_addr() argument
186 pub fn read_addr(&mut self) -> Result<MacAddr, ParseError> { in read_addr() argument
/external/volley/core/src/main/java/com/android/volley/
DParseError.java21 public class ParseError extends VolleyError { class
22 public ParseError() {} in ParseError() method in ParseError
24 public ParseError(NetworkResponse networkResponse) { in ParseError() method in ParseError
28 public ParseError(Throwable cause) { in ParseError() method in ParseError
/external/rust/crates/serde_derive/src/internals/
Dcase.rs50 pub fn from_str(rename_all_str: &str) -> Result<Self, ParseError> { in from_str() argument
117 pub struct ParseError<'a> { struct
121 impl<'a> Display for ParseError<'a> { argument
/external/rust/crates/bindgen/src/
Dparse.rs10 pub enum ParseError { enum
40 ) -> Result<ParseResult<Self>, ParseError>; in parse() argument
50 ) -> Result<ItemId, ParseError>; in parse() argument
58 ) -> Result<TypeId, ParseError>; in from_ty() argument
68 ) -> Result<TypeId, ParseError>; in from_ty_with_id() argument
/external/rust/crates/rustc-demangle/src/
Dv0.rs24 pub enum ParseError { enum
37 pub fn demangle(s: &str) -> Result<(Demangle, &str), ParseError> { in demangle() argument
405 fn push_depth(&mut self) -> Result<(), ParseError> { in push_depth() argument
431 fn next(&mut self) -> Result<u8, ParseError> { in next() argument
437 fn hex_nibbles(&mut self) -> Result<HexNibbles<'s>, ParseError> { in hex_nibbles() argument
451 fn digit_10(&mut self) -> Result<u8, ParseError> { in digit_10() argument
460 fn digit_62(&mut self) -> Result<u8, ParseError> { in digit_62() argument
471 fn integer_62(&mut self) -> Result<u64, ParseError> { in integer_62() argument
485 fn opt_integer_62(&mut self, tag: u8) -> Result<u64, ParseError> { in opt_integer_62() argument
492 fn disambiguator(&mut self) -> Result<u64, ParseError> { in disambiguator() argument
[all …]
/external/ktfmt/core/src/main/java/com/facebook/ktfmt/format/
DParseError.kt21 class ParseError(val errorDescription: String, val lineColumn: LineColumn) : class
/external/deqp/framework/xexml/
DxeDefs.hpp41 class ParseError : public Error class
44 ParseError (const std::string& message) : Error(message) {} in ParseError() function in xe::ParseError
DxeXMLParser.hpp77 class ParseError : public xe::ParseError class
80 ParseError (const std::string& message) : xe::ParseError(message) {} in ParseError() function in xe::xml::ParseError
/external/rust/crates/itertools/examples/
Diris.rs22 enum ParseError { enum
27 impl From<ParseFloatError> for ParseError { implementation
/external/rust/crates/der-parser/src/
Doid.rs67 pub enum ParseError { enum
126 pub fn from<'b>(s: &'b [u64]) -> Result<Oid<'static>, ParseError> { in from() argument
151 pub fn from_relative<'b>(s: &'b [u64]) -> Result<Oid<'static>, ParseError> { in from_relative() argument
/external/rust/crates/url/src/
Dhost.rs77 pub fn parse(input: &str) -> Result<Self, ParseError> { in parse() argument
122 pub fn parse_opaque(input: &str) -> Result<Self, ParseError> { in parse_opaque() argument
Dlib.rs240 pub fn parse(self, input: &str) -> Result<Url, crate::ParseError> { in parse()
275 pub fn parse(input: &str) -> Result<Url, crate::ParseError> { in parse()
356 pub fn join(&self, input: &str) -> Result<Url, crate::ParseError> { in join()
1790 pub fn set_host(&mut self, host: Option<&str>) -> Result<(), ParseError> { in set_host() argument
2493 fn from_str(input: &str) -> Result<Url, crate::ParseError> { in from_str()
/external/protobuf/ruby/lib/google/
Dprotobuf.rb39 class ParseError < Error; end class
/external/rust/crates/nom/src/
Derror.rs16 pub trait ParseError<I>: Sized { trait
103 impl<I> ParseError<I> for (I, ErrorKind) { impl
121 impl<I> ParseError<I> for () { impl
/external/ImageMagick/Magick++/demo/
Dzoom.cpp27 static void ParseError (int position, char **argv) in ParseError() function
/external/crosvm/serde_keyvalue/src/
Dkey_values.rs49 pub struct ParseError { struct
56 impl Display for ParseError { argument
65 impl de::Error for ParseError { implementation
109 fn error_here(&self, kind: ErrorKind) -> ParseError { in error_here()
/external/rust/crates/bindgen/src/ir/
Dvar.rs161 ) -> Result<(), ParseError> { in handle_function_macro() argument
204 ) -> Result<ParseResult<Self>, ParseError> { in parse() argument
Dmodule.rs79 ) -> Result<ParseResult<Self>, ParseError> { in parse() argument
/external/chromium-trace/catapult/common/py_utils/py_utils/
Dexpectations_parser.py12 class ParseError(Exception): class
/external/python/cpython2/Lib/lib2to3/pgen2/
Dparse.py16 class ParseError(Exception): class
/external/python/cpython3/Lib/lib2to3/pgen2/
Dparse.py16 class ParseError(Exception): class
/external/python/pycparser/pycparser/
Dplyparser.py31 class ParseError(Exception): pass class
/external/swiftshader/third_party/subzero/unittest/
DIceParseInstsTest.cpp29 constexpr bool ParseError = true; variable
/external/llvm/lib/Support/
DSpecialCaseList.cpp60 std::string ParseError; in create() local
/external/rust/crates/chrono/src/format/
Dmod.rs321 pub struct ParseError(ParseErrorKind); struct
358 impl fmt::Display for ParseError { implementation
373 impl Error for ParseError { implementation

123