/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/eap_server/ |
H A D | eap_server.c | 261 /* parse rxResp, respId, respMethod */ in SM_STATE() 337 /* parse rxResp, respId, respMethod */ in SM_STATE() 809 struct erp_tlvs parse; in SM_STATE() local 845 if (erp_parse_tlvs(tlvs, end, &parse, 1) < 0) in SM_STATE() 848 if (!parse.keyname) { in SM_STATE() 855 parse.keyname, parse.keyname_len); in SM_STATE() 856 if (parse.keyname_len > 253) { in SM_STATE() 861 os_memcpy(nai, parse.keyname, parse in SM_STATE() 2014 struct erp_tlvs parse; eap_erp_update_identity() local [all...] |
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/format/ |
H A D | NumberFormatTest.java | 211 double value = parser.parse("-0,5").doubleValue(); in TestParseNegativeWithFaLocale() 222 double value = parser.parse("\u208B0.5").doubleValue(); in TestParseNegativeWithAlternativeMinusSign() 341 double a = fmt.parse(s, pos).doubleValue(); in TestExponential() 343 logln(" -parse-> " + Double.toString(a)); in TestExponential() 346 errln("FAIL: Partial parse (" + pos.getIndex() + " chars) -> " + a); in TestExponential() 357 Number A = fmt.parse(s, pos); in TestExponential() 361 logln(" -parse-> " + a); in TestExponential() 365 errln("FAIL: Partial parse (" + pos.getIndex() + " chars) -> " + Long.toString(a)); in TestExponential() 367 errln("Fail to parse the string: " + s); in TestExponential() 407 Number num = fmt.parse(st in TestParseCurrencyTrailingSymbol() [all...] |
H A D | IntlTestSimpleDateFormatAPI.java | 96 // ======= Test parse() in TestAPI() 98 logln("Testing parse()"); in TestAPI() 104 result1 = def.parse(text, pos); in TestAPI() 108 result2 = def.parse(text); in TestAPI() 111 errln("ERROR: parse() failed"); in TestAPI() 166 logln("Testing parse()"); in TestAPI() 171 Date dt = pat.parse("2007W014", new ParsePosition(0)); in TestAPI()
|
/third_party/ffmpeg/libavcodec/ |
H A D | vp3_parser.c | 23 static int parse(AVCodecParserContext *s, in parse() function 43 .parser_parse = parse,
|
/third_party/json/tests/src/ |
H A D | fuzzer-parse_json.cpp | 13 - j1 = parse(data) 15 - j2 = parse(s1) 34 // step 1: parse input in LLVMFuzzerTestOneInput() 35 json j1 = json::parse(data, data + size); in LLVMFuzzerTestOneInput() 44 // parse serialization in LLVMFuzzerTestOneInput() 45 json j2 = json::parse(s1); in LLVMFuzzerTestOneInput() 61 // parse errors are ok, because input may be random bytes in LLVMFuzzerTestOneInput()
|
/third_party/node/test/parallel/ |
H A D | test-buffer-tojson.js | 17 const obj = JSON.parse(json); 34 assert.deepStrictEqual(buffer, JSON.parse(string, receiver));
|
H A D | test-debugger-heap-profiler.js | 27 JSON.parse(readFileSync(filename, 'utf8')); 31 JSON.parse(readFileSync(filename, 'utf8'));
|
H A D | test-querystring-multichar-separator.js | 15 check(qs.parse('foo=>bar&&bar=>baz', '&&', '=>'), 21 check(qs.parse('foo==>bar, bar==>baz', ', ', '==>'),
|
H A D | test-inspector-open.js | 34 const port = url.parse(msg.url).port; 45 const port = url.parse(msg.url).port; 73 const port = url.parse(msg.url).port;
|
/third_party/node/benchmark/url/ |
H A D | legacy-url-parse.js | 13 let result = url.parse(data[0]); // Avoid dead code elimination 17 result = url.parse(data[i]);
|
/third_party/rust/crates/clap/examples/tutorial_derive/ |
H A D | 04_02_validate.rs | 14 let cli = Cli::parse(); in main() 23 .parse() in port_in_range()
|
/third_party/rust/crates/cxx/tests/ |
H A D | cxx_gen.rs | 18 let source = BRIDGE0.parse().unwrap(); in test_extern_c_function() 30 let source = BRIDGE0.parse().unwrap(); in test_impl_annotation()
|
/third_party/python/Lib/email/ |
H A D | __init__.py | 50 """Read a file and parse its contents into a Message object model. 55 return Parser(*args, **kws).parse(fp) 58 """Read a binary file and parse its contents into a Message object model. 63 return BytesParser(*args, **kws).parse(fp)
|
/third_party/skia/modules/svg/src/ |
H A D | SkSVGFeOffset.cpp | 17 this->setDx(SkSVGAttributeParser::parse<SkSVGNumberType>("dx", name, value)) || in parseAndSetAttribute() 18 this->setDy(SkSVGAttributeParser::parse<SkSVGNumberType>("dy", name, value)); in parseAndSetAttribute()
|
/third_party/icu/icu4j/perf-tests/src/com/ibm/icu/dev/test/perf/ |
H A D | DecimalFormatPerformanceTest.java | 54 decimalAsNumber = icuDecimalFormat[0].parse(decimalAsString); in setup() 84 icuDecimalFormat[id].parse(decimalAsString); in TestICUParse() 97 javaDecimalFormat[id].parse(decimalAsString); in TestJDKParse()
|
H A D | DateFormatPerformanceTest.java | 53 date = icuDateFormat[0].parse(dateString); in setup() 82 icuDateFormat[id].parse(dateString); in TestICUParse() 94 jdkDateFormat[id].parse(dateString); in TestJDKParse()
|
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/ |
H A D | IntlTestSimpleDateFormatAPI.java | 93 // ======= Test parse() in TestAPI() 95 logln("Testing parse()"); in TestAPI() 101 result1 = def.parse(text, pos); in TestAPI() 105 result2 = def.parse(text); in TestAPI() 108 errln("ERROR: parse() failed"); in TestAPI() 163 logln("Testing parse()"); in TestAPI() 168 Date dt = pat.parse("2007W014", new ParsePosition(0)); in TestAPI()
|
/third_party/icu/icu4c/source/i18n/ |
H A D | reldtfmt.h | 17 * \brief C++ API: Format and parse relative dates and times. 129 * Parse a date/time string beginning at the given parse position. For 135 * parse succeeds. Clients may insist on strict adherence to the format by 143 * start position if the parse failed. 147 virtual void parse( const UnicodeString& text, 152 * Parse a date/time string starting at the given parse position. For 158 * parse succeeds. Clients may insist on strict adherence to the format by 166 * start position if the parse failed. 170 UDate parse( const UnicodeString& text, 178 * possible. Assuming no parse error [all...] |
/third_party/node/tools/actions/ |
H A D | commit-queue.sh | 75 start_sha=$(git rev-parse $UPSTREAM/$DEFAULT_BRANCH) 76 end_sha=$(git rev-parse HEAD) 88 commit_head=$(grep 'Fetched commits as' output | cut -d. -f3 | xargs git rev-parse)
|
/third_party/node/deps/cjs-module-lexer/dist/ |
H A D | lexer.js | 1 "use strict";exports.parse=parse;exports.init=init;let A;const Q=1===new Uint8Array(new Uint16Array([1]).buffer)[0];function parse(g,I="@"){if(!A)throw new Error("Not initialized");const D=g.length+1,N=(A.__heap_base.value||A.__h (…) function
|
/third_party/node/deps/icu-small/source/i18n/ |
H A D | reldtfmt.h | 17 * \brief C++ API: Format and parse relative dates and times. 129 * Parse a date/time string beginning at the given parse position. For 135 * parse succeeds. Clients may insist on strict adherence to the format by 143 * start position if the parse failed. 147 virtual void parse( const UnicodeString& text, 152 * Parse a date/time string starting at the given parse position. For 158 * parse succeeds. Clients may insist on strict adherence to the format by 166 * start position if the parse failed. 170 UDate parse( const UnicodeString& text, 178 * possible. Assuming no parse error [all...] |
/third_party/rust/crates/bindgen/bindgen/ir/ |
H A D | annotations.rs | 86 anno.parse(&cursor.comment(), &mut matched_one); in new() 166 fn parse(&mut self, comment: &clang::Comment, matched: &mut bool) { in parse() functions 203 self.parse(&child, matched); in parse()
|
/third_party/skia/third_party/externals/icu/source/i18n/ |
H A D | reldtfmt.h | 17 * \brief C++ API: Format and parse relative dates and times. 129 * Parse a date/time string beginning at the given parse position. For 135 * parse succeeds. Clients may insist on strict adherence to the format by 143 * start position if the parse failed. 147 virtual void parse( const UnicodeString& text, 152 * Parse a date/time string starting at the given parse position. For 158 * parse succeeds. Clients may insist on strict adherence to the format by 166 * start position if the parse failed. 170 UDate parse( const UnicodeString& text, 178 * possible. Assuming no parse error [all...] |
/third_party/skia/third_party/externals/angle2/third_party/logdog/logdog/ |
H A D | streamname.py | 120 When constructed with parse or make, the stream path must be completely valid. 141 def parse(cls, path): member in StreamPath 145 path (str): the full stream path to parse. 186 return urllib.parse.urlunparse(( 191 '&'.join(('s=%s' % (urllib.parse.quote('%s/%s' % (project, path), ''))
|
/third_party/typescript/tests/baselines/reference/ |
H A D | externModule.js | 21 static parse(string: string): number; 37 var n=XDate.parse("3/2/2004"); 57 var n = XDate.parse("3/2/2004");
|