/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/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/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_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/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_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/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);
|
/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/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/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;
|
/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/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/ui/views/bubble/ |
tray_bubble_view.h | 92 int max_width); 96 int max_width; member in struct:views::TrayBubbleView::InitParams
|
/external/chromium_org/third_party/freetype/include/freetype/ |
ftwinfnt.h | 204 FT_UShort max_width; member in struct:FT_WinFNT_HeaderRec_
|
/external/freetype/include/freetype/ |
ftwinfnt.h | 204 FT_UShort max_width; member in struct:FT_WinFNT_HeaderRec_
|
/hardware/samsung_slsi/exynos5/include/ |
v4l2-subdev.h | 59 __u32 max_width; member in struct:v4l2_subdev_frame_size_enum
|
/hardware/samsung_slsi/exynos5/original-kernel-headers/linux/ |
v4l2-subdev.h | 90 __u32 max_width; member in struct:v4l2_subdev_frame_size_enum
|
/ndk/sources/host-tools/sed-4.2.1/sed/ |
fmt.c | 158 static int max_width; variable 171 /* The preferred width of text lines, set to LEEWAY % less than max_width. */ 214 max_width = max_length; 215 best_width = max_width * (201 - 2 * LEEWAY) / 200; 443 word_limit->length = max_width; /* sentinel */ 471 while (len < max_width);
|
/external/chromium_org/ash/wm/ |
window_resizer.cc | 371 int max_width = Shell::GetScreen()->GetDisplayNearestWindow( local 375 max_width = std::min(max_width, max_size.width()); 376 if (width > max_width) { 377 width = max_width; 379 max_width);
|