/third_party/icu/icu4c/source/i18n/ |
H A D | measunit_extra.cpp | 538 * @param source The identifier to parse. This function does not make a copy 554 MeasureUnitImpl parse(UErrorCode& status) { 561 // The dimenionless unit: nothing to parse. leave result as is. 671 * Returns an error if we parse both compound units and "-and-", since mixed 1002 return Parser::from(identifier, status).parse(status); 1010 memory = Parser::from(measureUnit.getIdentifier(), status).parse(status); 1020 return Parser::from(measureUnit.getIdentifier(), status).parse(status); 1186 return Parser::from(identifier, status).parse(status).build(status);
|
H A D | numparse_impl.cpp | 231 void NumberParserImpl::parse(const UnicodeString& input, bool greedy, ParsedNumber& result, in parse() function in NumberParserImpl 233 return parse(input, 0, greedy, result, status); in parse() 236 void NumberParserImpl::parse(const UnicodeString& input, int32_t start, bool greedy, ParsedNumber& result, in parse() function in NumberParserImpl 291 // NOTE: If we get here, the greedy parse completed without consuming the entire string. in parseGreedy() 318 // In a non-greedy parse, we attempt all possible matches and pick the best. in parseLongestRecursive()
|
/third_party/node/deps/icu-small/source/i18n/ |
H A D | measunit_extra.cpp | 538 * @param source The identifier to parse. This function does not make a copy 554 MeasureUnitImpl parse(UErrorCode& status) { 561 // The dimenionless unit: nothing to parse. leave result as is. 671 * Returns an error if we parse both compound units and "-and-", since mixed 1002 return Parser::from(identifier, status).parse(status); 1010 memory = Parser::from(measureUnit.getIdentifier(), status).parse(status); 1020 return Parser::from(measureUnit.getIdentifier(), status).parse(status); 1186 return Parser::from(identifier, status).parse(status).build(status);
|
H A D | numparse_impl.cpp | 231 void NumberParserImpl::parse(const UnicodeString& input, bool greedy, ParsedNumber& result, in parse() function in NumberParserImpl 233 return parse(input, 0, greedy, result, status); in parse() 236 void NumberParserImpl::parse(const UnicodeString& input, int32_t start, bool greedy, ParsedNumber& result, in parse() function in NumberParserImpl 291 // NOTE: If we get here, the greedy parse completed without consuming the entire string. in parseGreedy() 318 // In a non-greedy parse, we attempt all possible matches and pick the best. in parseLongestRecursive()
|
/third_party/node/deps/npm/test/lib/commands/ |
H A D | profile.js | 86 t.same(JSON.parse(result()), userProfile, 'should output json profile result') 183 JSON.parse(result()), 226 t.same(JSON.parse(result()), userProfile, 'should output json profile result and ignore args') 334 JSON.parse(result()), 1007 t.same(JSON.parse(result()), { tfa: false }, 'should output json already disabled msg')
|
H A D | fund.js | 233 JSON.parse(joinedOutput()), 278 JSON.parse(joinedOutput()), 306 JSON.parse(joinedOutput()),
|
/third_party/skia/third_party/externals/icu/source/i18n/ |
H A D | measunit_extra.cpp | 542 * @param source The identifier to parse. This function does not make a copy 558 MeasureUnitImpl parse(UErrorCode& status) { 565 // The dimenionless unit: nothing to parse. leave result as is. 675 * Returns an error if we parse both compound units and "-and-", since mixed 963 return Parser::from(identifier, status).parse(status); 971 memory = Parser::from(measureUnit.getIdentifier(), status).parse(status); 981 return Parser::from(measureUnit.getIdentifier(), status).parse(status); 1120 return Parser::from(identifier, status).parse(status).build(status);
|
H A D | numparse_impl.cpp | 231 void NumberParserImpl::parse(const UnicodeString& input, bool greedy, ParsedNumber& result, in parse() function in NumberParserImpl 233 return parse(input, 0, greedy, result, status); in parse() 236 void NumberParserImpl::parse(const UnicodeString& input, int32_t start, bool greedy, ParsedNumber& result, in parse() function in NumberParserImpl 291 // NOTE: If we get here, the greedy parse completed without consuming the entire string. in parseGreedy() 318 // In a non-greedy parse, we attempt all possible matches and pick the best. in parseLongestRecursive()
|
/third_party/python/Lib/ |
H A D | cgi.py | 43 import urllib.parse namespace 51 __all__ = ["MiniFieldStorage", "FieldStorage", "parse", "parse_multipart", 129 def parse(fp=None, environ=os.environ, keep_blank_values=0, function 195 return urllib.parse.parse_qs(qs, keep_blank_values, strict_parsing, 605 query = urllib.parse.parse_qsl( 621 query = urllib.parse.parse_qsl(
|
/third_party/rust/crates/proc-macro2/src/ |
H A D | fallback.rs | 3 use crate::parse::{self, Cursor}; 182 parse::token_stream(cursor) in from_str() 188 f.write_str("cannot parse string into token stream") in fmt() 227 .parse() in from() 228 .expect("compiler token stream parse failed") in from() 237 .parse() in from() 238 .expect("failed to parse to compiler tokens") in from() 1112 if let Ok((rest, mut literal)) = parse::literal(cursor) { in from_str()
|
/third_party/rust/crates/nix/src/sys/ |
H A D | signal.rs | 1157 assert_eq!(signal.as_ref().parse::<Signal>().unwrap(), signal); in test_from_str_round_trips() 1158 assert_eq!(signal.to_string().parse::<Signal>().unwrap(), signal); in test_from_str_round_trips() 1165 assert_eq!("NOSIGNAL".parse::<Signal>(), errval); in test_from_str_invalid_value() 1166 assert_eq!("kill".parse::<Signal>(), errval); in test_from_str_invalid_value() 1167 assert_eq!("9".parse::<Signal>(), errval); in test_from_str_invalid_value()
|
/third_party/rust/crates/syn/src/ |
H A D | punctuated.rs | 36 use crate::parse::{Parse, ParseStream, Result}; 262 /// Parsing continues until the end of this parse stream. The entire content 263 /// of this parse stream must consist of `T` and `P`. 271 Self::parse_terminated_with(input, T::parse) in parse_terminated() 274 /// Parses zero or more occurrences of `T` using the given parse function, 302 let punct = input.parse()?; in parse_terminated_with() 323 Self::parse_separated_nonempty_with(input, T::parse) in parse_separated_nonempty() 326 /// Parses one or more occurrences of `T` using the given parse function, 351 let punct = input.parse()?; in parse_separated_nonempty_with()
|
/third_party/json/tests/src/ |
H A D | unit-ubjson.cpp | 789 CHECK_THROWS_WITH_AS(_ = json::from_ubjson(vec2), "[json.exception.parse_error.115] parse error at byte 5: syntax error while parsing UBJSON high-precision number: invalid number text: 1A", json::parse_error); 791 CHECK_THROWS_WITH_AS(_ = json::from_ubjson(vec3), "[json.exception.parse_error.115] parse error at byte 5: syntax error while parsing UBJSON high-precision number: invalid number text: 1.", json::parse_error); 793 CHECK_THROWS_WITH_AS(_ = json::from_ubjson(vec4), "[json.exception.parse_error.113] parse error at byte 2: syntax error while parsing UBJSON size: expected length type specification (U, i, I, l, L) after '#'; last byte: 0x02", json::parse_error); 1264 json j = json::parse("[1,2,3,4,5]"); 1276 json j = json::parse("[1,2,3,4,5]"); 1288 json j = json::parse("[1,2,3,4,5]"); 1303 json j = json::parse("[[[[]]]]"); 1315 json j = json::parse("[[[[]]]]"); 1327 json j = json::parse("[[[[]]]]"); 1517 json j = json::parse( [all...] |
/third_party/libphonenumber/java/libphonenumber/src/com/google/i18n/phonenumbers/ |
H A D | PhoneNumberUtil.java | 859 * PhoneNumber number = phoneUtil.parse("16502530000", "US"); 933 * PhoneNumber number = phoneUtil.parse("18002530000", "US"); 1753 parse(normalizedNationalNumber.substring(nationalPrefix.length()), regionCode)); in rawInputContainsNationalPrefix() 2082 PhoneNumber possiblyValidNumber = parse(numberToTry, regionCode); in getInvalidExampleNumber() 2114 return parse(desc.getExampleNumber(), regionCode); in getExampleNumberForType() 2143 return parse("+" + countryCallingCode + desc.getExampleNumber(), UNKNOWN_REGION); in getExampleNumberForType() 2173 return parse("+" + countryCallingCode + desc.getExampleNumber(), UNKNOWN_REGION); in getExampleNumberForNonGeoEntity() 2769 return isPossibleNumber(parse(number, regionDialingFrom)); in isPossibleNumber() 2983 // Attempt to parse the first digits as an international prefix. in maybeStripInternationalPrefixAndNormalize() 3009 // Attempt to parse th in maybeStripNationalPrefixAndCarrierCode() 3128 public PhoneNumber parse(CharSequence numberToParse, String defaultRegion) parse() method in PhoneNumberUtil 3139 public void parse(CharSequence numberToParse, String defaultRegion, PhoneNumber phoneNumber) parse() method in PhoneNumberUtil [all...] |
/kernel/linux/build/ |
H A D | kernel_build.py | 126 def parse(self, content): member in Reporter 247 for report in reporter.parse(errmsg): 257 for report in reporter.parse(errmsg):
|
/third_party/icu/icu4c/source/test/intltest/ |
H A D | numfmtdatadriventest.cpp | 186 appendErrorMessage.append("Error setting parse no exponent flag."); in adjustDecimalFormat() 340 fmtPtr->parse(tuple.parse, result, ppos); in isParsePass() 376 // All other cases parse to a DecimalQuantity, not a double. in isParsePass() 416 fmtPtr->parseCurrency(tuple.parse, ppos)); in isParseCurrencyPass()
|
/third_party/icu/tools/cldr/cldr-to-icu/src/main/java/org/unicode/icu/tool/cldrtoicu/ |
H A D | IcuDataDumper.java | 68 parser.parse(); in main() 86 p.parse(); in walkDirectory() 140 public boolean parse() throws IOException { in parse() method in IcuDataDumper.IcuDataParser 143 // use trying to parse the transliteration files, which are a different type. in parse() 256 throw new IllegalStateException("cannot parse line: " + match.get(0)); in processLine()
|
/third_party/icu/tools/cldr/cldr-to-icu/src/main/java/org/unicode/icu/tool/cldrtoicu/localedistance/ |
H A D | LocaleDistanceMapper.java | 160 public static LsrSpec parse(String rawSpec, PartitionInfo.Builder rmb) { in parse() method in LocaleDistanceMapper.LsrSpec 360 LsrSpec desired = LsrSpec.parse(v.get(MATCH_DESIRED), partitionBuilder); in buildDistanceData() 361 LsrSpec supported = LsrSpec.parse(v.get(MATCH_SUPPORTED), partitionBuilder); in buildDistanceData()
|
/third_party/libbpf/scripts/ |
H A D | sync-kernel.sh | 205 TIP_SYM_REF=$(git symbolic-ref -q --short HEAD || git rev-parse HEAD) 206 TIP_COMMIT=$(git rev-parse HEAD) 207 BPF_TIP_COMMIT=$(git rev-parse ${BPF_BRANCH})
|
/third_party/node/deps/npm/node_modules/http-cache-semantics/ |
H A D | index.js | 358 const serverDate = Date.parse(this._resHeaders.date); 428 const expires = Date.parse(this._resHeaders.expires); 437 const lastModified = Date.parse(this._resHeaders['last-modified']);
|
/third_party/node/deps/npm/node_modules/normalize-package-data/lib/ |
H A D | fixer.js | 273 } else if (url.parse(data.bugs).protocol) { 284 if (typeof (oldBugs.url) === 'string' && url.parse(oldBugs.url).protocol) { 321 if (!url.parse(data.homepage).protocol) {
|
/third_party/vk-gl-cts/external/openglcts/modules/common/ |
H A D | glcShaderLibrary.cpp | 93 vector<tcu::TestNode*> parse(const char* input); 1095 vector<tcu::TestNode*> ShaderParser::parse(const char* input) in parse() function in deqp::sl::ShaderParser 1107 PARSE_DBG(("parse()\n")); in parse() 1159 vector<tcu::TestNode*> nodes = parser.parse(&buf[0]); in loadShaderFile()
|
/third_party/skia/tests/ |
H A D | ColorSpaceTest.cpp | 152 auto parse = [&](const char* path) { in DEF_TEST() local 163 sk_sp<SkColorSpace> z30 = parse("icc_profiles/HP_ZR30w.icc"); in DEF_TEST() 164 sk_sp<SkColorSpace> z32 = parse("icc_profiles/HP_Z32x.icc"); in DEF_TEST()
|
/third_party/skia/third_party/externals/harfbuzz/test/shape/ |
H A D | hb_test_tools.py | 250 self.unicodes = Unicode.parse (l) 385 def parse (s): member in Unicode 392 return ''.join (chr (x) for x in Unicode.parse (s))
|
/third_party/toybox/scripts/ |
H A D | config2help.c | 3 function parse() reads Config.in data into *sym list, then 231 void parse(char *filename) in parse() function 255 } else if ((s = keyword("source", line))) parse(s); in parse() 314 parse(argv[1]); in main()
|