Home
last modified time | relevance | path

Searched refs:parser (Results 1526 - 1550 of 1746) sorted by relevance

1...<<61626364656667686970

/third_party/ffmpeg/libavformat/
H A Ddemux_utils.c34 return cffstream(st)->parser; in av_stream_get_parser()
/third_party/gn/src/gn/
H A Dinput_conversion.cc20 #include "gn/parser.h"
342 Note that "trim value" is useless because the value parser skips
/third_party/libwebsockets/lib/secure-streams/
H A Dsecure-streams-process.c491 n = lws_ss_deserialize_parse(&conn->parser, in callback_ss_proxy()
/third_party/rust/crates/clap/src/parser/
H A Dvalidator.rs6 use crate::parser::{ArgMatcher, ParseState};
/third_party/python/Tools/c-analyzer/cpython/
H A D_capi.py9 from c_parser.parser._regexes import _ind
/third_party/protobuf/csharp/src/Google.Protobuf/
H A DJsonParser.cs71 // TODO: Consider introducing a class containing parse state of the parser, tokenizer and depth. That would simplify these handlers
76 { Timestamp.Descriptor.FullName, (parser, message, tokenizer) => MergeTimestamp(message, tokenizer.Next()) },
77 { Duration.Descriptor.FullName, (parser, message, tokenizer) => MergeDuration(message, tokenizer.Next()) },
78 { Value.Descriptor.FullName, (parser, message, tokenizer) => parser.MergeStructValue(message, tokenizer) },
79 { ListValue.Descriptor.FullName, (parser, message, tokenizer) =>
80 parser.MergeRepeatedField(message, message.Descriptor.Fields[ListValue.ValuesFieldNumber], tokenizer) },
81 { Struct.Descriptor.FullName, (parser, message, tokenizer) => parser.MergeStruct(message, tokenizer) },
82 { Any.Descriptor.FullName, (parser, messag
97 MergeWrapperField(JsonParser parser, IMessage message, JsonTokenizer tokenizer) MergeWrapperField() argument
751 ParseNumericString(string text, Func<string, NumberStyles, IFormatProvider, T> parser) ParseMapKey() argument
[all...]
/third_party/skia/third_party/externals/dawn/src/dawn_node/tools/src/cmd/idlgen/
H A Dmain.go31 "github.com/ben-clayton/webidlparser/parser"
91 fileIDL := parser.Parse(string(content))
/third_party/skia/third_party/externals/tint/src/reader/wgsl/
H A Dparser_impl_error_msg_test.cc32 auto p = parser(source); \
511 err << "test.wgsl:1:527 error: maximum parser recursive depth reached\n" in TEST_F()
/third_party/vixl/tools/
H A Dtest.py86 def __call__(self, parser, namespace, values, option_string=None):
/kernel/linux/linux-5.10/drivers/mtd/nand/raw/
H A Dsunxi_nand.c1911 const struct nand_op_parser *parser; in sunxi_nfc_exec_op() local
1917 parser = &sunxi_nfc_op_parser; in sunxi_nfc_exec_op()
1919 parser = &sunxi_nfc_norb_op_parser; in sunxi_nfc_exec_op()
1921 return nand_op_parser_exec_op(nand, parser, op, check_only); in sunxi_nfc_exec_op()
/third_party/python/Lib/
H A Dinspect.py3289 parser = argparse.ArgumentParser()
3290 parser.add_argument(
3294 parser.add_argument(
3298 args = parser.parse_args()
H A Dzipfile.py2570 parser = argparse.ArgumentParser(description=description)
2571 group = parser.add_mutually_exclusive_group(required=True)
2582 parser.add_argument('--metadata-encoding', metavar='<encoding>',
2584 args = parser.parse_args(args)
/third_party/ninja/src/
H A Dninja.cc1588 ManifestParser parser(&ninja.state_, &ninja.disk_interface_, parser_opts); in real_main()
1590 if (!parser.Load(options.input_file, &err)) { in real_main()
/third_party/icu/icu4c/source/test/intltest/
H A Dssearch.cpp135 LocalPointer<UXMLParser> parser(UXMLParser::createParser(status)); in searchTest()
137 LocalPointer<UXMLElement> root(parser->parseFile(testFilePath, status)); in searchTest()
/third_party/libfuse/example/
H A Dpassthrough_hp.cc1162 static cxxopts::ParseResult parse_wrapper(cxxopts::Options& parser, int& argc, char**& argv) { in parse_wrapper() argument
1164 return parser.parse(argc, argv); in parse_wrapper()
/third_party/lz4/tests/
H A DMakefile507 test-lz4-opt-parser: lz4 datagen
508 @echo "\n ---- test opt-parser ----"
525 test-lz4: lz4 datagen test-lz4-essentials test-lz4-opt-parser \
/third_party/python/Lib/http/
H A Dclient.py71 import email.parser namespace
236 return email.parser.Parser(_class=_class).parsestr(hstring)
/third_party/protobuf/java/core/src/test/java/com/google/protobuf/
H A DTextFormatTest.java1469 // With default parser, last value set for the key holds. in testMapOverwrite()
1497 TextFormat.Parser parser = in testParseInfoTreeBuilding()
1519 parser.merge(stringData, builder); in testParseInfoTreeBuilding()
/third_party/rust/crates/syn/src/
H A Dlit.rs176 /// Invoke parser on the content of this string literal.
202 pub fn parse_with<F: Parser>(&self, parser: F) -> Result<F::Output> { in parse_with()
231 let result = parser.parse2(tokens)?; in parse_with()
/third_party/rust/crates/regex/src/
H A Dexec.rs238 let mut parser = ParserBuilder::new() in parse() variables
250 parser.parse(pat).map_err(|e| Error::Syntax(e.to_string()))?; in parse()
/third_party/vk-gl-cts/framework/opengl/
H A DgluShaderLibrary.cpp1605 // Initialize parser. in parse()
1636 sl::ShaderParser parser (archive, filename, caseFactory); in parseFile()
1638 return parser.parse(); in parseFile()
/foundation/ability/form_fwk/services/src/
H A Dform_mgr_service.cpp743 FormXMLParser parser; in ReadFormConfigXML() local
744 int32_t ret = parser.Parse(); in ReadFormConfigXML()
749 const std::map<std::string, int32_t> &configMap = parser.GetConfigMap(); in ReadFormConfigXML()
/kernel/linux/linux-5.10/tools/testing/selftests/bpf/
H A Dtest_offload.py753 parser = argparse.ArgumentParser() variable
754 parser.add_argument("--log", help="output verbose log to given file")
755 args = parser.parse_args()
/kernel/linux/linux-6.6/drivers/hv/
H A Dvmbus_drv.c2321 struct of_range_parser parser; in vmbus_device_add() local
2327 ret = of_range_parser_init(&parser, np); in vmbus_device_add()
2331 for_each_of_range(&parser, &range) { in vmbus_device_add()
/kernel/linux/linux-6.6/tools/testing/selftests/bpf/
H A Dtest_offload.py753 parser = argparse.ArgumentParser() variable
754 parser.add_argument("--log", help="output verbose log to given file")
755 args = parser.parse_args()

Completed in 43 milliseconds

1...<<61626364656667686970