/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/DWARF/ |
H A D | DWARFContext.cpp | 704 CUIndex->parse(CUIndexData); in getCUIndex() 715 TUIndex->parse(TUIndexData); in getTUIndex() 725 GdbIndex->parse(GdbIndexData); in getGdbIndex() 789 DebugFrame->parse(debugFrameData); in getDebugFrame() 800 DebugFrame->parse(debugFrameData); in getEHFrame() 811 MacroDWO->parse(MacinfoDWOData); in getDebugMacroDWO() 821 Macro->parse(MacinfoData); in getDebugMacro() 894 // Make sure the offset is good before we try to parse. in getLineTableForUnit() 898 // We have to parse it first. in getLineTableForUnit()
|
/third_party/skia/third_party/externals/icu/source/i18n/ |
H A D | msgfmt.cpp | 492 msgPattern.parse(pattern, &parseError, ec); in applyPattern() 1371 MessageFormat::parse(int32_t msgStart, in parse() function in MessageFormat 1381 // parse() does not work with named arguments. in parse() 1430 // Just parse using the formatter. in parse() 1499 // the array count and the ending parse position. The caller of this method 1503 MessageFormat::parse(const UnicodeString& source, in parse() function in MessageFormat 1507 return parse(0, source, pos, count, ec); in parse() 1516 MessageFormat::parse(const UnicodeString& source, in parse() function in MessageFormat 1527 Formattable* result = parse(source, status, cnt); in parse() 1545 Formattable* tmpResult = parse(sourc in parseObject() [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/lib/Support/ |
H A D | CommandLine.cpp | 647 /// Arg/Value pair and return the Option to parse it with. 1000 // Get the environment variable they want us to parse options out of. in ParseEnvironmentOptions() 1026 // So that we can parse different command lines multiple times in succession in ResetAllOptionOccurrences() 1466 bool parser<bool>::parse(Option &O, StringRef ArgName, StringRef Arg, in parse() function in parser 1484 bool parser<boolOrDefault>::parse(Option &O, StringRef ArgName, StringRef Arg, in parse() function in parser 1502 bool parser<int>::parse(Option &O, StringRef ArgName, StringRef Arg, in parse() function in parser 1511 bool parser<unsigned>::parse(Option &O, StringRef ArgName, StringRef Arg, in parse() function in parser 1521 bool parser<unsigned long long>::parse(Option &O, StringRef ArgName, in parse() function in parser 1542 bool parser<double>::parse(Option &O, StringRef ArgName, StringRef Arg, in parse() function in parser 1547 bool parser<float>::parse(Optio function in parser [all...] |
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
H A D | SimpleDateFormat.java | 659 * Date currentTime_2 = formatter.parse(dateString, pos); 692 * parse "1234". In other words, the leftmost field of the run is flexible, 693 * while the others keep a fixed width. If the parse fails anywhere in the run, 695 * parsed again. This is repeated until either the parse succeeds or the 696 * leftmost field is one character in length. If the parse still fails at that 697 * point, the parse of the run fails. 2397 public void parse(String text, Calendar cal, ParsePosition parsePos) in parse() method in SimpleDateFormat 2447 // the pattern "HHmmss" as an example. We will try to parse in parse() 2477 // If the parse fails anywhere in the numeric run, back up to the in parse() 2625 // This will parse correctl in parse() [all...] |
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/ |
H A D | SimpleDateFormat.java | 659 * Date currentTime_2 = formatter.parse(dateString, pos); 692 * parse "1234". In other words, the leftmost field of the run is flexible, 693 * while the others keep a fixed width. If the parse fails anywhere in the run, 695 * parsed again. This is repeated until either the parse succeeds or the 696 * leftmost field is one character in length. If the parse still fails at that 697 * point, the parse of the run fails. 2374 public void parse(String text, Calendar cal, ParsePosition parsePos) in parse() method in SimpleDateFormat 2424 // the pattern "HHmmss" as an example. We will try to parse in parse() 2454 // If the parse fails anywhere in the numeric run, back up to the in parse() 2602 // This will parse correctl in parse() [all...] |
/third_party/json/tests/src/ |
H A D | unit-bjdata.cpp | 1131 CHECK(json::parse("0.0") == json::from_bjdata(std::vector<uint8_t>({'h', 0x00, 0x00}))); 1132 CHECK(json::parse("-0.0") == json::from_bjdata(std::vector<uint8_t>({'h', 0x00, 0x80}))); 1133 CHECK(json::parse("1.0") == json::from_bjdata(std::vector<uint8_t>({'h', 0x00, 0x3c}))); 1134 CHECK(json::parse("1.5") == json::from_bjdata(std::vector<uint8_t>({'h', 0x00, 0x3e}))); 1135 CHECK(json::parse("65504.0") == json::from_bjdata(std::vector<uint8_t>({'h', 0xff, 0x7b}))); 1144 CHECK_THROWS_WITH_AS(_ = json::from_bjdata(vec0), "[json.exception.parse_error.110] parse error at byte 2: syntax error while parsing BJData number: unexpected end of input", json::parse_error&); 1152 CHECK_THROWS_WITH_AS(_ = json::from_bjdata(vec1), "[json.exception.parse_error.110] parse error at byte 3: syntax error while parsing BJData number: unexpected end of input", json::parse_error&); 1281 CHECK_THROWS_WITH_AS(_ = json::from_bjdata(vec2), "[json.exception.parse_error.115] parse error at byte 5: syntax error while parsing BJData high-precision number: invalid number text: 1A", json::parse_error); 1283 CHECK_THROWS_WITH_AS(_ = json::from_bjdata(vec3), "[json.exception.parse_error.115] parse error at byte 5: syntax error while parsing BJData high-precision number: invalid number text: 1.", json::parse_error); 1285 CHECK_THROWS_WITH_AS(_ = json::from_bjdata(vec4), "[json.exception.parse_error.113] parse erro [all...] |
/third_party/mesa3d/src/gallium/frontends/nine/ |
H A D | nine_shader.c | 437 const DWORD *parse; member 3244 return *(tx->parse); in TOKEN_PEEK() 3250 return *(tx->parse)++; in TOKEN_NEXT() 3256 if (tx->parse_next && tx->parse != tx->parse_next) { in TOKEN_JUMP() 3257 WARN("parse(%p) != parse_next(%p) !\n", tx->parse, tx->parse_next); in TOKEN_JUMP() 3258 tx->parse = tx->parse_next; in TOKEN_JUMP() 3293 tx->parse_next = tx->parse + 1 /* this */ + in sm1_parse_get_skip() 3317 tx->parse += size + 1; in sm1_parse_comments() 3392 memcpy(&imm->imm.d[0], tx->parse, in sm1_parse_immediate() [all...] |
/kernel/linux/linux-5.10/arch/xtensa/kernel/ |
H A D | setup.c | 92 int (*parse)(const bp_tag_t*); member 98 /* parse current tag */ 167 t->parse(tag); in parse_bootparam()
|
/kernel/linux/linux-5.10/tools/usb/usbip/libsrc/ |
H A D | names.c | 291 static void parse(FILE *f) in parse() function 483 parse(f); in names_init()
|
/kernel/linux/linux-5.10/scripts/dtc/ |
H A D | dtx_diff | 149 git_root=`git rev-parse --show-toplevel 2>/dev/null` 214 git_root=`git rev-parse --show-toplevel 2>/dev/null`
|
/kernel/linux/linux-6.6/arch/xtensa/kernel/ |
H A D | setup.c | 95 int (*parse)(const bp_tag_t*); member 101 /* parse current tag */ 170 t->parse(tag); in parse_bootparam()
|
/kernel/linux/linux-6.6/scripts/ |
H A D | get_feat.pl | 544 get_feat.pl - parse the Linux Feature files and produce a ReST book. 566 using an easier to parse format.
|
/kernel/linux/linux-6.6/tools/usb/usbip/libsrc/ |
H A D | names.c | 291 static void parse(FILE *f) in parse() function 483 parse(f); in names_init()
|
/kernel/linux/linux-6.6/scripts/dtc/ |
H A D | dtx_diff | 149 git_root=`git rev-parse --show-toplevel 2>/dev/null` 214 git_root=`git rev-parse --show-toplevel 2>/dev/null`
|
/test/testfwk/developer_test/local_coverage/resident_service/ |
H A D | init_gcov.py | 131 tree = ET.parse(origin_xml) 214 tree = ET.parse(origin_xml)
|
/test/testfwk/arkxtest/uitest/connection/ |
H A D | ipc_transactor.cpp | 90 call.paramList_ = nlohmann::json::parse(paramListStr, nullptr, false); in OnRemoteRequest() 158 result.resultValue_ = json::parse(reply.ReadString(), nullptr, false); in Call()
|
/test/testfwk/arkxtest/uitest/addon/ |
H A D | extension_executor.cpp | 134 auto message = json::parse(in.data, nullptr, false);
in CallThroughMessage() 135 CALL_THROUGH_CHECK(!message.is_discarded(), "Illegal messsage, parse json failed", ERR_BAD_ARG, true, ptr);
in CallThroughMessage() 212 options = nlohmann::json::parse(optJson.data, nullptr, false);
in StartCapture()
|
/test/testfwk/xdevice/plugins/ohos/src/ohos/parser/ |
H A D | c_parser_lite.py | 58 self.parse(line) 106 def parse(self, line): member in CTestParser
|
H A D | jsunit_parser.py | 58 self.parse(line) 63 def parse(self, line): member in JSUnitParser
|
/third_party/alsa-lib/src/topology/ |
H A D | parser.c | 127 /* parse compound */ in tplg_parse_compound() 160 /* parse topology config sections */ in tplg_parse_config() 171 parser = p->parse; in tplg_parse_config() 175 parser = p->parse; in tplg_parse_config() 211 SNDERR("failed to parse topology"); in tplg_load_config()
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/units/ |
H A D | MeasureUnitImpl.java | 495 return parser.parse(); in parseForIdentifier() 507 private MeasureUnitImpl parse() { in parse() method in MeasureUnitImpl.UnitsParser 511 // The dimensionless unit: nothing to parse. return null. in parse() 551 * @throws IllegalArgumentException if we parse both compound units and "-and-", since mixed
|
/third_party/icu/icu4c/source/test/intltest/ |
H A D | nmfmapts.cpp | 60 * This test does round-trip testing (format -> parse -> format -> parse -> etc.) of 154 // ======= Test parse() in testAPI() 157 logln("Testing parse()"); in testAPI() 165 errln("ERROR: Roundtrip failed (via parse()) for " + text); in testAPI() 169 fr->parse(text, result2, pos01); in testAPI() 171 errln("ERROR: Roundtrip failed (via parse()) for " + text); in testAPI() 176 fr->parse(text, result3, status); in testAPI() 178 errln("ERROR: parse() failed"); in testAPI() 181 errln("ERROR: Roundtrip failed (via parse()) fo in testAPI() [all...] |
/third_party/icu/icu4j/main/classes/localespi/src/com/ibm/icu/impl/jdkadapter/ |
H A D | DecimalFormatICU.java | 246 public Number parse(String text, ParsePosition pos) { in parse() method in DecimalFormatICU 247 return fIcuDecfmt.parse(text, pos); in parse()
|
H A D | SimpleDateFormatICU.java | 146 public Date parse(String text, ParsePosition pos) { in parse() method in SimpleDateFormatICU 147 return fIcuSdf.parse(text, pos); in parse()
|
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/ |
H A D | DataDrivenNumberFormatTestData.java | 116 public String parse = null; field in DataDrivenNumberFormatTestData 222 "parse", 404 parse = value; in setParse()
|