Searched refs:comma_pos (Results 1 – 5 of 5) sorted by relevance
/external/cldr/tools/java/org/unicode/cldr/posix/ |
D | POSIXVariant.java | 32 int comma_pos = buf.indexOf(','); in POSIXVariant() local 33 if (comma_pos >= 0) { in POSIXVariant() 34 rest = buf.substring(comma_pos + 1); in POSIXVariant() 35 buf = buf.substring(0, comma_pos); in POSIXVariant()
|
/external/rust/crates/libfuzzer-sys/libfuzzer/ |
D | FuzzerDriver.cpp | 614 size_t comma_pos = 0; in ParseSeedInuts() local 615 while ((comma_pos = SeedInputs.find_last_of(',')) != std::string::npos) { in ParseSeedInuts() 616 Files.push_back(SeedInputs.substr(comma_pos + 1)); in ParseSeedInuts() 617 SeedInputs = SeedInputs.substr(0, comma_pos); in ParseSeedInuts()
|
/external/llvm-project/compiler-rt/lib/fuzzer/ |
D | FuzzerDriver.cpp | 614 size_t comma_pos = 0; in ParseSeedInuts() local 615 while ((comma_pos = SeedInputs.find_last_of(',')) != std::string::npos) { in ParseSeedInuts() 616 Files.push_back(SeedInputs.substr(comma_pos + 1)); in ParseSeedInuts() 617 SeedInputs = SeedInputs.substr(0, comma_pos); in ParseSeedInuts()
|
/external/libchrome/base/files/ |
D | file_util_posix.cc | 327 size_t comma_pos = result.find(','); in AppendModeCharacter() local 328 result.insert(comma_pos == std::string::npos ? result.length() : comma_pos, 1, in AppendModeCharacter()
|
/external/llvm-project/lldb/source/Plugins/Process/gdb-remote/ |
D | ProcessGDBRemote.cpp | 1497 size_t comma_pos; in UpdateThreadIDsFromStopReplyThreadsValue() local 1499 while ((comma_pos = value.find(',')) != std::string::npos) { in UpdateThreadIDsFromStopReplyThreadsValue() 1500 value[comma_pos] = '\0'; in UpdateThreadIDsFromStopReplyThreadsValue() 1505 value.erase(0, comma_pos + 1); in UpdateThreadIDsFromStopReplyThreadsValue() 1516 size_t comma_pos; in UpdateThreadPCsFromStopReplyThreadsValue() local 1518 while ((comma_pos = value.find(',')) != std::string::npos) { in UpdateThreadPCsFromStopReplyThreadsValue() 1519 value[comma_pos] = '\0'; in UpdateThreadPCsFromStopReplyThreadsValue() 1523 value.erase(0, comma_pos + 1); in UpdateThreadPCsFromStopReplyThreadsValue()
|