/third_party/node/deps/v8/tools/cppgc/ |
H A D | gen_cmake.py | 93 Traverse GN parse-tree and build resulting object. 468 from cmake_format import configuration, lexer, parse, formatter namespace 471 parse_tree = parse.parse(tokens) 485 return parser.parse(contents)
|
/third_party/node/tools/gyp/tools/ |
H A D | pretty_vcproj.py | 19 from xml.dom.minidom import parse namespace 223 dom = parse(filename) 305 # Open the vcproj and parse the xml. 306 dom = parse(argv[1]) 326 MergeProperties(configuration_node, parse(current_vsprops).documentElement)
|
/third_party/musl/libc-test/src/functionalext/unittest/ |
H A D | unit_test_ldso_ns_config.c | 58 * @tc.desc : Test parse with invalid input 66 int ret = configor->parse("ttttttttt.txt", "ttttttttt"); in ns_config_test_0030() 395 * @tc.desc : Test parse with normal input 403 int ret = configor->parse("/etc/ld-musl-namespace-arm-test.ini", "/data/tests/libc-test/src"); in ns_config_test_0260() 410 * @tc.desc : Test parse with normal input 418 int ret = configor->parse(NULL, "/"); in ns_config_test_0270() 425 * @tc.desc : Test parse with invalid input 433 int ret = configor->parse("/etc/ld-musl-namespace-arm-test.ini", NULL); in ns_config_test_0280()
|
/third_party/rust/crates/nom/src/branch/ |
H A D | mod.rs | 88 /// that could parse the next slice of input, the first one is used. 135 match self.0.parse(input.clone()) { in choice() 146 match $self.$it.parse($input.clone()) { 166 self.0.parse(input) in choice() 225 match $self.$it.parse($input.clone()) {
|
/third_party/rust/crates/syn/src/ |
H A D | parse.rs | 17 //! trait to parse these syntax tree data structures from a token stream. 23 //! pointing out the exact token that triggered the failure to parse. 32 //! use syn::parse::{Parse, ParseStream}; 50 //! fn parse(input: ParseStream) -> Result<Self> { 53 //! input.parse().map(Item::Struct) 55 //! input.parse().map(Item::Enum) 63 //! fn parse(input: ParseStream) -> Result<Self> { 66 //! struct_token: input.parse()?, 67 //! ident: input.parse()?, 75 //! # fn parse(inpu 214 fn parse(input: ParseStream) -> Result<Self>; parse() functions 460 pub fn parse<T: Parse>(&self) -> Result<T> { parse() functions 1165 fn parse(input: ParseStream) -> Result<Self> { parse() functions 1172 fn parse(input: ParseStream) -> Result<Self> { parse() functions 1183 fn parse(input: ParseStream) -> Result<Self> { parse() functions 1190 fn parse(input: ParseStream) -> Result<Self> { parse() functions 1200 fn parse(input: ParseStream) -> Result<Self> { parse() functions 1214 fn parse(input: ParseStream) -> Result<Self> { parse() functions 1224 fn parse(input: ParseStream) -> Result<Self> { parse() functions 1252 fn parse(self, tokens: proc_macro::TokenStream) -> Result<Self::Output> { parse() functions 1357 fn parse(_input: ParseStream) -> Result<Self> { parse() functions [all...] |
/third_party/vk-gl-cts/framework/platform/android/ |
H A D | tcuTestLogParserJNI.cpp | 173 void parse (TestLogListener& listener, const char* buffer, size_t size); 199 void TestLogParser::parse (TestLogListener& listener, const char* buffer, size_t size) in parse() function in __anon30301::TestLogParser 291 if (m_testResultParser.parse(&(data[0]), (int)data.size()) == xe::TestResultParser::PARSERESULT_CHANGED) in parse() 372 parser->parse(listener, (const char*)logData, (size_t)size); in Java_com_drawelements_deqp_testercore_TestLogParser_nativeParse()
|
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/ |
H A D | TestMessageFormat.java | 120 Object result = form.parse(buffer.toString(), parsePos); in TestBug3() 123 errln("Number format parse failed."); in TestBug3() 226 // logln("---------------- test parse ----------------"); in TestPattern() 230 // logln("MSG pattern for parse: " + buffer); in TestPattern() 233 // Formattable* values = form.parse(result, parseCount, success); in TestPattern() 551 Object[] fmt_arr = msg.parse(source); in TestParse() 553 errln("*** MSG parse (ustring, count, err) count err."); in TestParse() 557 errln("*** MSG parse (ustring, parsepos., count) count err."); in TestParse() 559 assertEquals("parse()[0]", "abc", fmt_arr[0]); in TestParse() 560 assertEquals("parse()[ in TestParse() [all...] |
H A D | IntlTestNumberFormatAPI.java | 117 // ======= Test parse() in TestAPI() 119 logln("Testing parse()"); in TestAPI() 127 errln("ERROR: Roundtrip failed (via parse()) for " + text); in TestAPI() 131 double d2 = fr.parse(text, pos01).doubleValue(); in TestAPI() 133 errln("ERROR: Roundtrip failed (via parse()) for " + text); in TestAPI() 139 d3 = fr.parse(text).doubleValue(); in TestAPI() 142 errln("ERROR: parse() failed"); in TestAPI() 145 errln("ERROR: Roundtrip failed (via parse()) for " + text); in TestAPI() 234 public Number parse(String text, ParsePosition parsePosition) {return null;} in TestCoverage()
|
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/format/ |
H A D | TestMessageFormat.java | 123 Object result = form.parse(buffer.toString(), parsePos); in TestBug3() 126 errln("Number format parse failed."); in TestBug3() 229 // logln("---------------- test parse ----------------"); in TestPattern() 233 // logln("MSG pattern for parse: " + buffer); in TestPattern() 236 // Formattable* values = form.parse(result, parseCount, success); in TestPattern() 554 Object[] fmt_arr = msg.parse(source); in TestParse() 556 errln("*** MSG parse (ustring, count, err) count err."); in TestParse() 560 errln("*** MSG parse (ustring, parsepos., count) count err."); in TestParse() 562 assertEquals("parse()[0]", "abc", fmt_arr[0]); in TestParse() 563 assertEquals("parse()[ in TestParse() [all...] |
H A D | RbnfLenientScannerTest.java | 35 * and lenient parse is on. 63 // test spaces before fifty-7 causing lenient parse match of "fifty-" to " fifty" in TestEnglishSpellout() 64 // leaving "-7" for remaining parse, resulting in 2643 as the parse result. in TestEnglishSpellout() 136 // RBNF parse is extremely slow when lenient option is enabled. in TestAllLocales() 154 //RBNF parse is too slow. Increase count only for debugging purpose for now. in TestAllLocales() 179 // non-lenient parse in TestAllLocales() 181 Number num = fmt.parse(s); in TestAllLocales() 182 logln(loc.getName() + names[j] + "success parse: " + s + " -> " + num); in TestAllLocales() 184 // lenient parse in TestAllLocales() [all...] |
H A D | IntlTestNumberFormatAPI.java | 120 // ======= Test parse() in TestAPI() 122 logln("Testing parse()"); in TestAPI() 130 errln("ERROR: Roundtrip failed (via parse()) for " + text); in TestAPI() 134 double d2 = fr.parse(text, pos01).doubleValue(); in TestAPI() 136 errln("ERROR: Roundtrip failed (via parse()) for " + text); in TestAPI() 142 d3 = fr.parse(text).doubleValue(); in TestAPI() 145 errln("ERROR: parse() failed"); in TestAPI() 148 errln("ERROR: Roundtrip failed (via parse()) for " + text); in TestAPI() 237 public Number parse(String text, ParsePosition parsePosition) {return null;} in TestCoverage()
|
/kernel/linux/linux-5.10/drivers/net/wireless/realtek/rtw88/ |
H A D | phy.h | 85 .parse = rtw_parse_tbl_phy_cond, \ 100 .parse = rtw_parse_tbl_bb_pg, \ 107 .parse = rtw_parse_tbl_txpwr_lmt, \
|
/kernel/linux/linux-6.6/drivers/net/wireless/realtek/rtw88/ |
H A D | phy.h | 90 .parse = rtw_parse_tbl_phy_cond, \ 105 .parse = rtw_parse_tbl_bb_pg, \ 112 .parse = rtw_parse_tbl_txpwr_lmt, \
|
/third_party/gn/infra/ |
H A D | recipes.py | 39 import urllib.parse as urlparse 59 def parse(repo_root, recipes_cfg_path): function 176 dep, recipes_path, py3_only = parse(repo_root, recipes_cfg_path) 198 _git_check_call(['rev-parse', '--verify', 245 _git_output(['rev-parse', '--show-toplevel'],
|
/third_party/cJSON/tests/unity/auto/ |
H A D | stylize_as_junit.rb | 18 def self.parse(args) singleton method in ArgvParser 62 opts.parse!(args) 64 end # parse() 154 raise "Couldn't parse test results: #{summary}" unless summary.find { |v| v =~ /(\d+) Tests (\d+) Failures (\d+) Ignored/ } 227 # parse out the command options 228 options = ArgvParser.parse(ARGV)
|
/third_party/icu/icu4j/main/tests/collate/src/com/ibm/icu/dev/test/format/ |
H A D | RbnfLenientScannerTest.java | 32 * and lenient parse is on. 60 // test spaces before fifty-7 causing lenient parse match of "fifty-" to " fifty" in TestEnglishSpellout() 61 // leaving "-7" for remaining parse, resulting in 2643 as the parse result. in TestEnglishSpellout() 133 // RBNF parse is extremely slow when lenient option is enabled. in TestAllLocales() 151 //RBNF parse is too slow. Increase count only for debugging purpose for now. in TestAllLocales() 176 // non-lenient parse in TestAllLocales() 178 Number num = fmt.parse(s); in TestAllLocales() 179 logln(loc.getName() + names[j] + "success parse: " + s + " -> " + num); in TestAllLocales() 181 // lenient parse in TestAllLocales() [all...] |
/third_party/icu/tools/cldr/cldr-to-icu/src/main/java/org/unicode/icu/tool/cldrtoicu/mapper/ |
H A D | AbstractPathValueMapper.java | 39 // also be parsed via RbPath.parse(). 173 r.getValues().forEach(v -> map.put(rbPath, ValueOrAlias.parse(v))); in addResultsToIcuData() 209 static ValueOrAlias parse(String valueOrAlias) { in parse() method 215 // the RbPath ignores this. We must use "parse()" here, rather than RbPath.of(), since the in parse() 217 RbPath path = RbPath.parse(m.group(1)); in parse()
|
/third_party/node/deps/icu-small/source/i18n/unicode/ |
H A D | datefmt.h | 69 * DateFormat helps you to format and parse dates for any locale. Your code can 117 * You can use a DateFormat to parse also. 121 * UDate myDate = df->parse(myString, status); 144 * You can also use forms of the parse and format methods with ParsePosition and 147 * <li> Progressively parse through pieces of a string. 405 * possible. Assuming no parse errors were encountered, this function 408 * parse() that takes a ParsePosition. 412 * parse succeeds. Clients may insist on strict adherence to the format by 423 * recommended that clients parse using the method 424 * parse(cons [all...] |
/third_party/icu/icu4c/source/i18n/unicode/ |
H A D | datefmt.h | 69 * DateFormat helps you to format and parse dates for any locale. Your code can 117 * You can use a DateFormat to parse also. 121 * UDate myDate = df->parse(myString, status); 144 * You can also use forms of the parse and format methods with ParsePosition and 147 * <li> Progressively parse through pieces of a string. 405 * possible. Assuming no parse errors were encountered, this function 408 * parse() that takes a ParsePosition. 412 * parse succeeds. Clients may insist on strict adherence to the format by 423 * recommended that clients parse using the method 424 * parse(cons [all...] |
/third_party/icu/icu4c/source/test/intltest/ |
H A D | sdtfmtts.cpp | 159 // ======= Test parse() in testAPI() 161 logln("Testing parse()"); in testAPI() 166 result1 = def.parse(text, pos); in testAPI() 170 result2 = def.parse(text, status); in testAPI() 172 errln("ERROR: parse() failed"); in testAPI() 270 UDate udDate = object.parse("2007W014", pp); in testAPI()
|
/third_party/libphonenumber/metadata/src/main/java/com/google/i18n/phonenumbers/metadata/model/ |
H A D | AltFormatsSchema.java | 88 CSV_PARSER.parse(r.lines(), in importAltFormats() 114 FormatTemplate template = FormatTemplate.parse(altId.replaceAll("[0-9]|\\[[-0-9]+\\]", "X")); in parseAltFormat() 119 RangeSpecification prefix = RangeSpecification.parse( in parseAltFormat()
|
/third_party/rust/crates/cxx/gen/cmd/src/ |
H A D | app.rs | 15 use syn::parse::Parser; 108 let (name, value) = cfg::parse.parse_str(arg).unwrap(); 139 .value_parser(move |arg: &str| match cfg::parse.parse_str(arg) { in arg_cfg() 188 parse or even require the given paths to exist; they simply go in arg_include()
|
/third_party/python/Lib/test/ |
H A D | ssl_servers.py | 6 import urllib.parse namespace 64 path = urllib.parse.urlparse(path)[2] 65 path = os.path.normpath(urllib.parse.unquote(path))
|
/third_party/python/Lib/lib2to3/pgen2/ |
H A D | driver.py | 10 This provides a high-level interface to parse a file into a syntax tree. 26 from . import grammar, parse, token, tokenize, pgen namespace 41 p = parse.Parser(self.grammar, self.convert) 82 raise parse.ParseError("incomplete input",
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/DWARF/ |
H A D | DWARFUnitIndex.cpp | 20 bool DWARFUnitIndex::Header::parse(DataExtractor IndexData, in parse() function in DWARFUnitIndex::Header 35 bool DWARFUnitIndex::parse(DataExtractor IndexData) { in parse() function in DWARFUnitIndex 49 if (!Header.parse(IndexData, &Offset)) in parseImpl()
|