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

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/stringlib/
transmogrify.h 122 "B.ljust(width[, fillchar]) -> copy of B\n"
131 char fillchar = ' '; local
133 if (!PyArg_ParseTuple(args, "n|c:ljust", &width, &fillchar))
147 return pad(self, 0, width - STRINGLIB_LEN(self), fillchar);
152 "B.rjust(width[, fillchar]) -> copy of B\n"
161 char fillchar = ' '; local
163 if (!PyArg_ParseTuple(args, "n|c:rjust", &width, &fillchar))
177 return pad(self, width - STRINGLIB_LEN(self), 0, fillchar);
182 "B.center(width[, fillchar]) -> copy of B\n"
192 char fillchar = ' '; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/stringlib/
transmogrify.h 122 "B.ljust(width[, fillchar]) -> copy of B\n"
131 char fillchar = ' '; local
133 if (!PyArg_ParseTuple(args, "n|c:ljust", &width, &fillchar))
147 return pad(self, 0, width - STRINGLIB_LEN(self), fillchar);
152 "B.rjust(width[, fillchar]) -> copy of B\n"
161 char fillchar = ' '; local
163 if (!PyArg_ParseTuple(args, "n|c:rjust", &width, &fillchar))
177 return pad(self, width - STRINGLIB_LEN(self), 0, fillchar);
182 "B.center(width[, fillchar]) -> copy of B\n"
192 char fillchar = ' '; local
    [all...]
  /external/syslinux/com32/cmenu/libmenu/
cmenu.h 62 #define FILLCHAR ' '
206 uchar fillchar; member in struct:s_menusystem
240 void set_misc_info(uchar fillchar, uchar fillattr, uchar spacechar,
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
stringobject.c 3201 char fillchar = ' '; local
3225 char fillchar = ' '; local
3250 char fillchar = ' '; local
    [all...]
unicodeobject.c 6118 Py_UNICODE fillchar = ' '; local
7019 Py_UNICODE fillchar = ' '; local
7407 Py_UNICODE fillchar = ' '; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
stringobject.c 3180 char fillchar = ' '; local
3204 char fillchar = ' '; local
3229 char fillchar = ' '; local
    [all...]
unicodeobject.c 6023 Py_UNICODE fillchar = ' '; local
6911 Py_UNICODE fillchar = ' '; local
7299 Py_UNICODE fillchar = ' '; local
    [all...]

Completed in 640 milliseconds