/external/chromium_org/media/tools/constrained_network_server/ |
cn.py | 54 opt_width = parser.formatter.help_position - indent_first 59 (indent_first, '', opt_width, s, COMMANDS[s].desc))
|
/external/chromium_org/chrome/browser/resources/file_manager/foreground/js/ |
file_grid.js | 272 * @param {=number} opt_width Width of the coordinate. 276 FileGrid.prototype.getHitElements = function(x, y, opt_width, opt_height) { 278 var right = x + (opt_width || 0);
|
file_table.js | 376 * @param {=number} opt_width Width of the coordinate. 380 self.list.getHitElements = function(x, y, opt_width, opt_height) {
|
/external/chromium_org/chrome/browser/resources/file_manager/foreground/js/image_editor/ |
commands.js | 314 * @param {number=} opt_width new canvas width. 320 document, srcCanvas, opt_width, opt_height) { 322 result.width = opt_width || srcCanvas.width;
|
image_view.js | 541 * @param {number=} opt_width Image width. 547 content, opt_width, opt_height, opt_preview) { 569 opt_width || this.contentCanvas_.width, 635 * @param {number=} opt_width Image width. 640 content, opt_effect, opt_width, opt_height, opt_preview) { 643 this.replaceContent_(content, opt_width, opt_height, opt_preview); [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/ |
fancy_getopt.py | 329 opt_width = max_opt + 2 + 2 + 2 # room for indent + dashes + gutter 354 text_width = line_width - opt_width 355 big_indent = ' ' * opt_width
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/ |
fancy_getopt.py | 329 opt_width = max_opt + 2 + 2 + 2 # room for indent + dashes + gutter 354 text_width = line_width - opt_width 355 big_indent = ' ' * opt_width
|
/external/mksh/src/ |
misc.c | 154 int opt_width; member in struct:options_info 168 oi->opt_width, options[oi->opts[i]].name, 185 oi.opt_width = 0; 193 if ((int)len > oi.opt_width) 194 oi.opt_width = (int)len; 199 octs + 4, oi.opt_width + 4, true); [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
optparse.py | 306 opt_width = self.help_position - self.current_indent - 2 307 if len(opts) > opt_width: 311 opts = "%*s%-*s " % (self.current_indent, "", opt_width, opts) [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
optparse.py | 306 opt_width = self.help_position - self.current_indent - 2 307 if len(opts) > opt_width: 311 opts = "%*s%-*s " % (self.current_indent, "", opt_width, opts) [all...] |