HomeSort by relevance Sort by last modified time
    Searched defs:EndsWith (Results 1 - 25 of 54) sorted by null

1 2 3

  /external/easymock/src/org/easymock/internal/matchers/
EndsWith.java 22 public class EndsWith implements IArgumentMatcher, Serializable {
28 public EndsWith(String suffix) {
33 return (actual instanceof String) && ((String) actual).endsWith(suffix);
37 buffer.append("endsWith(\"" + suffix + "\")");
  /external/mockito/src/main/java/org/mockito/internal/matchers/
EndsWith.java 12 public class EndsWith implements ArgumentMatcher<String>, Serializable {
16 public EndsWith(String suffix) {
21 return actual != null && actual.endsWith(suffix);
25 return "endsWith(\"" + suffix + "\")";
  /external/llvm/include/llvm/ADT/
StringSwitch.h 69 StringSwitch& EndsWith(const char (&S)[N], const T &Value) {
  /external/swiftshader/third_party/LLVM/include/llvm/ADT/
StringSwitch.h 65 StringSwitch& EndsWith(const char (&S)[N], const T &Value) {
  /system/core/base/
strings.cpp 106 static bool EndsWith(const std::string& s, const char* suffix, size_t suffix_length,
116 bool EndsWith(const std::string& s, const char* suffix) {
117 return EndsWith(s, suffix, strlen(suffix), true);
120 bool EndsWith(const std::string& s, const std::string& suffix) {
121 return EndsWith(s, suffix.c_str(), suffix.size(), true);
125 return EndsWith(s, suffix, strlen(suffix), false);
129 return EndsWith(s, suffix.c_str(), suffix.size(), false);
  /system/tools/aidl/
options.cpp 149 if (!EndsWith(options->input_file_name_, ".aidl")) {
256 if (!EndsWith(options->input_file_name_, ".aidl")) {
264 bool EndsWith(const string& str, const string& suffix) {
275 if (!EndsWith(*str, old_suffix)) return false;
  /external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
StringSwitch.h 85 StringSwitch& EndsWith(const char (&S)[N], const T &Value) {
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/ADT/
StringSwitch.h 85 StringSwitch& EndsWith(const char (&S)[N], const T &Value) {
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/ADT/
StringSwitch.h 85 StringSwitch& EndsWith(const char (&S)[N], const T &Value) {
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/ADT/
StringSwitch.h 85 StringSwitch& EndsWith(const char (&S)[N], const T &Value) {
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/ADT/
StringSwitch.h 85 StringSwitch& EndsWith(const char (&S)[N], const T &Value) {
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/ADT/
StringSwitch.h 85 StringSwitch& EndsWith(const char (&S)[N], const T &Value) {
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/llvm/ADT/
StringSwitch.h 85 StringSwitch& EndsWith(const char (&S)[N], const T &Value) {
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/llvm/ADT/
StringSwitch.h 85 StringSwitch& EndsWith(const char (&S)[N], const T &Value) {
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/ADT/
StringSwitch.h 85 StringSwitch& EndsWith(const char (&S)[N], const T &Value) {
  /prebuilts/clang/host/linux-x86/clang-4393122/include/llvm/ADT/
StringSwitch.h 85 StringSwitch& EndsWith(const char (&S)[N], const T &Value) {
  /prebuilts/clang/host/linux-x86/clang-4479392/include/llvm/ADT/
StringSwitch.h 85 StringSwitch& EndsWith(const char (&S)[N], const T &Value) {
  /prebuilts/clang/host/linux-x86/clang-4579689/include/llvm/ADT/
StringSwitch.h 85 StringSwitch& EndsWith(const char (&S)[N], const T &Value) {
  /prebuilts/clang/host/linux-x86/clang-4630689/include/llvm/ADT/
StringSwitch.h 85 StringSwitch& EndsWith(const char (&S)[N], const T &Value) {
  /prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/ADT/
StringSwitch.h 85 StringSwitch& EndsWith(const char (&S)[N], const T &Value) {
  /prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/ADT/
StringSwitch.h 85 StringSwitch& EndsWith(const char (&S)[N], const T &Value) {
  /build/soong/androidmk/parser/
make_strings.go 181 func (ms *MakeString) EndsWith(ch rune) bool {
  /system/core/libziparchive/include/ziparchive/
zip_archive.h 55 bool EndsWith(const ZipString& suffix) const {
  /system/tools/hidl/utils/
StringHelper.cpp 160 bool StringHelper::EndsWith(const std::string &in, const std::string &suffix) {
171 if (EndsWith(in, suffix)) {
192 while (EndsWith(copy, suffix)) {
  /external/v8/tools/clang/blink_gc_plugin/
Config.h 270 static bool EndsWith(const std::string& str, const std::string& suffix) {

Completed in 1121 milliseconds

1 2 3