Home
last modified time | relevance | path

Searched refs:StartsWith (Results 1 – 9 of 9) sorted by relevance

/art/runtime/
Dparsed_options.cc285 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 …]
Dutils_test.cc341 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()
Dutils.h269 bool StartsWith(const std::string& s, const char* prefix);
Dutils.cc973 bool StartsWith(const std::string& s, const char* prefix) { in StartsWith() function
Dcheck_jni.cc140 if (StartsWith(class_name, gBuiltInPrefixes[i])) { in ShouldTrace()
/art/compiler/
Delf_stripper.cc87 if (StartsWith(name, ".debug") in Strip()
/art/runtime/base/
Dlogging.cc92 if (spec.size() == 3 && StartsWith(spec, "*:")) { in InitLogging()
/art/compiler/dex/quick/x86/
Dassemble_x86.cc609 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/
Ddex2oat.cc291 if (StartsWith(dot, "#") || dot.empty()) { in ReadImageClasses()