Home
last modified time | relevance | path

Searched refs:ParserError (Results 1 – 9 of 9) sorted by relevance

/third_party/PyYAML/lib/yaml/
Dparser.py69 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/
Derror-codes.ts3 export interface ParserError extends Location { interface
7 export type ParserErrorHandler = (error: ParserError) => void;
/third_party/parse5/test/utils/
Dgenerate-parsing-tests.ts1 import type { ParserOptions, TreeAdapter, TreeAdapterTypeMap, ParserError } from 'parse5';
91 onParseError: (err: ParserError): void => {
Dgenerate-tokenization-tests.ts4 import type { ParserError, Token } from 'parse5';
78 onParseError(err: ParserError): void {
/third_party/parse5/packages/parse5/lib/tokenizer/
Dpreprocessor.ts9 import { ERR, type ParserError, type ParserErrorHandler } from '../common/error-codes.js'; alias
44 public getError(code: ERR): ParserError {
/third_party/parse5/packages/parse5/lib/
Dindex.ts10 export { ERR as ErrorCodes, type ParserError } from './common/error-codes.js'; alias
/third_party/python/Doc/library/
Dxml.rst78 :exc:`ParserError` when an entity occurs.
/third_party/PyYAML/yaml/
D_yaml.pyx18 ParserError = yaml.parser.ParserError variable
141 #class ParserError(MarkedYAMLError):
329 return ParserError(context, context_mark, problem, problem_mark)
/third_party/python/Misc/NEWS.d/
D3.8.0a4.rst208 Include node names in ``ParserError`` messages, instead of numeric IDs.