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

1 2 3 4 5 6 7

  /external/chromium_org/ash/system/user/
user_card_view.h 19 // |max_width| takes effect only if |login_status| is LOGGED_IN_PUBLIC.
21 int max_width,
30 void AddPublicModeUserContent(int max_width);
user_card_view.cc 128 PublicAccountUserDetails(int max_width);
153 PublicAccountUserDetails::PublicAccountUserDetails(int max_width)
186 CalculatePreferredSize(max_width);
289 int max_width = std::min( local
298 while (min_width < max_width) {
300 const int width = (min_width + max_width) / 2;
315 max_width = width;
338 int max_width,
347 AddPublicModeUserContent(max_width);
365 void UserCardView::AddPublicModeUserContent(int max_width) {
    [all...]
  /external/chromium_org/tools/telemetry/telemetry/results/
base_test_results_unittest.py 40 max_width = max([len(x) for x in ex + res])
41 max_width = max(10, max_width)
43 print '%*s | %*s' % (max_width, 'expected', max_width, 'result')
57 print '%*s %s %*s' % (max_width, e, sep, max_width, r)
  /external/chromium_org/content/test/
webrtc_content_browsertest_base.h 32 int max_width,
webrtc_content_browsertest_base.cc 60 int max_width,
71 max_width,
  /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 24 const int max_width = 4000; local
44 TooltipAura::TrimTooltipToFit(font_list, max_width, &tooltip, &width,
57 TooltipAura::TrimTooltipToFit(font_list, max_width, &tooltip, &width,
71 TooltipAura::TrimTooltipToFit(font_list, max_width, &tooltip, &width,
84 TooltipAura::TrimTooltipToFit(font_list, max_width, &tooltip, &width,
97 TooltipAura::TrimTooltipToFit(font_list, max_width, &tooltip, &width,
108 TooltipAura::TrimTooltipToFit(font_list, max_width, &tooltip, &width,
123 TooltipAura::TrimTooltipToFit(font_list, max_width, &tooltip, &width,
tooltip_aura.h 29 // Trims the tooltip to fit in the width |max_width|, setting |text| to the
32 // is used to layout |text|. |max_width| comes from GetMaxWidth().
34 int max_width,
tooltip_aura.cc 72 int max_width,
80 int available_width = std::min(kTooltipMaxWidthPixels, max_width);
192 int max_width, line_count; local
195 &max_width, &line_count);
198 int width = max_width + 2 * kTooltipHorizontalPadding;
199 int height = label_.GetHeightForWidth(max_width) +
  /external/chromium_org/content/renderer/media/
video_track_adapter.cc 43 int max_width,
63 bool ConstraintsMatch(int max_width,
100 int max_width,
105 max_frame_size_(max_width, max_height),
113 << "{ max_width =" << max_width << "}, "
239 int max_width,
244 return max_frame_size_.width() == max_width &&
268 int max_width,
276 this, track, frame_callback, max_width, max_height
    [all...]
video_track_adapter.h 39 int max_width, int max_height,
63 int max_width, int max_height,
media_stream_video_source.cc 246 int max_width; local
248 GetDesiredMaxWidthAndHeight(constraints, &max_width, &max_height);
250 if (min_width > max_width || min_height > max_height)
310 int max_width; local
312 GetDesiredMaxWidthAndHeight(constraints, &max_width, &max_height);
316 std::min(max_width, MediaStreamVideoSource::kDefaultWidth) *
533 int max_width; local
535 GetDesiredMaxWidthAndHeight(it->constraints, &max_width, &max_height);
542 max_width, max_height,
  /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_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/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/ash/wm/
window_resizer.cc 313 int max_width = Shell::GetScreen()->GetDisplayNearestWindow( local
317 max_width = std::min(max_width, max_size.width());
318 if (width > max_width) {
319 width = max_width;
321 max_width);
  /external/chromium_org/ui/views/bubble/
tray_bubble_view.h 97 int max_width);
101 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/
ftwinfnt.h 205 FT_UShort max_width; member in struct:FT_WinFNT_HeaderRec_
  /external/pdfium/core/include/thirdparties/freetype/freetype/
ftwinfnt.h 204 FT_UShort max_width; member in struct:FT_WinFNT_HeaderRec_

Completed in 1310 milliseconds

1 2 3 4 5 6 7