/third_party/skia/third_party/externals/icu/source/i18n/ |
H A D | collationruleparser.h | 128 void parse(const UnicodeString &ruleString, 148 void parse(const UnicodeString &ruleString, UErrorCode &errorCode);
|
/third_party/skia/third_party/externals/icu/source/i18n/unicode/ |
H A D | choicfmt.h | 429 using NumberFormat::parse; 438 * @param result Formattable to be set to the parse result. 439 * If parse fails, return contents are undefined. 442 * parse character. On parse failure, does not change. 445 virtual void parse(const UnicodeString& text,
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Transforms/Utils/ |
H A D | SymbolRewriter.h | 61 /// The RewriteMapParser can be used to parse a mapping file that provides the 96 bool parse(const std::string &MapFile, RewriteDescriptorList *Descriptors); 99 bool parse(std::unique_ptr<MemoryBuffer> &MapFile, RewriteDescriptorList *DL);
|
/third_party/skia/tools/perf-canvaskit-puppeteer/ |
H A D | skp_data_prep.js | 10 const SIMD_DATA = JSON.parse(fs.readFileSync('simd_out.json', 'utf8')); 11 const RELEASE_DATA = JSON.parse(fs.readFileSync('release_out.json', 'utf8'));
|
/third_party/python/Lib/wsgiref/ |
H A D | util.py | 40 from urllib.parse import quote 60 from urllib.parse import quote
|
/third_party/rust/crates/minimal-lexical/tests/ |
H A D | parse_tests.rs | 2 use minimal_lexical::{num, parse}; 7 assert!(expected == parse::parse_float::<F, _, _>(integer, fraction, exponent)); in check_parse_float() 157 // Adapted from test-parse-random failures. in parse_f64_test()
|
/third_party/rust/crates/syn/src/ |
H A D | lifetime.rs | 127 use crate::parse::{Parse, ParseStream, Result}; 131 fn parse(input: ParseStream) -> Result<Self> { in parse() functions
|
H A D | verbatim.rs | 1 use crate::parse::ParseStream;
|
/third_party/vk-gl-cts/framework/common/ |
H A D | tcuCommandLine.hpp | 147 bool parse (int argc, const char* const* argv); 148 bool parse (const std::string& cmdLine);
|
/third_party/weex-loader/src/ |
H A D | parser.js | 117 templater.parse(source, (err, obj) => { 122 // parse json to string and treat function specially 133 styler.parse(source, (err, obj) => {
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/ |
H A D | CommandLine.h | 832 // parse - Return true on error. 833 bool parse(Option &O, StringRef ArgName, StringRef Arg, DataType &V) { in parse() function in llvm::parser 926 // parse - Return true on error. 927 bool parse(Option &O, StringRef ArgName, StringRef Arg, bool &Val); 953 // parse - Return true on error. 954 bool parse(Option &O, StringRef ArgName, StringRef Arg, boolOrDefault &Val); 979 // parse - Return true on error. 980 bool parse(Option &O, StringRef ArgName, StringRef Arg, int &Val); 1001 // parse - Return true on error. 1002 bool parse(Optio 1159 bool parse(Option &, StringRef, StringRef Arg, std::string &Value) { parse() function in llvm::parser 1184 bool parse(Option &, StringRef, StringRef Arg, char &Value) { parse() function in llvm::parser [all...] |
/third_party/icu/icu4c/source/test/intltest/ |
H A D | numfmtst.cpp | 326 virtual void parse(const UnicodeString& , 329 virtual void parse( const UnicodeString& , 586 fmt.parse(s, af, pos); in TestExponential() 596 //| -parse-> -3.1416e-271 in TestExponential() 610 logln((UnicodeString)" -parse-> " + a); in TestExponential() 621 errln((UnicodeString)"FAIL: Partial parse (" + pos.getIndex() + " chars) -> " + a); in TestExponential() 635 fmt.parse(s, af, pos); in TestExponential() 642 logln((UnicodeString)" -parse-> " + a); in TestExponential() 647 errln((UnicodeString)"FAIL: Partial parse (" + pos.getIndex() + " chars) -> " + a); in TestExponential() 1059 Formattable n; format->parse(ar in TestParse() [all...] |
/kernel/linux/linux-5.10/tools/lib/traceevent/ |
H A D | event-parse.c | 24 #include "event-parse.h" 26 #include "event-parse-local.h" 59 * @buf: buffer to parse 62 * Initializes the internal buffer that tep_read_token() will parse. 1197 * This will parse tokens from the string given by 5421 static int parse_arg_add(struct tep_print_parse **parse, char *format, in parse_arg_add() argument 5439 *parse = parg; in parse_arg_add() 5449 static int parse_arg_format(struct tep_print_parse **parse, in parse_arg_format() argument 5520 parse_arg_add(parse, print_format, in parse_arg_format() 5562 parse_arg_add(parse, print_forma in parse_arg_format() 5607 parse_arg_string(struct tep_print_parse **parse, const char *format) parse_arg_string() argument 5657 struct tep_print_parse **parse = NULL; parse_args() local 5681 print_event_cache(struct tep_print_parse *parse, struct trace_seq *s, void *data, int size, struct tep_event *event) print_event_cache() argument 5716 struct tep_print_parse *parse = event->print_fmt.print_cache; pretty_print() local [all...] |
/third_party/jerryscript/tests/jerry/fail/ |
H A D | regression-test-issue-1671.js | 16 Array.prototype.sort(JSON.parse)
|
/third_party/python/Tools/c-analyzer/c_parser/ |
H A D | _state_machine.py | 22 def parse(srclines): function
|
/third_party/jinja2/ |
H A D | ext.py | 117 def parse(self, parser: "Parser") -> t.Union[nodes.Node, t.List[nodes.Node]]: member in Extension 351 source = self.environment.parse(source) 354 def parse(self, parser: "Parser") -> t.Union[nodes.Node, t.List[nodes.Node]]: member in InternationalizationExtension 415 # now parse until endtrans or pluralize 423 # if we have a pluralize block, we parse that too 596 def parse(self, parser: "Parser") -> nodes.ExprStmt: member in ExprStmtExtension 607 def parse(self, parser: "Parser") -> t.Union[nodes.Break, nodes.Continue]: member in LoopControlExtension 637 def parse(self, parser: "Parser") -> nodes.Output: member in DebugExtension 676 >>> node = env.parse('{{ (_("foo"), _(), ngettext("foo", "bar", 42)) }}') 852 node = environment.parse(sourc [all...] |
/third_party/node/lib/ |
H A D | url.js | 68 // Original url.parse() API 131 '`url.parse()` behavior is not standardized and prone to ' + 133 'instead. CVEs are not issued for `url.parse()` vulnerabilities.', 142 urlObject.parse(url, parseQueryString, slashesDenoteHost); 157 // characters in the host parsing loop in Url.prototype.parse, with the 170 Url.prototype.parse = function parse(url, parseQueryString, slashesDenoteHost) { 259 this.query = querystring.parse(this.search.slice(1)); 467 this.query = querystring.parse(this.query); 725 rel.parse(relativ [all...] |
/third_party/protobuf/python/google/protobuf/ |
H A D | json_format.py | 354 # to JSON. The parse back result will be different from original message. 592 raise ParseError('Failed to parse {0} field: {1}.'.format(name, e)) 596 raise ParseError('Failed to parse {0} field: {1}.'.format(name, e)) 598 raise ParseError('Failed to parse {0} field: {1}.'.format(name, e)) 772 raise ParseError('Couldn\'t parse integer: {0}.'.format(value)) 775 raise ParseError('Couldn\'t parse integer: "{0}".'.format(value)) 788 raise ParseError('Couldn\'t parse NaN, use quoted "NaN" instead.') 791 raise ParseError('Couldn\'t parse Infinity or value too large, ' 794 raise ParseError('Couldn\'t parse -Infinity or value too small, ' 804 raise ParseError('Couldn\'t parse floa [all...] |
/kernel/linux/linux-5.10/include/keys/ |
H A D | asymmetric-parser.h | 21 /* Attempt to parse a key from the data blob passed to add_key() or 27 int (*parse)(struct key_preparsed_payload *prep); member
|
/kernel/linux/linux-6.6/include/keys/ |
H A D | asymmetric-parser.h | 23 /* Attempt to parse a key from the data blob passed to add_key() or 29 int (*parse)(struct key_preparsed_payload *prep); member
|
/third_party/rust/crates/clap/tests/derive_ui/ |
H A D | tuple_struct.rs | 16 let opt = Opt::parse(); in main()
|
H A D | external_subcommand_misuse.rs | 10 let _ = Opt::parse(); in main()
|
H A D | rename_all_wrong_casing.rs | 19 let opt = Opt::parse(); in main()
|
/third_party/icu/icu4c/source/tools/genrb/ |
H A D | parse.h | 11 * File parse.h 32 struct SRBRoot* parse(UCHARBUF *buf, const char* inputDir, const char* outputDir,
|
/third_party/node/deps/icu-small/source/tools/genrb/ |
H A D | parse.h | 11 * File parse.h 32 struct SRBRoot* parse(UCHARBUF *buf, const char* inputDir, const char* outputDir,
|