Searched refs:StartsWith (Results 1 – 9 of 9) sorted by relevance
/art/runtime/ |
D | parsed_options.cc | 285 if (StartsWith(option, "-help")) { in Parse() 288 } else if (StartsWith(option, "-showversion")) { in Parse() 291 } else if (StartsWith(option, "-Xbootclasspath:")) { in Parse() 306 } else if (StartsWith(option, "-Ximage:")) { in Parse() 310 } else if (StartsWith(option, "-Xcheck:jni")) { in Parse() 312 } else if (StartsWith(option, "-Xrunjdwp:") || StartsWith(option, "-agentlib:jdwp=")) { in Parse() 323 } else if (StartsWith(option, "-Xms")) { in Parse() 330 } else if (StartsWith(option, "-Xmx")) { in Parse() 337 } else if (StartsWith(option, "-XX:HeapGrowthLimit=")) { in Parse() 344 } else if (StartsWith(option, "-XX:HeapMinFree=")) { in Parse() [all …]
|
D | utils_test.cc | 341 TEST_F(UtilsTest, StartsWith) { in TEST_F() argument 342 EXPECT_FALSE(StartsWith("foo", "bar")); in TEST_F() 343 EXPECT_TRUE(StartsWith("foo", "foo")); in TEST_F() 344 EXPECT_TRUE(StartsWith("food", "foo")); in TEST_F() 345 EXPECT_FALSE(StartsWith("fo", "foo")); in TEST_F()
|
D | utils.h | 269 bool StartsWith(const std::string& s, const char* prefix);
|
D | utils.cc | 973 bool StartsWith(const std::string& s, const char* prefix) { in StartsWith() function
|
D | check_jni.cc | 140 if (StartsWith(class_name, gBuiltInPrefixes[i])) { in ShouldTrace()
|
/art/compiler/ |
D | elf_stripper.cc | 87 if (StartsWith(name, ".debug") in Strip()
|
/art/runtime/base/ |
D | logging.cc | 92 if (spec.size() == 3 && StartsWith(spec, "*:")) { in InitLogging()
|
/art/compiler/dex/quick/x86/ |
D | assemble_x86.cc | 609 return StartsWith(entry->name, "Movzx8") || StartsWith(entry->name, "Movsx8"); in IsByteSecondOperand() 864 if (!StartsWith(entry->name, "Movzx8") && !StartsWith(entry->name, "Movsx8") in CheckValidByteRegister() 865 && !StartsWith(entry->name, "Movzx8q") && !StartsWith(entry->name, "Movsx8q")) { in CheckValidByteRegister()
|
/art/dex2oat/ |
D | dex2oat.cc | 291 if (StartsWith(dot, "#") || dot.empty()) { in ReadImageClasses()
|