Searched refs:comma_pos (Results 1 – 7 of 7) sorted by relevance
/aosp_15_r20/art/tools/jvmti-agents/ti-alloc-sample/ |
H A D | ti_alloc_sample.cc | 389 size_t comma_pos = options.find(','); in ProcessOptions() local 390 if (comma_pos == std::string::npos) { in ProcessOptions() 393 sampling_rate = std::stoi(options.substr(0, comma_pos)); in ProcessOptions() 394 options = options.substr(comma_pos + 1); in ProcessOptions() 395 comma_pos = options.find(','); in ProcessOptions() 396 if (comma_pos == std::string::npos) { in ProcessOptions() 399 stack_depth_limit = std::stoi(options.substr(0, comma_pos)); in ProcessOptions() 400 output_file_path = options.substr(comma_pos + 1); in ProcessOptions()
|
H A D | mkflame.py | 143 comma_pos = line.find(",") 144 index = int(line[1:comma_pos]) 145 definition = line[comma_pos+1:]
|
/aosp_15_r20/external/cldr/tools/cldr-code/src/main/java/org/unicode/cldr/posix/ |
H A 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()
|
/aosp_15_r20/external/rust/android-crates-io/crates/libfuzzer-sys/libfuzzer/ |
D | FuzzerDriver.cpp | 616 size_t comma_pos = 0; in ParseSeedInuts() local 617 while ((comma_pos = SeedInputs.find_last_of(',')) != std::string::npos) { in ParseSeedInuts() 618 Files.push_back(SeedInputs.substr(comma_pos + 1)); in ParseSeedInuts() 619 SeedInputs = SeedInputs.substr(0, comma_pos); in ParseSeedInuts()
|
/aosp_15_r20/external/libchrome/base/files/ |
H A 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()
|
/aosp_15_r20/external/cronet/base/files/ |
H A D | file_util_win.cc | 128 size_t comma_pos = mode->find(L','); in AppendModeCharacter() local 129 mode->insert(comma_pos == std::wstring::npos ? mode->length() : comma_pos, 1, in AppendModeCharacter()
|
H A D | file_util_posix.cc | 330 size_t comma_pos = result.find(','); in AppendModeCharacter() local 331 result.insert(comma_pos == std::string::npos ? result.length() : comma_pos, 1, in AppendModeCharacter()
|