HomeSort by relevance Sort by last modified time
    Searched defs:endswith (Results 1 - 7 of 7) sorted by null

  /external/llvm/include/llvm/ADT/
SmallString.h 134 /// endswith - Check if this string ends with the given \p Suffix.
135 bool endswith(StringRef Suffix) const { function in class:llvm::SmallString
136 return str().endswith(Suffix);
  /prebuilts/gdb/darwin-x86/lib/python2.7/
UserString.py 83 def endswith(self, suffix, start=0, end=sys.maxint): member in class:UserString
84 return self.data.endswith(suffix, start, end)
  /prebuilts/gdb/linux-x86/lib/python2.7/
UserString.py 83 def endswith(self, suffix, start=0, end=sys.maxint): member in class:UserString
84 return self.data.endswith(suffix, start, end)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
UserString.py 83 def endswith(self, suffix, start=0, end=sys.maxint): member in class:UserString
84 return self.data.endswith(suffix, start, end)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
UserString.py 83 def endswith(self, suffix, start=0, end=sys.maxint): member in class:UserString
84 return self.data.endswith(suffix, start, end)
  /external/clang/test/Index/
recursive-cxx-member-calls.cpp 56 bool endswith(StringRef Suffix) const { function in class:llvm::StringRef
102 if (AttrName.startswith("__") && AttrName.endswith("__"))
    [all...]
  /external/deqp/external/vulkancts/
gen_framework.py 222 def endswith (s, postfix): function
228 if endswith(name, "_BEGIN_RANGE") or endswith(name, "_END_RANGE"):
270 def endsWith (str, postfix):
276 if endsWith(name, postfix):

Completed in 131 milliseconds