/third_party/rust/crates/cxx/gen/build/src/syntax/ |
H A D | qualified.rs | 2 use syn::parse::{Error, ParseStream, Result}; 29 let lit: LitStr = input.parse()?; in parse_quoted_or_unquoted() 40 let leading_colons: Option<Token![::]> = input.parse()?; in parse_unquoted() 54 let colons: Option<Token![::]> = input.parse()?; in parse_unquoted()
|
/third_party/rust/crates/cxx/gen/cmd/src/syntax/ |
H A D | qualified.rs | 2 use syn::parse::{Error, ParseStream, Result}; 29 let lit: LitStr = input.parse()?; in parse_quoted_or_unquoted() 40 let leading_colons: Option<Token![::]> = input.parse()?; in parse_unquoted() 54 let colons: Option<Token![::]> = input.parse()?; in parse_unquoted()
|
/third_party/rust/crates/cxx/macro/src/syntax/ |
H A D | qualified.rs | 2 use syn::parse::{Error, ParseStream, Result}; 29 let lit: LitStr = input.parse()?; in parse_quoted_or_unquoted() 40 let leading_colons: Option<Token![::]> = input.parse()?; in parse_unquoted() 54 let colons: Option<Token![::]> = input.parse()?; in parse_unquoted()
|
/third_party/rust/crates/cxx/gen/lib/src/syntax/ |
H A D | qualified.rs | 2 use syn::parse::{Error, ParseStream, Result}; 29 let lit: LitStr = input.parse()?; in parse_quoted_or_unquoted() 40 let leading_colons: Option<Token![::]> = input.parse()?; in parse_unquoted() 54 let colons: Option<Token![::]> = input.parse()?; in parse_unquoted()
|
/third_party/rust/crates/cxx/syntax/ |
H A D | qualified.rs | 2 use syn::parse::{Error, ParseStream, Result}; 29 let lit: LitStr = input.parse()?; in parse_quoted_or_unquoted() 40 let leading_colons: Option<Token![::]> = input.parse()?; in parse_unquoted() 54 let colons: Option<Token![::]> = input.parse()?; in parse_unquoted()
|
/third_party/skia/modules/svg/src/ |
H A D | SkSVGLine.cpp | 17 this->setX1(SkSVGAttributeParser::parse<SkSVGLength>("x1", n, v)) || in parseAndSetAttribute() 18 this->setY1(SkSVGAttributeParser::parse<SkSVGLength>("y1", n, v)) || in parseAndSetAttribute() 19 this->setX2(SkSVGAttributeParser::parse<SkSVGLength>("x2", n, v)) || in parseAndSetAttribute() 20 this->setY2(SkSVGAttributeParser::parse<SkSVGLength>("y2", n, v)); in parseAndSetAttribute()
|
H A D | SkSVGFeGaussianBlur.cpp | 17 this->setStdDeviation(SkSVGAttributeParser::parse<SkSVGFeGaussianBlur::StdDeviation>( in parseAndSetAttribute() 33 bool SkSVGAttributeParser::parse<SkSVGFeGaussianBlur::StdDeviation>( in parse() function in SkSVGAttributeParser 36 if (!this->parse(&values)) { in parse()
|
/third_party/rust/crates/regex/regex-syntax/src/ |
H A D | parser.rs | 11 /// [AST `ParserBuilder`](ast/parse/struct.ParserBuilder.html) 16 ast: ast::parse::ParserBuilder, 152 /// default), a regular expression will fail to parse if Unicode mode is 170 /// see the [`ast::parse`](ast/parse/index.html) module. 176 ast: ast::parse::Parser, 183 /// The parser can be run with `parse` method. The parse method returns 195 pub fn parse(&mut self, pattern: &str) -> Result<hir::Hir> { in parse() functions 196 let ast = self.ast.parse(patter in parse() [all...] |
/third_party/rust/crates/syn/src/ |
H A D | meta.rs | 5 use crate::parse::{Error, ParseStream, Parser, Result}; 55 /// kind = Some(meta.value()?.parse()?); 98 /// use syn::parse::{Parser, Result}; 106 /// let tea_parser = syn::meta::parser(|meta| attrs.parse(meta)); 121 /// fn parse(&mut self, meta: ParseNestedMeta) -> Result<()> { 123 /// self.kind = Some(meta.value()?.parse()?); 149 /// parse. Always use this if possible. Generally this is able to produce 173 /// `meta.parse::<Token![=]>()?`, so at most it is a minor convenience to 189 /// let s: LitStr = value.parse()?; // this parses `"EarlGrey"` 202 self.input.parse in value() [all...] |
H A D | parse_macro_input.rs | 2 /// tokens fail to parse. 4 /// Refer to the [`parse` module] documentation for more details about parsing 7 /// [`parse` module]: mod@crate::parse 23 /// use syn::parse::{Parse, ParseStream}; 30 /// fn parse(input: ParseStream) -> Result<Self> { 54 /// [`Parser` trait]: crate::parse::Parser 61 /// # use syn::parse::ParseStream; 94 /// match syn::parse::<$Type>($variable) { 110 match $crate::parse [all...] |
H A D | file.rs | 39 /// let syntax = syn::parse_file(&src).expect("Unable to parse file"); 91 use crate::parse::{Parse, ParseStream, Result}; 95 fn parse(input: ParseStream) -> Result<Self> { in parse() functions 102 items.push(input.parse()?); in parse()
|
/third_party/icu/icu4c/source/test/intltest/ |
H A D | dtfmapts.cpp | 183 // ======= Test parse() in testAPI() 186 logln("Testing parse()"); in testAPI() 199 result2 = def->parse(text, status); in testAPI() 201 errln("ERROR: parse() failed, stopping testing"); in testAPI() 206 result3 = def->parse(text, pos01); in testAPI() 275 * Test hiding of parse() and format() APIs in the Format hierarchy. 318 sdf.parse(str, status); in TestNameHiding() 319 sdf.parse(str, ppos); in TestNameHiding() 354 fmt.parse(str, obj, ppos); in TestNameHiding() 355 fmt.parse(st in TestNameHiding() [all...] |
/third_party/mesa3d/src/gallium/drivers/llvmpipe/ |
H A D | lp_state_fs_analysis.c | 91 struct tgsi_parse_context parse; in match_aero_minification_shader() local 131 tgsi_parse_init(&parse, tokens); in match_aero_minification_shader() 133 while (!tgsi_parse_end_of_tokens(&parse)) { in match_aero_minification_shader() 134 tgsi_parse_token(&parse); in match_aero_minification_shader() 136 switch (parse.FullToken.Token.Type) { in match_aero_minification_shader() 146 parse.FullToken.FullImmediate.Immediate.NrTokens - 1; in match_aero_minification_shader() 149 if (parse.FullToken.FullImmediate.u[chan].Float == 0.25f) { in match_aero_minification_shader() 167 tgsi_parse_free(&parse); in match_aero_minification_shader()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/ap/ |
H A D | wpa_auth_ft.c | 2289 struct ieee802_11_elems parse; in wpa_ft_process_rdie() local 2310 if (ieee802_11_parse_elems((u8 *) ies, ies_len, &parse, 1) == in wpa_ft_process_rdie() 2312 wpa_printf(MSG_DEBUG, "FT: Failed to parse request IEs"); in wpa_ft_process_rdie() 2318 if (parse.wmm_tspec) { in wpa_ft_process_rdie() 2321 if (parse.wmm_tspec_len + 2 < (int) sizeof(*tspec)) { in wpa_ft_process_rdie() 2323 "(%d)", (int) parse.wmm_tspec_len); in wpa_ft_process_rdie() 2336 os_memcpy(tspec, parse.wmm_tspec - 2, sizeof(*tspec)); in wpa_ft_process_rdie() 2340 if (parse.wmm_tspec && sm->wpa_auth->conf.ap_mlme) { in wpa_ft_process_rdie() 2360 if (parse.wmm_tspec && !sm->wpa_auth->conf.ap_mlme) { in wpa_ft_process_rdie() 2425 struct wpa_ft_ies parse; in wpa_sm_write_assoc_resp_ies() local 2745 wpa_ft_set_key_mgmt(struct wpa_state_machine *sm, struct wpa_ft_ies *parse) wpa_ft_set_key_mgmt() argument 2869 struct wpa_ft_ies parse; wpa_ft_process_auth_req() local 3116 struct wpa_ft_ies parse; wpa_ft_validate_reassoc() local [all...] |
/third_party/rust/crates/clap/tests/derive_ui/ |
H A D | external_subcommand_wrong_type.rs | 23 let _ = Opt::parse(); in main() 24 let _ = Opt2::parse(); in main() 25 let _ = Opt3::parse(); in main()
|
/third_party/rust/crates/syn/tests/common/ |
H A D | mod.rs | 8 pub mod parse; modules 10 /// Read the `ABORT_AFTER_FAILURE` environment variable, and parse it. 13 Ok(s) => s.parse().expect("failed to parse ABORT_AFTER_FAILURE"), in abort_after() 21 Ok(s) => s.parse().expect("failed to parse RUST_MIN_STACK"), in rayon_init()
|
/third_party/json/tests/src/ |
H A D | unit-json_pointer.cpp | 26 "[json.exception.parse_error.107] parse error at byte 1: JSON pointer must be empty or begin with '/' - was: 'foo'", json::parse_error&); 29 "[json.exception.parse_error.108] parse error: escape character '~' must be followed with '0' or '1'", json::parse_error&); 32 "[json.exception.parse_error.108] parse error: escape character '~' must be followed with '0' or '1'", json::parse_error&); 278 "[json.exception.parse_error.106] parse error: array index '01' must not begin with '0'", json::parse_error&); 280 "[json.exception.parse_error.106] parse error: array index '01' must not begin with '0'", json::parse_error&); 282 "[json.exception.parse_error.106] parse error: array index '01' must not begin with '0'", json::parse_error&); 284 "[json.exception.parse_error.106] parse error: array index '01' must not begin with '0'", json::parse_error&); 293 "[json.exception.parse_error.109] parse error: array index 'one' is not a number", json::parse_error&); 295 "[json.exception.parse_error.109] parse error: array index 'one' is not a number", json::parse_error&); 298 "[json.exception.parse_error.109] parse erro [all...] |
/third_party/icu/tools/cldr/cldr-to-icu/src/test/java/org/unicode/icu/tool/cldrtoicu/ |
H A D | RbPathTest.java | 24 assertThat(RbPath.parse("foo/bar/baz")).hasSegments("foo", "bar", "baz"); in testParseVsOf() 26 assertThat(RbPath.parse("/foo/bar/baz")).hasSegments("foo", "bar", "baz"); in testParseVsOf() 42 RbPath path = RbPath.parse("foo/bar/baz"); in testIteration() 53 assertThat(RbPath.of("foo").extendBy("bar/baz")).isNotEqualTo(RbPath.parse("foo/bar/baz")); in testExtendBy() 103 assertThrows(IllegalArgumentException.class, () -> RbPath.parse(path)); in assertBadPath()
|
/third_party/libphonenumber/tools/java/cpp-build/src/com/google/i18n/phonenumbers/ |
H A D | BuildMetadataCppFromXml.java | 75 public static Variant parse(String variantName) { in parse() method in BuildMetadataCppFromXml.Variant 97 public static Options parse(String commandName, String[] args) { in parse() method in BuildMetadataCppFromXml.Options 103 Variant variant = Variant.parse(basenameMatcher.group(1)); in parse() 104 Type type = Type.parse(basenameMatcher.group(2)); in parse() 162 Options opt = Options.parse(getCommandName(), getArgs()); in start()
|
/third_party/node/test/parallel/ |
H A D | test-http2-https-fallback.js | 13 const { parse } = require('url'); 52 const { alpnProtocol, httpVersion } = JSON.parse(raw); 90 Object.assign(parse(origin), clientOptions), 100 const { alpnProtocol, httpVersion } = JSON.parse(raw); 144 get(Object.assign(parse(origin), clientOptions), common.mustNotCall())
|
/third_party/parse5/bench/perf/ |
H A D | index.js | 40 parser.parse(test.html); 50 parser.parse(page); 96 workingCopyFn: () => workingCopy.parse(hugePage), 97 upstreamFn: () => upstreamParser.parse(hugePage), 130 upstreamParser.parse(writable.writtenData);
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/Utils/ |
H A D | AMDKernelCodeTUtils.cpp | 9 /// \file - utility functions to parse/print amd_kernel_code_t structure 30 #define RECORD(name, altName, print, parse) #name in get_amd_kernel_code_t_FldNames() 40 #define RECORD(name, altName, print, parse) #altName in get_amd_kernel_code_t_FldAltNames() 91 #define RECORD(name, altName, print, parse) print in getPrinterTable() 161 #define RECORD(name, altName, print, parse) parse in getParserTable()
|
/third_party/rust/crates/clang-sys/tests/ |
H A D | lib.rs | 10 fn parse() { in parse() functions 34 parse(); in test() 41 parse(); in test()
|
/third_party/typescript/tests/baselines/reference/ |
H A D | jsDeclarationsClassAccessor.js | 26 static parse(tokeniser) { 54 static parse(tokeniser) {
80 static parse(tokeniser: any): void;
|
/third_party/rust/crates/syn/codegen/src/ |
H A D | main.rs | 33 mod parse; modules 42 let defs = parse::parse()?; in main()
|