Home
last modified time | relevance | path

Searched refs:parser (Results 1326 - 1350 of 1644) sorted by relevance

1...<<51525354555657585960>>...66

/third_party/node/deps/v8/tools/clusterfuzz/js_fuzzer/
H A Dgen_exceptions.js192 const prettyCode = prettier.format(code, { parser: "babel" });
/third_party/ninja/misc/
H A Dninja.vim11 " ninja lexer and parser are at
/third_party/node/deps/v8/src/parsing/
H A Dpreparse-data.h182 void SaveScopeAllocationData(DeclarationScope* scope, Parser* parser);
H A Dparser-base.h84 // Stack-allocated scope to collect source ranges from the parser.
109 // handling for functions that may fail (by returning if there was an parser
121 // Common base class template shared between parser and pre-parser.
122 // The Impl parameter is the actual class of the parser/pre-parser,
124 // The structure of the parser objects is roughly the following:
131 // // The parser base object, which should just implement pure
132 // // parser behavior. The Impl parameter is the actual derived
133 // // class (according to CRTP), which implements impure parser
364 Target(ParserBase* parser, BreakableStatementT statement, ZonePtrList<const AstRawString>* labels, ZonePtrList<const AstRawString>* own_labels, TargetType target_type) Target() argument
1509 AcceptINScope(ParserBase* parser, bool accept_IN) AcceptINScope() argument
1523 ParameterParsingScope(Impl* parser, FormalParametersT* parameters) ParameterParsingScope() argument
1537 FunctionParsingScope(Impl* parser) FunctionParsingScope() argument
[all...]
/third_party/python/Tools/i18n/
H A Dmsgfmt.py34 from email.parser import HeaderParser
/third_party/python/Tools/peg_generator/pegen/
H A Dfirst_sets.py139 grammar, parser, tokenizer = build_parser(args.grammar_file)
/third_party/pulseaudio/src/pulse/
H A Dclient-conf.c35 #include <pulsecore/conf-parser.h>
/kernel/linux/linux-6.6/tools/net/ynl/
H A Dynl-gen-c.py2325 parser = argparse.ArgumentParser(description='Netlink simple parsing generator')
2326 parser.add_argument('--mode', dest='mode', type=str, required=True)
2327 parser.add_argument('--spec', dest='spec', type=str, required=True)
2328 parser.add_argument('--header', dest='header', action='store_true', default=None)
2329 parser.add_argument('--source', dest='header', action='store_false')
2330 parser.add_argument('--user-header', nargs='+', default=[])
2331 parser.add_argument('--exclude-op', action='append', default=[])
2332 parser.add_argument('-o', dest='out_file', type=str, default=None)
2333 args = parser.parse_args()
2336 parser
[all...]
/third_party/typescript/tests/baselines/reference/
H A Dparserharness.js767 compiler.parser.errorRecovery = true;
1715 var parser = new TypeScript.Parser();
1716 parser.setErrorRecovery(null);
1717 parser.errorCallback = (a, b, c, d) => { };
1719 var script = parser.parse(sourceText, fileName, 0);
2736 compiler.parser.errorRecovery = true;
3562 var parser = new TypeScript.Parser();
3563 parser.setErrorRecovery(null);
3564 parser.errorCallback = function (a, b, c, d) { };
3565 var script = parser
[all...]
/kernel/linux/linux-5.10/kernel/trace/
H A Dtrace_events.c942 struct trace_parser parser; in ftrace_event_write() local
954 if (trace_parser_get_init(&parser, EVENT_BUF_SIZE + 1)) in ftrace_event_write()
957 read = trace_get_user(&parser, ubuf, cnt, ppos); in ftrace_event_write()
959 if (read >= 0 && trace_parser_loaded((&parser))) { in ftrace_event_write()
962 if (*parser.buffer == '!') in ftrace_event_write()
965 ret = ftrace_set_clr_event(tr, parser.buffer + !set, set); in ftrace_event_write()
973 trace_parser_put(&parser); in ftrace_event_write()
/third_party/node/deps/v8/src/ast/
H A Dscopes.cc22 #include "src/parsing/parser.h"
300 // scope_info, as the parser expects that a catch scope always has the catch in Scope()
1723 void Scope::SavePreparseData(Parser* parser) { in SavePreparseData() argument
1724 this->ForEach([parser](Scope* scope) { in SavePreparseData()
1726 scope->AsDeclarationScope()->SavePreparseDataForDeclarationScope(parser); in SavePreparseData()
1732 void DeclarationScope::SavePreparseDataForDeclarationScope(Parser* parser) { in SavePreparseDataForDeclarationScope() argument
1734 preparse_data_builder_->SaveScopeAllocationData(this, parser); in SavePreparseDataForDeclarationScope()
1737 void DeclarationScope::AnalyzePartially(Parser* parser, in AnalyzePartially() argument
1757 SavePreparseData(parser); in AnalyzePartially()
/third_party/mesa3d/src/gallium/auxiliary/nir/
H A Dtgsi_to_nir.c2247 struct tgsi_parse_context parser; in ttn_parse_tgsi() local
2250 ret = tgsi_parse_init(&parser, tgsi_tokens); in ttn_parse_tgsi()
2253 while (!tgsi_parse_end_of_tokens(&parser)) { in ttn_parse_tgsi()
2254 tgsi_parse_token(&parser); in ttn_parse_tgsi()
2255 c->token = &parser.FullToken; in ttn_parse_tgsi()
2257 switch (parser.FullToken.Token.Type) { in ttn_parse_tgsi()
2272 tgsi_parse_free(&parser); in ttn_parse_tgsi()
/kernel/linux/linux-6.6/tools/testing/selftests/bpf/
H A Dbench.c378 .parser = parse_arg, in parse_cmdline_args_init()
391 .parser = parse_arg, in parse_cmdline_args_final()
/third_party/node/deps/v8/tools/
H A Dv8_presubmit.py772 parser = GetOptions()
773 (options, args) = parser.parse_args()
/third_party/node/deps/icu-small/source/tools/toolutil/
H A Dxmlparser.cpp129 // attribute value available to the parser code. in UXMLParser()
681 UXMLElement::UXMLElement(const UXMLParser *parser, const UnicodeString *name, UErrorCode &errorCode) : in UXMLElement() argument
682 fParser(parser), in UXMLElement()
751 return nullptr; // no such attribute seen by the parser at all in getAttribute()
807 return nullptr; // no such element seen by the parser at all in getChildElement()
/third_party/icu/icu4c/source/tools/toolutil/
H A Dxmlparser.cpp129 // attribute value available to the parser code. in UXMLParser()
681 UXMLElement::UXMLElement(const UXMLParser *parser, const UnicodeString *name, UErrorCode &errorCode) : in UXMLElement() argument
682 fParser(parser), in UXMLElement()
751 return NULL; // no such attribute seen by the parser at all in getAttribute()
807 return NULL; // no such element seen by the parser at all in getChildElement()
/third_party/skia/third_party/externals/spirv-tools/source/
H A Dbinary.cpp67 // A SPIR-V binary parser. A parser instance communicates detailed parse
195 // Temporary storage for parser state within a single instruction.
418 // But it can exposes internal parser details such as whether an operand is
819 Parser parser(&hijack_context, user_data, parsed_header, parsed_instruction);
820 return parser.parse(code, num_words, diagnostic);
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/
H A Dbinary.cpp67 // A SPIR-V binary parser. A parser instance communicates detailed parse
195 // Temporary storage for parser state within a single instruction.
418 // But it can exposes internal parser details such as whether an operand is
819 Parser parser(&hijack_context, user_data, parsed_header, parsed_instruction);
820 return parser.parse(code, num_words, diagnostic);
/third_party/skia/third_party/externals/icu/source/tools/toolutil/
H A Dxmlparser.cpp129 // attribute value available to the parser code. in UXMLParser()
681 UXMLElement::UXMLElement(const UXMLParser *parser, const UnicodeString *name, UErrorCode &errorCode) : in UXMLElement() argument
682 fParser(parser), in UXMLElement()
751 return NULL; // no such attribute seen by the parser at all in getAttribute()
807 return NULL; // no such element seen by the parser at all in getChildElement()
/third_party/skia/third_party/externals/freetype/src/pfr/
H A Dpfrload.c160 for ( extra = item_list; extra->parser != NULL; extra++ ) in FT_LOCAL_DEF()
164 error = extra->parser( p, p + item_size, item_data ); in FT_LOCAL_DEF()
/third_party/spirv-tools/source/
H A Dbinary.cpp77 // A SPIR-V binary parser. A parser instance communicates detailed parse
205 // Temporary storage for parser state within a single instruction.
428 // But it can exposes internal parser details such as whether an operand is
846 Parser parser(&hijack_context, user_data, parsed_header, parsed_instruction);
847 return parser.parse(code, num_words, diagnostic);
/third_party/python/Parser/
H A Dstring_parser.c64 decode_unicode_with_escapes(Parser *parser, const char *s, size_t len, Token *t) in decode_unicode_with_escapes() argument
132 if (warn_invalid_escape_sequence(parser, first_invalid_escape, t) < 0) { in decode_unicode_with_escapes()
369 /* The Python parser ignores only the following whitespace in fstring_compile_expr()
/third_party/icu/icu4c/source/i18n/
H A Dcollationbuilder.cpp247 CollationRuleParser parser(baseData, errorCode); in parseAndBuild()
255 parser.setSink(this); in parseAndBuild()
256 parser.setImporter(importer); in parseAndBuild()
258 parser.parse(ruleString, ownedSettings, outParseError, errorCode); in parseAndBuild()
259 errorReason = parser.getErrorReason(); in parseAndBuild()
692 // Note: If there is a prefix, then the parser checked that in addRelation()
/third_party/node/deps/icu-small/source/i18n/
H A Dcollationbuilder.cpp247 CollationRuleParser parser(baseData, errorCode); in parseAndBuild()
255 parser.setSink(this); in parseAndBuild()
256 parser.setImporter(importer); in parseAndBuild()
258 parser.parse(ruleString, ownedSettings, outParseError, errorCode); in parseAndBuild()
259 errorReason = parser.getErrorReason(); in parseAndBuild()
692 // Note: If there is a prefix, then the parser checked that in addRelation()
/third_party/rust/crates/clap/src/builder/
H A Dcommand.rs25 use crate::parser::{ArgMatcher, ArgMatches, Parser};
36 /// This includes defining arguments, subcommands, parser behavior, and help output.
677 debug!("Command::try_get_matches_from_mut: Reinserting command into arguments so subcommand parser matches it"); in try_get_matches_from_mut()
920 /// Specifies that the parser should not assume the first argument passed is the binary name.
2752 /// The default parser is for `OsString`. This can be used to switch it to `String` or another
2808 parser: impl IntoResettable<super::ValueParser>, in external_subcommand_value_parser()
2810 self.external_value_parser = parser.into_resettable().into_option(); in external_subcommand_value_parser()
2855 /// This setting instructs the parser to stop when encountering a subcommand instead of
3689 /// Configured parser for values passed to an external subcommand
3795 let mut parser in _do_parse() variables
[all...]

Completed in 49 milliseconds

1...<<51525354555657585960>>...66