Home
last modified time | relevance | path

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

/art/cmdline/
Dcmdline_types.h766 if (StartsWith(option, "filename:")) {
772 } else if (StartsWith(option, "period:")) {
778 } else if (StartsWith(option, "duration:")) {
784 } else if (StartsWith(option, "interval:")) {
790 } else if (StartsWith(option, "backoff:")) {
802 } else if (StartsWith(option, "top-k-threshold:")) {
810 } else if (StartsWith(option, "top-k-change-threshold:")) {
824 } else if (StartsWith(option, "max-stack-depth:")) {
Dtoken_range.h191 bool StartsWith(const TokenRange& other) const { in StartsWith() function
359 if (!StartsWith(*token_it, name_prefix)) { in MaybeMatches()
382 static bool StartsWith(const std::string& larger, const std::string& smaller) { in StartsWith() function
/art/runtime/
Dutils_test.cc310 TEST_F(UtilsTest, StartsWith) { in TEST_F() argument
311 EXPECT_FALSE(StartsWith("foo", "bar")); in TEST_F()
312 EXPECT_TRUE(StartsWith("foo", "foo")); in TEST_F()
313 EXPECT_TRUE(StartsWith("food", "foo")); in TEST_F()
314 EXPECT_FALSE(StartsWith("fo", "foo")); in TEST_F()
Dutils.h103 bool StartsWith(const std::string& s, const char* prefix);
Dutils.cc937 bool StartsWith(const std::string& s, const char* prefix) { in StartsWith() function
Delf_file.cc1548 if (StartsWith(name, ".debug") in Strip()
/art/dex2oat/
Ddex2oat.cc101 if (StartsWith(original_argv[i], "--zip-fd=")) { in StrippedCommandLine()
116 if (StartsWith(original_argv[i], "--instruction-set")) { in StrippedCommandLine()
121 if (StartsWith(original_argv[i], "--boot-image=")) { in StrippedCommandLine()
130 if (StartsWith(original_argv[i], "--zip-") || in StrippedCommandLine()
131 StartsWith(original_argv[i], "--dex-") || in StrippedCommandLine()
132 StartsWith(original_argv[i], "--oat-") || in StrippedCommandLine()
133 StartsWith(original_argv[i], "--swap-")) { in StrippedCommandLine()
1823 if (StartsWith(dot, "#") || dot.empty()) { in ReadCommentedInputStream()
/art/runtime/base/
Dlogging.cc107 if (spec.size() == 3 && StartsWith(spec, "*:")) { in InitLogging()
/art/compiler/dex/quick/x86/
Dassemble_x86.cc636 return StartsWith(entry->name, "Movzx8") || StartsWith(entry->name, "Movsx8"); in IsByteSecondOperand()
894 if (!StartsWith(entry->name, "Movzx8") && !StartsWith(entry->name, "Movsx8") in CheckValidByteRegister()
895 && !StartsWith(entry->name, "Movzx8q") && !StartsWith(entry->name, "Movsx8q")) { in CheckValidByteRegister()