Home
last modified time | relevance | path

Searched refs:parser (Results 1351 - 1375 of 1689) sorted by relevance

1...<<51525354555657585960>>...68

/kernel/linux/linux-6.6/fs/smb/server/mgmt/
H A Dshare_config.c10 #include <linux/parser.h>
/kernel/linux/linux-6.6/fs/unicode/
H A Dutf8-core.c6 #include <linux/parser.h>
/kernel/linux/linux-6.6/drivers/accel/habanalabs/goya/
H A DgoyaP.h235 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 Dbench_local_storage.c63 .parser = parse_arg,
H A Dbench_bpf_hashmap_lookup.c111 .parser = parse_arg,
H A Dbench_local_storage_create.c69 .parser = parse_arg,
/kernel/linux/linux-6.6/security/keys/
H A Dkeyctl_pkey.c12 #include <linux/parser.h>
/test/testfwk/xdevice/plugins/ohos/src/ohos/parser/
H A Doh_kernel_parser.py19 from ohos.parser import *
H A Dcpp_parser_lite.py19 from ohos.parser import *
21 from ohos.parser.constants import parse_product_info
/third_party/ffmpeg/libavformat/
H A Dinternal.h119 * 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 Descl_status.c33 #include <libxml/parser.h>
/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()
/test/testfwk/xdevice/plugins/ohos/src/ohos/drivers/
H A Doh_yara_driver.py431 for parser in parsers:
432 parser_instance = parser.__class__()

Completed in 34 milliseconds

1...<<51525354555657585960>>...68