/third_party/rust/crates/clap/examples/ |
H A D | typed-derive.rs | 33 .map(|s| s.parse::<usize>().unwrap()), 42 .map(|s| s.parse::<foreign_crate::LogLevel>().unwrap()), 58 Ok((s[..pos].parse()?, s[pos + 1..].parse()?)) in parse_key_val() 100 let args = Args::parse(); in main()
|
/third_party/skia/modules/svg/src/ |
H A D | SkSVGUse.cpp | 22 this->setX(SkSVGAttributeParser::parse<SkSVGLength>("x", n, v)) || in parseAndSetAttribute() 23 this->setY(SkSVGAttributeParser::parse<SkSVGLength>("y", n, v)) || in parseAndSetAttribute() 24 this->setHref(SkSVGAttributeParser::parse<SkSVGIRI>("xlink:href", n, v)); in parseAndSetAttribute()
|
H A D | SkSVGCircle.cpp | 17 this->setCx(SkSVGAttributeParser::parse<SkSVGLength>("cx", n, v)) || in parseAndSetAttribute() 18 this->setCy(SkSVGAttributeParser::parse<SkSVGLength>("cy", n, v)) || in parseAndSetAttribute() 19 this->setR(SkSVGAttributeParser::parse<SkSVGLength>("r", n, v)); in parseAndSetAttribute()
|
H A D | SkSVGFeBlend.cpp | 17 this->setIn2(SkSVGAttributeParser::parse<SkSVGFeInputType>("in2", name, value)) || in parseAndSetAttribute() 18 this->setMode(SkSVGAttributeParser::parse<SkSVGFeBlend::Mode>("mode", name, value)); in parseAndSetAttribute() 49 bool SkSVGAttributeParser::parse<SkSVGFeBlend::Mode>( in parse() function in SkSVGAttributeParser
|
/third_party/python/Tools/c-analyzer/c_parser/parser/ |
H A D | _alt.py | 5 from ._delim import parse namespace 6 yield from parse(text, anon_name)
|
/third_party/rust/crates/minimal-lexical/fuzz/fuzz_targets/ |
H A D | parse-float-f32.rs | 3 mod parse; modules 9 let _ = parse::parse_float::<f32>(data);
|
H A D | parse-float-f64.rs | 3 mod parse; modules 9 let _ = parse::parse_float::<f64>(data);
|
/third_party/icu/icu4c/source/test/intltest/ |
H A D | dtfmrgts.cpp | 106 today = sdf->parse(todayS, status); in Test4029195() 107 failure(status, "sdf->parse"); in Test4029195() 115 rt = sdf->format(sdf->parse(todayS, status), rt, pos); in Test4029195() 116 failure(status, "sdf->parse"); in Test4029195() 272 UDate got = fmt->parse(s, status); in Test4056591() 273 failure(status, "fmt->parse"); in Test4056591() 350 UDate myDate = formatter.parse( dateString, pos ); in Test4060212() 376 myDate = formatter2.parse( dateString, pos ); in Test4060212() 401 logln(UnicodeString("") + df->parse("35/01/1971", status)); in Test4061287() 402 failure(status, "df->parse(\"3 in Test4061287() [all...] |
H A D | numrgts.cpp | 63 public Number parse(String text, ParsePosition parsePosition) 67 /* Just use one of the parse functions */ 68 virtual void parse( const UnicodeString& /* text */, 75 virtual void parse( const UnicodeString& text, 79 NumberFormat::parse(text, result, status); 426 nfcommon->parse(stringValue, result, status); in assignFloatValue() 427 failure(status, "nfcommon->parse", Locale::getUS()); in assignFloatValue() 450 format->parse(UnicodeString("0"), result, status); in Test4059870() 451 failure(status, "format->parse", Locale::getUS()); in Test4059870() 586 * DecimalFormat.parse return [all...] |
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/ |
H A D | DateFormatRegressionTest.java | 71 today = sdf.parse(todayS.toString()); in Test4029195() 79 rt = sdf.format(sdf.parse(todayS.toString()), rt, pos); in Test4029195() 204 Date got = fmt.parse(s); in Test4056591() 258 Date myDate = formatter.parse(dateString, pos); in Test4060212() 270 myDate = formatter.parse(dateString, pos); in Test4060212() 285 logln(df.parse("35/01/1971").toString()); in Test4061287() 293 logln(df.parse("35/01/1971").toString()); in Test4061287() 396 /* The java.text.DateFormat.parse(String) method expects for the 415 Date d = fmt.parse(tests[i]); in Test4073003() 416 Date dd = fmt.parse(test in Test4073003() [all...] |
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/format/ |
H A D | DateFormatRegressionTest.java | 74 today = sdf.parse(todayS.toString()); in Test4029195() 82 rt = sdf.format(sdf.parse(todayS.toString()), rt, pos); in Test4029195() 207 Date got = fmt.parse(s); in Test4056591() 261 Date myDate = formatter.parse(dateString, pos); in Test4060212() 273 myDate = formatter.parse(dateString, pos); in Test4060212() 288 logln(df.parse("35/01/1971").toString()); in Test4061287() 296 logln(df.parse("35/01/1971").toString()); in Test4061287() 399 /* The java.text.DateFormat.parse(String) method expects for the 418 Date d = fmt.parse(tests[i]); in Test4073003() 419 Date dd = fmt.parse(test in Test4073003() [all...] |
/third_party/rust/crates/cxx/gen/build/src/syntax/ |
H A D | parse.rs | 15 use syn::parse::{ParseStream, Parser}; 65 let attrs = attrs::parse( in parse_struct() 134 let attrs = attrs::parse( in parse_struct() 199 let attrs = attrs::parse( in parse_enum() 292 let attrs = attrs::parse( in parse_variant() 363 let attrs = attrs::parse( in parse_foreign_mod() 475 attrs.extend(attrs::parse( in parse_extern_type() 532 attrs.extend(attrs::parse( in parse_extern_fn() 714 let visibility: Visibility = input.parse()?; in parse_extern_verbatim() 751 let type_token: Token![type] = input.parse() in parse_extern_verbatim_type() [all...] |
/third_party/rust/crates/cxx/gen/lib/src/syntax/ |
H A D | parse.rs | 15 use syn::parse::{ParseStream, Parser}; 65 let attrs = attrs::parse( in parse_struct() 134 let attrs = attrs::parse( in parse_struct() 199 let attrs = attrs::parse( in parse_enum() 292 let attrs = attrs::parse( in parse_variant() 363 let attrs = attrs::parse( in parse_foreign_mod() 475 attrs.extend(attrs::parse( in parse_extern_type() 532 attrs.extend(attrs::parse( in parse_extern_fn() 714 let visibility: Visibility = input.parse()?; in parse_extern_verbatim() 751 let type_token: Token![type] = input.parse() in parse_extern_verbatim_type() [all...] |
/third_party/rust/crates/cxx/macro/src/syntax/ |
H A D | parse.rs | 15 use syn::parse::{ParseStream, Parser}; 65 let attrs = attrs::parse( in parse_struct() 134 let attrs = attrs::parse( in parse_struct() 199 let attrs = attrs::parse( in parse_enum() 292 let attrs = attrs::parse( in parse_variant() 363 let attrs = attrs::parse( in parse_foreign_mod() 475 attrs.extend(attrs::parse( in parse_extern_type() 532 attrs.extend(attrs::parse( in parse_extern_fn() 714 let visibility: Visibility = input.parse()?; in parse_extern_verbatim() 751 let type_token: Token![type] = input.parse() in parse_extern_verbatim_type() [all...] |
/third_party/rust/crates/cxx/gen/cmd/src/syntax/ |
H A D | parse.rs | 15 use syn::parse::{ParseStream, Parser}; 65 let attrs = attrs::parse( in parse_struct() 134 let attrs = attrs::parse( in parse_struct() 199 let attrs = attrs::parse( in parse_enum() 292 let attrs = attrs::parse( in parse_variant() 363 let attrs = attrs::parse( in parse_foreign_mod() 475 attrs.extend(attrs::parse( in parse_extern_type() 532 attrs.extend(attrs::parse( in parse_extern_fn() 714 let visibility: Visibility = input.parse()?; in parse_extern_verbatim() 751 let type_token: Token![type] = input.parse() in parse_extern_verbatim_type() [all...] |
/third_party/rust/crates/cxx/syntax/ |
H A D | parse.rs | 15 use syn::parse::{ParseStream, Parser}; 65 let attrs = attrs::parse( in parse_struct() 134 let attrs = attrs::parse( in parse_struct() 199 let attrs = attrs::parse( in parse_enum() 292 let attrs = attrs::parse( in parse_variant() 363 let attrs = attrs::parse( in parse_foreign_mod() 475 attrs.extend(attrs::parse( in parse_extern_type() 532 attrs.extend(attrs::parse( in parse_extern_fn() 714 let visibility: Visibility = input.parse()?; in parse_extern_verbatim() 751 let type_token: Token![type] = input.parse() in parse_extern_verbatim_type() [all...] |
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/common/ |
H A D | wpa_common.c | 988 struct wpa_ft_ies *parse, int use_sha384) in wpa_ft_parse_ftie() 992 parse->ftie = ie; in wpa_ft_parse_ftie() 993 parse->ftie_len = ie_len; in wpa_ft_parse_ftie() 1018 parse->r1kh_id = pos; in wpa_ft_parse_ftie() 1021 parse->gtk = pos; in wpa_ft_parse_ftie() 1022 parse->gtk_len = len; in wpa_ft_parse_ftie() 1031 parse->r0kh_id = pos; in wpa_ft_parse_ftie() 1032 parse->r0kh_id_len = len; in wpa_ft_parse_ftie() 1035 parse->igtk = pos; in wpa_ft_parse_ftie() 1036 parse in wpa_ft_parse_ftie() 987 wpa_ft_parse_ftie(const u8 *ie, size_t ie_len, struct wpa_ft_ies *parse, int use_sha384) wpa_ft_parse_ftie() argument 1060 wpa_ft_parse_ies(const u8 *ies, size_t ies_len, struct wpa_ft_ies *parse, int use_sha384) wpa_ft_parse_ies() argument [all...] |
/third_party/python/Lib/distutils/ |
H A D | version.py | 15 * the 'parse' method takes a string and parses it to some internal 17 'parse' raises a ValueError exception 19 if supplied, is passed to 'parse' 20 * __str__ reconstructs the string that was passed to 'parse' (or 40 self.parse(vstring) 79 # __init__ (string) - create and take same action as 'parse' 81 # parse (string) - convert a string representation to whatever 85 # (if not identical to) the string supplied to parse 134 def parse (self, vstring): member in StrictVersion 306 self.parse(vstrin 309 def parse (self, vstring): global() member in LooseVersion [all...] |
/third_party/rust/crates/syn/tests/ |
H A D | test_round_trip.rs | 20 extern crate rustc_parse as parse; 34 use rustc_session::parse::ParseSess; 79 errorf!("=== {}: syn failed to parse\n{:?}\n", path.display(), msg); in test() 88 let edition = repo::edition(path).parse().unwrap(); in test() 99 "=== {}: ignore - librustc failed to parse original content: {}\n", in test() 110 errorf!("=== {}: librustc failed to parse", path.display()); in test() 156 parse::parse_crate_from_source_str(name, content, sess) in librustc_parse()
|
/third_party/icu/icu4j/main/tests/localespi/src/com/ibm/icu/dev/test/localespi/ |
H A D | NumberFormatTest.java | 193 n1 = nf.parse(s1); in TestICUEquivalent() 199 n2 = icunf.parse(s2); in TestICUEquivalent() 228 n1 = nf.parse(s1); in TestICUEquivalent() 234 n2 = icunf.parse(s2); in TestICUEquivalent() 263 n1 = nf.parse(s1); in TestICUEquivalent() 269 n2 = icunf.parse(s2); in TestICUEquivalent()
|
/third_party/skia/third_party/externals/angle2/tools/flex-bison/third_party/skeletons/ |
H A D | yacc.c | 41 # Check the value of %define parse.lac and friends, where LAC stands for 43 b4_percent_define_default([[parse.lac]], [[none]]) 44 b4_percent_define_default([[parse.lac.es-capacity-initial]], [[20]]) 45 b4_percent_define_default([[parse.lac.memory-trace]], [[failures]]) 46 b4_percent_define_check_values([[[[parse.lac]], [[full]], [[none]]]], 47 [[[[parse.lac.memory-trace]], 51 [m4_if(b4_percent_define_get([[parse.lac]]), 234 yytype_int16 yyesa@{]b4_percent_define_get([[parse.lac.es-capacity-initial]])[@}; 251 ]b4_pull_if([b4_function_declare([b4_prefix[parse]], [[int]], b4_parse_param) 271 [b4_function_declare(b4_prefix[parse], [in [all...] |
/third_party/ltp/testcases/realtime/func/pi-tests/ |
H A D | Makefile | 25 INSTALL_TARGETS := run_auto.sh parse-testpi1.py parse-testpi2.py
|
/third_party/rust/crates/minimal-lexical/src/ |
H A D | lib.rs | 17 //! // Let's say we want to parse "1.2345". 19 //! // the fraction digits ("2345"), and then parse the exponent to a 32-bit 56 pub mod parse; modules 68 pub use self::parse::parse_float;
|
/kernel/linux/linux-6.6/tools/testing/selftests/bpf/ |
H A D | test_bpftool_synctypes.py | 26 @reader: a pointer to the open file to parse 34 @start_marker: regex marking the beginning of a structure to parse 42 def parse(self, pattern, end_marker): member in BlockParser 47 @end_marker: regex marking the end of the block to parse 62 @reader: a pointer to the open file to parse 63 @array_name: name of the array to parse 78 def parse(self): member in ArrayParser 98 def parse(self, pattern, end_marker): member in InlineListParser 103 @end_marker: regex marking the end of the block to parse 142 Search for and parse [all...] |
/third_party/PyYAML/tests/lib/ |
H A D | test_yaml_ext.py | 16 old_parse = yaml.parse 80 yaml.parse = new_parse 103 yaml.parse = old_parse 170 py_events = list(yaml.parse(py_data, Loader=yaml.PyLoader)) 173 for event in yaml.parse(c_data, Loader=yaml.CLoader): 203 events = list(yaml.parse(data, Loader=yaml.PyLoader)) 207 py_events = list(yaml.parse(c_data, Loader=yaml.PyLoader)) 208 c_events = list(yaml.parse(c_data, Loader=yaml.CLoader))
|