/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/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_aura_unittest.cc | 25 const int max_width = 4000; local 44 TooltipAura::TrimTooltipToFit(max_width, &tooltip, &width, &line_count); 55 TooltipAura::TrimTooltipToFit(max_width, &tooltip, &width, &line_count); 67 TooltipAura::TrimTooltipToFit(max_width, &tooltip, &width, &line_count); 79 TooltipAura::TrimTooltipToFit(max_width, &tooltip, &width, &line_count); 90 TooltipAura::TrimTooltipToFit(max_width, &tooltip, &width, &line_count); 99 TooltipAura::TrimTooltipToFit(max_width, &tooltip, &width, &line_count); 111 TooltipAura::TrimTooltipToFit(max_width, &tooltip, &width, &line_count);
|
tooltip_aura.h | 25 // Trims the tooltip to fit in the width |max_width|, setting |text| to the 28 // give the location of the tooltip in screen coordinates. |max_width| comes 30 static void TrimTooltipToFit(int max_width,
|
tooltip_aura.cc | 88 void TooltipAura::TrimTooltipToFit(int max_width, 96 int available_width = std::min(kTooltipMaxWidthPixels, max_width); 240 int max_width, line_count; local 243 GetMaxWidth(location), &trimmed_text, &max_width, &line_count); local 246 int width = max_width + 2 * kTooltipHorizontalPadding; 247 int height = label_.GetHeightForWidth(max_width) +
|
tooltip_win.cc | 122 int max_width = (monitor_bounds.width() + 1) / 2; local 123 SendMessage(tooltip_hwnd_, TTM_SETMAXTIPWIDTH, 0, 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/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 | 55 // |font_list| and |max_width| are used to elide the filename and/or interrupt 57 // |max_width|. The tooltip will be at most 2 lines. 58 base::string16 GetTooltipText(const gfx::FontList& font_list, 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 | 96 int max_width); 100 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
|
/external/chromium_org/tools/telemetry/telemetry/page/ |
buildbot_page_measurement_results_unittest.py | 45 max_width = max([len(x) for x in ex + res]) 46 max_width = max(10, max_width) 48 print '%*s | %*s' % (max_width, 'expected', max_width, 'result') 62 print '%*s %s %*s' % (max_width, e, sep, max_width, r)
|
/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 | 385 int max_width = Shell::GetScreen()->GetDisplayNearestWindow( local 389 max_width = std::min(max_width, max_size.width()); 390 if (width > max_width) { 391 width = max_width; 393 max_width);
|
/external/chromium_org/chrome/browser/ui/views/location_bar/ |
location_bar_layout.cc | 133 int max_width = static_cast<int>(*entry_width * (*i)->max_fraction); local 136 std::max((*i)->view->GetMinimumSize().width(), max_width));
|