Searched refs:ParserError (Results 1 – 9 of 9) sorted by relevance
/third_party/PyYAML/lib/yaml/ |
D | parser.py | 69 class ParserError(MarkedYAMLError): class 171 raise ParserError(None, None, 224 raise ParserError(None, None, 228 raise ParserError(None, None, 235 raise ParserError(None, None, 305 raise ParserError("while parsing a node", start_mark, 369 raise ParserError("while parsing a %s node" % node, start_mark, 392 raise ParserError("while parsing a block collection", self.marks[-1], 438 raise ParserError("while parsing a block mapping", self.marks[-1], 483 raise ParserError("while parsing a flow sequence", self.marks[-1], [all …]
|
/third_party/parse5/packages/parse5/lib/common/ |
D | error-codes.ts | 3 export interface ParserError extends Location { interface 7 export type ParserErrorHandler = (error: ParserError) => void;
|
/third_party/parse5/test/utils/ |
D | generate-parsing-tests.ts | 1 import type { ParserOptions, TreeAdapter, TreeAdapterTypeMap, ParserError } from 'parse5'; 91 onParseError: (err: ParserError): void => {
|
D | generate-tokenization-tests.ts | 4 import type { ParserError, Token } from 'parse5'; 78 onParseError(err: ParserError): void {
|
/third_party/parse5/packages/parse5/lib/tokenizer/ |
D | preprocessor.ts | 9 import { ERR, type ParserError, type ParserErrorHandler } from '../common/error-codes.js'; alias 44 public getError(code: ERR): ParserError {
|
/third_party/parse5/packages/parse5/lib/ |
D | index.ts | 10 export { ERR as ErrorCodes, type ParserError } from './common/error-codes.js'; alias
|
/third_party/python/Doc/library/ |
D | xml.rst | 78 :exc:`ParserError` when an entity occurs.
|
/third_party/PyYAML/yaml/ |
D | _yaml.pyx | 18 ParserError = yaml.parser.ParserError variable 141 #class ParserError(MarkedYAMLError): 329 return ParserError(context, context_mark, problem, problem_mark)
|
/third_party/python/Misc/NEWS.d/ |
D | 3.8.0a4.rst | 208 Include node names in ``ParserError`` messages, instead of numeric IDs.
|