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

  /system/media/camera/docs/
metadata_helpers.py 210 def ljust(size, indent=4): function
223 ljust(8)("hello") == 'hello '
230 newstr = what.ljust(size)
232 return what + "\n" + "".ljust(indent + size)
278 return what + "\n".ljust(col)
280 return what.ljust(wut - current_col)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
stringold.py 265 def ljust(s, width): function
266 """ljust(s, width) -> string
309 # (Use of this is deprecated; it should be a string as with ljust c.s.)
UserString.py 101 def ljust(self, width, *args): member in class:UserString
102 return self.__class__(self.data.ljust(width, *args))
string.py 423 def ljust(s, width, *args): function
424 """ljust(s, width[, fillchar]) -> string
431 return s.ljust(width, *args)
457 # (Use of this is deprecated; it should be a string as with ljust c.s.)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
stringold.py 265 def ljust(s, width): function
266 """ljust(s, width) -> string
309 # (Use of this is deprecated; it should be a string as with ljust c.s.)
UserString.py 101 def ljust(self, width, *args): member in class:UserString
102 return self.__class__(self.data.ljust(width, *args))
string.py 423 def ljust(s, width, *args): function
424 """ljust(s, width[, fillchar]) -> string
431 return s.ljust(width, *args)
457 # (Use of this is deprecated; it should be a string as with ljust c.s.)

Completed in 107 milliseconds