HomeSort by relevance Sort by last modified time
    Searched full:max_width (Results 1 - 25 of 160) sorted by null

1 2 3 4 5 6 7

  /external/chromium_org/third_party/ots/src/
hdmx.h 16 uint8_t max_width; member in struct:ots::OpenTypeHDMXDeviceRecord
hdmx.cc 68 !table.ReadU8(&rec.max_width)) {
117 !out->Write(&rec.max_width, 1) ||
  /external/chromium_org/ui/views/widget/
tooltip_manager.cc 27 int* max_width,
32 *max_width = 0;
57 *max_width = std::max(*max_width, font.GetStringWidth(elided_text));
tooltip_manager.h 57 // |max_width| to the width (in pixels) of the clipped text and |line_count|
62 int* max_width,
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vdpau/
query.c 68 VdpBool *is_supported, uint32_t *max_width, uint32_t *max_height)
74 if (!(is_supported && max_width && max_height))
95 *max_width = *max_height = pow(2,max_2d_texture_level-1);
157 uint32_t *max_width, uint32_t *max_height)
163 if (!(is_supported && max_level && max_macroblocks && max_width && max_height))
183 *max_width = pscreen->get_video_param(pscreen, p_profile, PIPE_VIDEO_CAP_MAX_WIDTH);
186 *max_macroblocks = (*max_width/16)*(*max_height/16);
188 *max_width = 0;
203 VdpBool *is_supported, uint32_t *max_width, uint32_t *max_height)
221 if (!(is_supported && max_width && max_height)
    [all...]
  /external/mesa3d/src/gallium/state_trackers/vdpau/
query.c 68 VdpBool *is_supported, uint32_t *max_width, uint32_t *max_height)
74 if (!(is_supported && max_width && max_height))
95 *max_width = *max_height = pow(2,max_2d_texture_level-1);
157 uint32_t *max_width, uint32_t *max_height)
163 if (!(is_supported && max_level && max_macroblocks && max_width && max_height))
183 *max_width = pscreen->get_video_param(pscreen, p_profile, PIPE_VIDEO_CAP_MAX_WIDTH);
186 *max_macroblocks = (*max_width/16)*(*max_height/16);
188 *max_width = 0;
203 VdpBool *is_supported, uint32_t *max_width, uint32_t *max_height)
221 if (!(is_supported && max_width && max_height)
    [all...]
  /external/pixman/test/
blitters-test.c 23 int max_width,
40 width = prng_rand_n (max_width) + 1;
240 int max_width, max_height, max_extra_stride; local
243 max_width = max_height = 24 + testnum / 10000;
246 if (max_width > 256)
247 max_width = 256;
262 src_img = create_random_image (img_fmt_list, max_width, max_height,
274 dst_img = create_random_image (img_fmt_list, max_width, max_height,
317 mask_img = create_random_image (mask_fmt_list, max_width, max_height,
  /external/chromium/chrome/browser/chromeos/login/
update_view.cc 164 int max_width = width() - GetInsets().width() - 2 * kHorizontalSpacing; local
169 installing_updates_label_->SizeToFit(max_width);
170 preparing_updates_label_->SizeToFit(max_width);
171 reboot_label_->SizeToFit(max_width);
172 manual_reboot_label_->SizeToFit(max_width);
176 max_width,
196 checking_label_->SizeToFit(max_width - throbber_width - kBetweenSpacing);
206 escape_to_skip_label_->SizeToFit(max_width);
new_user_view.cc 381 int max_width = this->width() - x - std::max(insets.right(), x); local
382 title_label_->SizeToFit(max_width);
383 title_hint_label_->SizeToFit(max_width);
386 y += setViewBounds(title_label_, x, y, max_width, false);
387 y += setViewBounds(title_hint_label_, x, y, max_width, false);
412 x, y, max_width, false) + kRowPad;
415 y += setViewBounds(create_account_link_, x, y, max_width, false);
  /external/chromium_org/ui/views/corewm/
tooltip_controller_test_helper.cc 52 void TooltipControllerTestHelper::TrimTooltipToFit(int max_width,
56 TooltipController::TrimTooltipToFit(max_width, text, width, line_count);
tooltip_controller.h 67 // Trims the tooltip to fit in the width |max_width|, setting |text| to the
70 // give the location of the tooltip in screen coordinates. |max_width| comes
72 static void TrimTooltipToFit(int max_width,
tooltip_controller_test_helper.h 41 static void TrimTooltipToFit(int max_width,
tooltip_controller_unittest.cc 216 const int max_width = 4000; local
236 max_width, &tooltip, &width, &line_count);
248 max_width, &tooltip, &width, &line_count);
261 max_width, &tooltip, &width, &line_count);
274 max_width, &tooltip, &width, &line_count);
286 max_width, &tooltip, &width, &line_count);
296 max_width, &tooltip, &width, &line_count);
309 max_width, &tooltip, &width, &line_count);
  /external/qemu/
