Searched refs:StartsWith (Results 1 – 9 of 9) sorted by relevance
/art/cmdline/ |
D | cmdline_types.h | 766 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:")) {
|
D | token_range.h | 191 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/ |
D | utils_test.cc | 310 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()
|
D | utils.h | 103 bool StartsWith(const std::string& s, const char* prefix);
|
D | utils.cc | 937 bool StartsWith(const std::string& s, const char* prefix) { in StartsWith() function
|
D | elf_file.cc | 1548 if (StartsWith(name, ".debug") in Strip()
|
/art/dex2oat/ |
D | dex2oat.cc | 101 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/ |
D | logging.cc | 107 if (spec.size() == 3 && StartsWith(spec, "*:")) { in InitLogging()
|
/art/compiler/dex/quick/x86/ |
D | assemble_x86.cc | 636 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()
|