Searched refs:ljust (Results 1 – 25 of 46) sorted by relevance
12
/third_party/littlefs/scripts/ |
D | readtree.py | 34 .ljust(args.block_size, b'\xff')) 106 struct.unpack('<HH', superblock[1].data[0:4].ljust(4, b'\xff')))) 113 tag = Tag(struct.unpack('<I', gstate[0:4].ljust(4, b'\xff'))[0]) 114 blocks = struct.unpack('<II', gstate[4:4+8].ljust(8, b'\xff'))
|
D | readblock.py | 9 .ljust(args.block_size, b'\xff'))
|
D | readmdir.py | 317 .ljust(args.block_size, b'\xff'))
|
/third_party/libinput/tools/ |
D | libinput-measure-touchpad-size.py | 140 print("+{}+".format("".ljust(self.columns, "-"))) 142 print("|{}|".format("".ljust(self.columns))) 146 print("|{}{}{}|".format("".ljust(left), "O", "".ljust(right))) 149 print("|{}|".format("".ljust(self.columns))) 151 print("+{}+".format("".ljust(self.columns, "-")))
|
D | libinput-analyze-per-slot-delta.py | 122 self.slots.append(string.ljust(self.width + len(color) + len(reset)))
|
/third_party/openh264/docs/ |
D | doxygen2rst.py | 172 retstr += "".ljust(indent, " ") + "| **" + title + "**" + LINE_BREAKER 180 retstr += "".ljust(20, flag) + LINE_BREAKER 271 retstr += "".ljust(4, " ") + "| Return:" + LINE_BREAKER 273 retstr += "".ljust(4, " ") + "| " + line + LINE_BREAKER 279 retstr += "".ljust(4, " ") + "| " + child_para.text.strip() + LINE_BREAKER 326 retstr += "".ljust(column, "-") + "+" 349 retstr += "".ljust(columns[j] - len(row_lines[j][i]), " ") 351 retstr += "".ljust(columns[j], " ")
|
/third_party/mesa3d/src/amd/registers/ |
D | makeregheader.py | 309 define_name = 'R_{address}_{register_line.name}'.format(**locals()).ljust(63) 326 define_name = '_{address}_{field_line.name}(x)'.format(**locals()).ljust(58) 335 define_name = '_{address}_{field_line.name}'.format(**locals()).ljust(58) 351 define_name = 'V_{address}_{value_line.name}'.format(**locals()).ljust(55)
|
/third_party/skia/third_party/externals/harfbuzz/src/ |
D | gen-indic-table.py | 162 (c[0].ljust (maxlen_s), c[1].ljust (maxlen_l), c[2].rjust (maxlen_n), c[3]))
|
/third_party/vk-gl-cts/external/vulkan-docs/src/scripts/Retired/ |
D | realign.py | 38 line = match.group(1).ljust(column[i]) + match.group(2)
|
/third_party/python/Lib/test/ |
D | test_locale.py | 180 out=('-4%s200' % self.sep).ljust(10)) 191 out=('-4%s200' % self.sep).ljust(10)) 202 self._test_format("%-10.f", 4200, grouping=0, out='4200'.ljust(10)) 333 self._test_format("%-10d", 4200, grouping=True, out='4 200'.ljust(10))
|
D | test_bigmem.py | 247 s = SUBSTR.ljust(size) 268 s = SUBSTR.ljust(size) 327 s = SUBSTR.ljust(size) 336 s = SUBSTR.ljust(size) 419 s = SUBSTR.ljust(size)
|
/third_party/python/Tools/scripts/ |
D | byteyears.py | 55 print(filename.ljust(maxlen), end=' ')
|
D | pdeps.py | 151 print(mod.ljust(maxlen), ':', end=' ')
|
/third_party/vk-gl-cts/external/vulkan-docs/src/scripts/ |
D | generator.py | 740 body = 'static constexpr ' + typeStr.ljust(9) + name.ljust(33) + ' {' + strVal + '};' 756 body = '#define ' + name.ljust(33) + ' ' + strVal; 758 body = '#define ' + name.ljust(33) + ' ' + strVal 963 paramdecl = paramdecl.ljust(aligncol - 1) + ' '
|
D | reflow.py | 288 outLine = ''.ljust(self.leadIndent) + word 383 outLine = ''.ljust(self.hangIndent) + word
|
/third_party/vulkan-headers/registry/ |
D | generator.py | 829 body = 'static constexpr ' + typeStr.ljust(9) + name.ljust(33) + ' {' + strVal + '};' 845 body = '#define ' + name.ljust(33) + ' ' + strVal; 847 body = '#define ' + name.ljust(33) + ' ' + strVal 1071 paramdecl = paramdecl.ljust(aligncol - 1) + ' '
|
/third_party/rust/crates/minimal-lexical/etc/ |
D | lemire_table.py | 107 print(value.ljust(46, ' ') + comment)
|
D | bellerophon_table.py | 116 print(value.ljust(30, " ") + exp)
|
/third_party/gn/examples/ios/build/config/ios/scripts/ |
D | sdk_info.py | 61 version = major.rjust(2, '0') + minor.ljust(2, '0')
|
/third_party/python/Lib/ |
D | hmac.py | 104 key = key.ljust(blocksize, b'\0')
|
D | cmd.py | 400 texts[col] = texts[col].ljust(colwidths[col])
|
D | pstats.py | 463 print("Function ".ljust(name_size) + column_title, file=self.stream) 475 print(func_std_string(source).ljust(name_size) + arrow, end=' ', file=self.stream)
|
/third_party/node/deps/v8/tools/release/ |
D | list_deprecated.py | 137 file_position = (f"{self.path}:{linenumber}").ljust(40)
|
/third_party/python/Tools/demo/ |
D | spreadsheet.py | 15 def ljust(x, n): function 16 return x.ljust(n) 21 align2action = {LEFT: ljust, CENTER: center, RIGHT: rjust}
|
/third_party/mesa3d/bin/pick/ |
D | ui.py | 69 reason = commit.nomination_type.name.ljust(6)
|
12