HomeSort by relevance Sort by last modified time
    Searched full:_split (Results 1 - 25 of 34) sorted by null

1 2

  /external/python/cpython2/Lib/lib-tk/
tkFont.py 92 self._split = tk.splitlist
126 self._split(self._call("font", "actual", self.name))
140 self._split(self._call("font", "config", self.name))
160 res = self._split(self._call("font", "metrics", self.name))
  /external/python/cpython3/Lib/tkinter/
font.py 96 self._split = tk.splitlist
132 self._split(self._call("font", "actual", self.name, *args)))
145 self._split(self._call("font", "config", self.name)))
170 res = self._split(self._call("font", "metrics", self.name, *args))
  /prebuilts/gdb/darwin-x86/lib/python2.7/lib-tk/
tkFont.py 92 self._split = root.tk.splitlist
126 self._split(self._call("font", "actual", self.name))
140 self._split(self._call("font", "config", self.name))
160 res = self._split(self._call("font", "metrics", self.name))
  /prebuilts/gdb/linux-x86/lib/python2.7/lib-tk/
tkFont.py 92 self._split = root.tk.splitlist
126 self._split(self._call("font", "actual", self.name))
140 self._split(self._call("font", "config", self.name))
160 res = self._split(self._call("font", "metrics", self.name))
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib-tk/
tkFont.py 92 self._split = root.tk.splitlist
126 self._split(self._call("font", "actual", self.name))
140 self._split(self._call("font", "config", self.name))
160 res = self._split(self._call("font", "metrics", self.name))
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/
tkFont.py 92 self._split = root.tk.splitlist
126 self._split(self._call("font", "actual", self.name))
140 self._split(self._call("font", "config", self.name))
160 res = self._split(self._call("font", "metrics", self.name))
  /external/python/cpython2/Lib/plat-riscos/
riscospath.py 55 def _split(p): function
102 (fs, drive, path)= _split(p)
113 (fs, drive, path)= _split(b)
128 (fs, drive, path)= _split(p)
153 (fs, drive, path)= _split(p)
279 (fs, drive, path)= _split(p)
331 (fs, drive, path)= _split(p)
  /external/libnl/lib/
utils.c 576 #define _SPLIT(idx, unit) if ((split[idx] = msec / unit)) msec %= unit
577 _SPLIT(0, 86400000); /* days */
578 _SPLIT(1, 3600000); /* hours */
579 _SPLIT(2, 60000); /* minutes */
580 _SPLIT(3, 1000); /* seconds */
581 #undef _SPLIT
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_textwrap.py 41 result = self.wrapper._split(text)
232 # _split() method.
273 # Again, all of the above can be deduced from _split().
366 # Ensure that the standard _split() method works as advertised
371 result = self.wrapper._split(text)
  /external/python/cpython2/Lib/test/
test_textwrap.py 41 result = self.wrapper._split(text)
241 # _split() method.
282 # Again, all of the above can be deduced from _split().
414 # Ensure that the standard _split() method works as advertised
419 result = self.wrapper._split(text)
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_textwrap.py 41 result = self.wrapper._split(text)
241 # _split() method.
282 # Again, all of the above can be deduced from _split().
414 # Ensure that the standard _split() method works as advertised
419 result = self.wrapper._split(text)
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_textwrap.py 41 result = self.wrapper._split(text)
241 # _split() method.
282 # Again, all of the above can be deduced from _split().
414 # Ensure that the standard _split() method works as advertised
419 result = self.wrapper._split(text)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_textwrap.py 41 result = self.wrapper._split(text)
241 # _split() method.
282 # Again, all of the above can be deduced from _split().
414 # Ensure that the standard _split() method works as advertised
419 result = self.wrapper._split(text)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_textwrap.py 41 result = self.wrapper._split(text)
241 # _split() method.
282 # Again, all of the above can be deduced from _split().
414 # Ensure that the standard _split() method works as advertised
419 result = self.wrapper._split(text)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
textwrap.py 163 def _split(self, text): member in class:TextWrapper
164 """_split(text : string) -> [string]
326 chunks = self._split(text)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/email/
header.py 292 def _split(self, s, charset, maxlinelen, splitchars):
336 return chunk + self._split(last, charset, self._maxlinelen, splitchars)
411 newchunks += self._split(s, charset, targetlen, splitchars)
288 def _split(self, s, charset, maxlinelen, splitchars): member in class:Header
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
textwrap.py 155 def _split(self, text): member in class:TextWrapper
156 """_split(text : string) -> [string]
318 chunks = self._split(text)
  /external/python/cpython2/Lib/email/
header.py 292 def _split(self, s, charset, maxlinelen, splitchars):
336 return chunk + self._split(last, charset, self._maxlinelen, splitchars)
411 newchunks += self._split(s, charset, targetlen, splitchars)
288 def _split(self, s, charset, maxlinelen, splitchars): member in class:Header
  /external/python/cpython2/Lib/
textwrap.py 163 def _split(self, text): member in class:TextWrapper
164 """_split(text : string) -> [string]
326 chunks = self._split(text)
  /external/python/cpython3/Lib/
textwrap.py 160 def _split(self, text): member in class:TextWrapper
161 """_split(text : string) -> [string]
338 return self._split(text)
  /prebuilts/gdb/darwin-x86/lib/python2.7/email/
header.py 292 def _split(self, s, charset, maxlinelen, splitchars):
336 return chunk + self._split(last, charset, self._maxlinelen, splitchars)
411 newchunks += self._split(s, charset, targetlen, splitchars)
288 def _split(self, s, charset, maxlinelen, splitchars): member in class:Header
  /prebuilts/gdb/darwin-x86/lib/python2.7/
textwrap.py 163 def _split(self, text): member in class:TextWrapper
164 """_split(text : string) -> [string]
326 chunks = self._split(text)
  /prebuilts/gdb/linux-x86/lib/python2.7/email/
header.py 292 def _split(self, s, charset, maxlinelen, splitchars):
336 return chunk + self._split(last, charset, self._maxlinelen, splitchars)
411 newchunks += self._split(s, charset, targetlen, splitchars)
288 def _split(self, s, charset, maxlinelen, splitchars): member in class:Header
  /prebuilts/gdb/linux-x86/lib/python2.7/
textwrap.py 163 def _split(self, text): member in class:TextWrapper
164 """_split(text : string) -> [string]
326 chunks = self._split(text)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/email/
header.py 292 def _split(self, s, charset, maxlinelen, splitchars):
336 return chunk + self._split(last, charset, self._maxlinelen, splitchars)
411 newchunks += self._split(s, charset, targetlen, splitchars)
288 def _split(self, s, charset, maxlinelen, splitchars): member in class:Header

Completed in 980 milliseconds

1 2