Home
last modified time | relevance | path

Searched refs:default_width (Results 1 – 20 of 20) sorted by relevance

/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/test/
Dcore-extensions.rb162 default_width = ENV[ 'COLUMNS' ] || 80
167 if cols >= 0 then cols else default_width end
169 default_width
172 default_width rescue ( raise e )
/external/chromium_org/chrome/browser/ui/window_sizer/
Dwindow_sizer.cc320 int default_width = std::min(work_area.width() - 2 * kWindowTilePixels, 1050); in GetDefaultWindowBounds() local
338 default_width = static_cast<int>(work_area.width() / 2. - in GetDefaultWindowBounds()
343 default_width, default_height); in GetDefaultWindowBounds()
/external/chromium_org/ash/wm/
Dwindow_positioner.cc417 int default_width = work_area.width() - 2 * kDesktopBorderSize; in GetDefaultWindowBounds() local
422 if (default_width > kMaximumWindowWidth) { in GetDefaultWindowBounds()
425 default_width = kMaximumWindowWidth; in GetDefaultWindowBounds()
429 default_width, in GetDefaultWindowBounds()
/external/freetype/src/cff/
Dcfftoken.h93 CFF_FIELD_NUM ( 20, default_width, "defaultWidthX" )
Dcfftypes.h180 FT_Pos default_width; member
Dcf2ft.c621 decoder->current_subfont->private_dict.default_width ); in cf2_getDefaultWidthX()
Dcffgload.c457 decoder->glyph_width = sub->private_dict.default_width; in cff_decoder_prepare()
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/cff/
Dcfftoken.h93 CFF_FIELD_NUM ( 20, default_width, "defaultWidthX" )
Dcfftypes.h180 FT_Pos default_width; member
Dcf2ft.c597 decoder->current_subfont->private_dict.default_width ); in cf2_getDefaultWidthX()
Dcffgload.c461 decoder->glyph_width = sub->private_dict.default_width; in cff_decoder_prepare()
/external/chromium_org/third_party/freetype/src/cff/
Dcfftoken.h93 CFF_FIELD_NUM ( 20, default_width, "defaultWidthX" )
Dcfftypes.h180 FT_Pos default_width; member
Dcf2ft.c597 decoder->current_subfont->private_dict.default_width ); in cf2_getDefaultWidthX()
Dcffgload.c461 decoder->glyph_width = sub->private_dict.default_width; in cff_decoder_prepare()
/external/chromium_org/third_party/libvpx/source/libvpx/examples/
Dvp9_spatial_svc_encoder.c74 static const uint32_t default_width = 1920; variable
130 enc_cfg->g_w = default_width; in parse_command_line()
/external/libvpx/libvpx/examples/
Dvp9_spatial_scalable_encoder.c92 static const uint32_t default_width = 1920; variable
146 enc_cfg->g_w = default_width; in parse_command_line()
/external/chromium_org/chrome/browser/ui/cocoa/website_settings/
Dwebsite_settings_bubble_controller_unittest.mm155 // If |default_width| is 0, the *default* default width will be used.
156 void CreateBubbleWithWidth(CGFloat default_width) {
161 [controller_ setDefaultWindowWidth:default_width];
/external/chromium_org/ui/views/controls/textfield/
Dtextfield.h141 void set_default_width_in_chars(int default_width) { in set_default_width_in_chars() argument
142 default_width_in_chars_ = default_width; in set_default_width_in_chars()
/external/chromium_org/extensions/browser/api/app_window/
Dapp_window_api.cc399 if (options.default_width.get()) in GetBoundsSpec()
400 params->content_spec.bounds.set_width(*options.default_width.get()); in GetBoundsSpec()