HomeSort by relevance Sort by last modified time
    Searched refs:swapcase (Results 1 - 25 of 51) sorted by null

1 2 3

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
stringold.py 64 def swapcase(s): function
65 """swapcase(s) -> string
71 return s.swapcase()
UserString.py 126 def swapcase(self): return self.__class__(self.data.swapcase()) member in class:UserString
string.py 238 def swapcase(s): function
239 """swapcase(s) -> string
245 return s.swapcase()
  /prebuilts/gdb/darwin-x86/lib/python2.7/
stringold.py 64 def swapcase(s): function
65 """swapcase(s) -> string
71 return s.swapcase()
UserString.py 126 def swapcase(self): return self.__class__(self.data.swapcase()) member in class:UserString
string.py 238 def swapcase(s): function
239 """swapcase(s) -> string
245 return s.swapcase()
  /prebuilts/gdb/linux-x86/lib/python2.7/
stringold.py 64 def swapcase(s): function
65 """swapcase(s) -> string
71 return s.swapcase()
UserString.py 126 def swapcase(self): return self.__class__(self.data.swapcase()) member in class:UserString
string.py 238 def swapcase(s): function
239 """swapcase(s) -> string
245 return s.swapcase()
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
stringold.py 64 def swapcase(s): function
65 """swapcase(s) -> string
71 return s.swapcase()
UserString.py 126 def swapcase(self): return self.__class__(self.data.swapcase()) member in class:UserString
string.py 238 def swapcase(s): function
239 """swapcase(s) -> string
245 return s.swapcase()
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
stringold.py 64 def swapcase(s): function
65 """swapcase(s) -> string
71 return s.swapcase()
UserString.py 126 def swapcase(self): return self.__class__(self.data.swapcase()) member in class:UserString
string.py 238 def swapcase(s): function
239 """swapcase(s) -> string
245 return s.swapcase()
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
string.py 240 def swapcase(s): function
241 """swapcase(s) -> string
247 return s.swapcase()
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_strop.py 46 self.assertTrue(strop.swapcase("HeLLo cOmpUteRs") == "hEllO CoMPuTErS")
buffer_tests.py 136 self.marshal(b'HeLLo cOmpUteRs').swapcase())
138 self.assertRaises(TypeError, self.marshal(b'hello').swapcase, 42)
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_strop.py 46 self.assertTrue(strop.swapcase("HeLLo cOmpUteRs") == "hEllO CoMPuTErS")
buffer_tests.py 136 self.marshal(b'HeLLo cOmpUteRs').swapcase())
138 self.assertRaises(TypeError, self.marshal(b'hello').swapcase, 42)
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_strop.py 46 self.assertTrue(strop.swapcase("HeLLo cOmpUteRs") == "hEllO CoMPuTErS")
buffer_tests.py 136 self.marshal(b'HeLLo cOmpUteRs').swapcase())
138 self.assertRaises(TypeError, self.marshal(b'hello').swapcase, 42)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_strop.py 46 self.assertTrue(strop.swapcase("HeLLo cOmpUteRs") == "hEllO CoMPuTErS")
buffer_tests.py 136 self.marshal(b'HeLLo cOmpUteRs').swapcase())
138 self.assertRaises(TypeError, self.marshal(b'hello').swapcase, 42)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_strop.py 46 self.assertTrue(strop.swapcase("HeLLo cOmpUteRs") == "hEllO CoMPuTErS")

Completed in 762 milliseconds

1 2 3