Home
last modified time | relevance | path

Searched refs:parser (Results 1451 - 1475 of 1746) sorted by relevance

1...<<51525354555657585960>>...70

/kernel/linux/linux-6.6/crypto/asymmetric_keys/
H A Dx509_public_key.c11 #include <keys/asymmetric-parser.h>
278 MODULE_DESCRIPTION("X.509 certificate parser");
/kernel/linux/linux-6.6/tools/testing/selftests/bpf/benchs/
H A Dbench_htab_mem.c93 .parser = htab_mem_parse_arg,
/kernel/linux/linux-6.6/security/keys/trusted-keys/
H A Dtrusted_core.c19 #include <linux/parser.h>
/third_party/elfutils/libdwfl/
H A Dargp-std.c343 /* Update the input all along, so a parent parser can see it. in parse_opt()
364 /* Update the input all along, so a parent parser can see it. */ in parse_opt()
373 { .options = options, .parser = parse_opt };
/third_party/ltp/tools/sparse/sparse-src/
H A Dc2xml.c32 #include <libxml/parser.h>
/third_party/rust/crates/clap/src/output/
H A Dusage.rs9 use crate::parser::ArgMatcher;
/third_party/skia/third_party/externals/angle2/src/compiler/preprocessor/
H A Dpreprocessor.y11 WHICH GENERATES THE GLSL ES preprocessor expression parser.
86 %pure-parser
/third_party/skia/third_party/externals/swiftshader/src/OpenGL/compiler/preprocessor/
H A DExpressionParser.y19 WHICH GENERATES THE GLSL ES preprocessor expression parser.
98 %pure-parser
/third_party/skia/third_party/externals/harfbuzz/util/
H A Dshape-options.hh43 void add_options (option_parser_t *parser);
415 shape_options_t::add_options (option_parser_t *parser)
441 parser->add_group (entries,
489 parser->add_group (entries2,
/third_party/skia/third_party/externals/tint/tools/src/cmd/intrinsic-gen/resolver/
H A Dresolver_test.go22 "dawn.googlesource.com/tint/tools/src/cmd/intrinsic-gen/parser"
313 ast, err := parser.Parse(strings.TrimSpace(string(test.src)), "file.txt")
315 t.Errorf("Unexpected parser error: %v", err)
/third_party/protobuf/src/google/protobuf/compiler/
H A Dparser.h108 // Call SetStopAfterSyntaxIdentifier(true) to tell the parser to stop
216 // destructor records the end location. Since the parser is
221 LocationRecorder(Parser* parser);
/third_party/pulseaudio/src/modules/
H A Dmodule-augment-properties.c35 #include <pulsecore/conf-parser.h>
/third_party/rust/crates/clap/src/error/
H A Dmod.rs23 use crate::parser::features::suggestions;
/foundation/arkui/ace_engine/frameworks/core/components_v2/water_flow/
H A Drender_water_flow.cpp390 TemplatesParser parser; in InitialFlowProp() local
392 crossSideSize_ = parser.ParseArgs(WeakClaim(this), PreParseArgs(colsArgs_), crossSize_, crossGap_); in InitialFlowProp()
394 crossSideSize_ = parser.ParseArgs(WeakClaim(this), PreParseArgs(rowsArgs_), crossSize_, crossGap_); in InitialFlowProp()
/kernel/linux/linux-5.10/arch/powerpc/kernel/
H A Dpci-common.c685 struct of_pci_range_parser parser; in pci_process_bridge_OF_ranges() local
691 if (of_pci_range_parser_init(&parser, dev)) in pci_process_bridge_OF_ranges()
695 for_each_of_pci_range(&parser, &range) { in pci_process_bridge_OF_ranges()
/kernel/linux/linux-6.6/arch/powerpc/kernel/
H A Dpci-common.c761 struct of_pci_range_parser parser; in pci_process_bridge_OF_ranges() local
767 if (of_pci_range_parser_init(&parser, dev)) in pci_process_bridge_OF_ranges()
771 for_each_of_pci_range(&parser, &range) { in pci_process_bridge_OF_ranges()
/kernel/linux/linux-6.6/drivers/bus/
H A Dmvebu-mbus.c1186 struct of_range_parser parser; in mbus_dt_setup() local
1189 ret = of_range_parser_init(&parser, np); in mbus_dt_setup()
1193 for_each_of_range(&parser, &range) { in mbus_dt_setup()
/third_party/icu/icu4c/source/test/intltest/
H A Dcsdetest.cpp537 UXMLParser *parser = UXMLParser::createParser(status); in DetectionTest() local
543 UXMLElement *root = parser->parseFile(testFilePath, status); in DetectionTest()
570 delete parser; in DetectionTest()
/third_party/node/deps/v8/tools/mb/
H A Dmb.py150 parser = argparse.ArgumentParser(prog='mb')
151 subps = parser.add_subparsers()
280 self.args = parser.parse_args(argv)
/third_party/python/
H A Dsetup.py826 parser = argparse.ArgumentParser()
827 parser.add_argument(arg_name, dest="dirs", action="append")
840 options, _ = parser.parse_known_args(env_val.split())
1300 # Interface to the Expat XML parser
/third_party/rust/crates/clap/src/builder/
H A Darg.rs893 /// - [`value_parser!(T)`][crate::value_parser!] for auto-selecting a value parser for a given type
943 pub fn value_parser(mut self, parser: impl IntoResettable<super::ValueParser>) -> Self { in value_parser()
944 self.value_parser = parser.into_resettable().into_option(); in value_parser()
1611 /// # use clap::{Command, Arg, parser::ValueSource};
1628 /// # use clap::{Command, Arg, parser::ValueSource};
1705 /// # use clap::{Command, Arg, parser::ValueSource};
1743 /// # use clap::{Command, Arg, parser::ValueSource, value_parser};
1870 /// Note that the value parser controls how flags are parsed. In this case we've selected
3880 if type_id == crate::parser::AnyValueId::of::<std::path::PathBuf>() { in get_value_hint()
3964 /// Configured parser fo
[all...]
/third_party/skia/third_party/externals/tint/tools/src/cmd/get-test-plan/
H A Dmain.go145 parser, err := Parse(spec)
149 rules := parser.rules
152 getUnimplementedTestPlan(*parser, *ctsDir)
381 // parser holds the information extracted from the spec
411 // update parser's section info
/foundation/arkui/ace_engine/frameworks/core/animation/
H A Danimation_util.cpp28 T ParseFunctionValue(const std::string& line, const std::string& key, std::function<T(const std::string&)> parser) in ParseFunctionValue() argument
49 return parser(valueStr); in ParseFunctionValue()
/third_party/node/deps/v8/third_party/test262-harness/src/
H A Dtest262.py627 parser = BuildOptions()
628 (options, args) = parser.parse_args()
/third_party/skia/src/utils/
H A DSkJSON.cpp230 // Lexer/parser inspired by rapidjson [1], sajson [2] and pjson [3].
916 DOMParser parser(fAlloc); in DOM()
918 fRoot = parser.parse(data, size); in DOM()

Completed in 29 milliseconds

1...<<51525354555657585960>>...70