readline.c 279 int len, i, j, max_width, nb_cols, max_prefix; local
303 max_width = 0;
317 if (len > max_width)
318 max_width = len;
324 max_width += 2;
325 if (max_width < 10)
326 max_width = 10;
327 else if (max_width > 80)
328 max_width = 80;
329 nb_cols = 80 / max_width;
    [all...]
  /external/chromium_org/ui/views/controls/combobox/
native_combobox_win.cc 53 int max_width = 0; local
64 max_width = std::max(max_width, font.GetStringWidth(text));
66 content_width_ = max_width;
74 max_width += GetSystemMetrics(SM_CXVSCROLL);
77 max_width += 2 * kComboboxDropdownBorderSize + kComboboxExtraPaddingX;
78 SendMessage(native_view(), CB_SETDROPPEDWIDTH, max_width, 0); local
  /external/chromium/chrome/browser/chromeos/frame/
panel_browser_view.cc 35 int max_width = gdk_screen_get_width(screen) * kPanelMaxWidthFactor; local
45 else if (bounds->width() > max_width)
46 bounds->set_width(max_width);
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/xvmc/
context.c 56 unsigned int max_width = 0, max_height = 0; local
95 max_width = surface_info[l].max_width;
112 i, port, surface_type_id, max_width, max_height, *chroma_format,
131 if (width > max_width || height > max_height) {
133 width, height, max_width, max_height);
  /external/mesa3d/src/gallium/state_trackers/xvmc/
context.c 56 unsigned int max_width = 0, max_height = 0; local
95 max_width = surface_info[l].max_width;
112 i, port, surface_type_id, max_width, max_height, *chroma_format,
131 if (width > max_width || height > max_height) {
133 width, height, max_width, max_height);
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/softpipe/
sp_limits.h 39 #define MAX_WIDTH (1 << (SP_MAX_TEXTURE_2D_LEVELS - 1))
sp_tile_cache.c 63 pos = addr.bits.y * (MAX_WIDTH / TILE_SIZE) + addr.bits.x;
64 assert(pos / 32 < (MAX_WIDTH / TILE_SIZE) * (MAX_HEIGHT / TILE_SIZE) / 32);
77 pos = addr.bits.y * (MAX_WIDTH / TILE_SIZE) + addr.bits.x;
78 assert(pos / 32 < (MAX_WIDTH / TILE_SIZE) * (MAX_HEIGHT / TILE_SIZE) / 32);
90 /* sanity checking: max sure MAX_WIDTH/HEIGHT >= largest texture image */
93 assert(MAX_WIDTH >= maxTexSize);
97 assert((TILE_SIZE << TILE_ADDR_BITS) >= MAX_WIDTH);
  /external/mesa3d/src/gallium/drivers/softpipe/
sp_limits.h 39 #define MAX_WIDTH (1 << (SP_MAX_TEXTURE_2D_LEVELS - 1))
sp_tile_cache.c 63 pos = addr.bits.y * (MAX_WIDTH / TILE_SIZE) + addr.bits.x;
64 assert(pos / 32 < (MAX_WIDTH / TILE_SIZE) * (MAX_HEIGHT / TILE_SIZE) / 32);
77 pos = addr.bits.y * (MAX_WIDTH / TILE_SIZE) + addr.bits.x;
78 assert(pos / 32 < (MAX_WIDTH / TILE_SIZE) * (MAX_HEIGHT / TILE_SIZE) / 32);
90 /* sanity checking: max sure MAX_WIDTH/HEIGHT >= largest texture image */
93 assert(MAX_WIDTH >= maxTexSize);
97 assert((TILE_SIZE << TILE_ADDR_BITS) >= MAX_WIDTH);
  /packages/apps/Gallery2/res/values/
filtershow_values_attrs.xml 23 <attr name="max_width" format="dimension" />
  /external/chromium_org/third_party/libjingle/source/talk/media/webrtc/
webrtcvideoencoderfactory.h 46 int max_width; member in struct:cricket::WebRtcVideoEncoderFactory::VideoCodec
52 : type(t), name(nm), max_width(w), max_height(h), max_fps(fr) {
  /external/chromium_org/chrome/browser/download/
download_item_model.h 51 // |font| and |max_width| are used to elide the filename and/or interrupt
53 // |max_width|. The tooltip will be at most 2 lines.
54 string16 GetTooltipText(const gfx::Font& font, int max_width) const;

Completed in 659 milliseconds

1 2 3 4 5 6 7