/kernel/linux/linux-6.6/fs/smb/server/mgmt/ |
H A D | share_config.c | 10 #include <linux/parser.h>
|
/kernel/linux/linux-6.6/fs/unicode/ |
H A D | utf8-core.c | 6 #include <linux/parser.h>
|
/kernel/linux/linux-6.6/drivers/accel/habanalabs/goya/ |
H A D | goyaP.h | 235 int goya_cs_parser(struct hl_device *hdev, struct hl_cs_parser *parser);
|
/kernel/linux/linux-6.6/tools/testing/selftests/bpf/benchs/ |
H A D | bench_local_storage.c | 63 .parser = parse_arg,
|
H A D | bench_bpf_hashmap_lookup.c | 111 .parser = parse_arg,
|
H A D | bench_local_storage_create.c | 69 .parser = parse_arg,
|
/kernel/linux/linux-6.6/security/keys/ |
H A D | keyctl_pkey.c | 12 #include <linux/parser.h>
|
/test/testfwk/xdevice/plugins/ohos/src/ohos/parser/ |
H A D | oh_kernel_parser.py | 19 from ohos.parser import *
|
H A D | cpp_parser_lite.py | 19 from ohos.parser import * 21 from ohos.parser.constants import parse_product_info
|
/third_party/ffmpeg/libavformat/ |
H A D | internal.h | 119 * Packets split by the parser get queued here. 222 * The codec context used by avformat_find_stream_info, the parser, etc. 381 struct AVCodecParserContext *parser; member
|
/third_party/backends/backend/escl/ |
H A D | escl_status.c | 33 #include <libxml/parser.h>
|
/third_party/node/deps/v8/tools/clusterfuzz/js_fuzzer/ |
H A D | gen_exceptions.js | 192 const prettyCode = prettier.format(code, { parser: "babel" });
|
/third_party/ninja/misc/ |
H A D | ninja.vim | 11 " ninja lexer and parser are at
|
/third_party/node/deps/v8/src/parsing/ |
H A D | preparse-data.h | 182 void SaveScopeAllocationData(DeclarationScope* scope, Parser* parser);
|
H A D | parser-base.h | 84 // 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 D | msgfmt.py | 34 from email.parser import HeaderParser
|
/third_party/python/Tools/peg_generator/pegen/ |
H A D | first_sets.py | 139 grammar, parser, tokenizer = build_parser(args.grammar_file)
|
/third_party/pulseaudio/src/pulse/ |
H A D | client-conf.c | 35 #include <pulsecore/conf-parser.h>
|
/kernel/linux/linux-6.6/tools/net/ynl/ |
H A D | ynl-gen-c.py | 2325 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 D | parserharness.js | 767 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 D | trace_events.c | 942 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 D | scopes.cc | 22 #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 D | tgsi_to_nir.c | 2247 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 D | bench.c | 378 .parser = parse_arg, in parse_cmdline_args_init() 391 .parser = parse_arg, in parse_cmdline_args_final()
|
/test/testfwk/xdevice/plugins/ohos/src/ohos/drivers/ |
H A D | oh_yara_driver.py | 431 for parser in parsers: 432 parser_instance = parser.__class__()
|