Searched refs:GetHeight (Results 1 - 25 of 170) sorted by relevance

1234567

/external/chromium_org/ui/gfx/
H A Dplatform_font_win_unittest.cc21 if (base_font.GetHeight() < target_height) {
24 while (larger_font.GetHeight() <= target_height) {
28 } else if (expected_font.GetHeight() > target_height) {
32 } while (expected_font.GetHeight() > target_height);
45 const int target_height = base_font.GetHeight() + i;
47 ASSERT_LE(expected_font.GetHeight(), target_height);
52 EXPECT_LE(expected_font.GetHeight(), target_height);
59 EXPECT_LE(expected_font.GetHeight(), target_height);
68 EXPECT_EQ(expected_font.GetHeight(), rederived_font.GetHeight());
[all...]
H A Dfont_list.cc84 font_list.GetCapHeight() : font_list.GetHeight());
86 const int space_at_bottom = height - (y_offset + font_list.GetHeight());
94 int FontList::GetHeight() const { function in class:gfx::FontList
95 return impl_->GetHeight();
H A Dfont_list_unittest.cc265 EXPECT_EQ(font1.GetHeight(), font_list1.GetHeight());
274 EXPECT_NE(font1.GetHeight() - font1.GetBaseline(),
275 font2.GetHeight() - font2.GetBaseline());
281 EXPECT_EQ(std::max(font1.GetHeight() - font1.GetBaseline(),
282 font2.GetHeight() - font2.GetBaseline()),
283 font_list_mix.GetHeight() - font_list_mix.GetBaseline());
298 const int height_1 = font_list.GetHeight() - 5;
300 EXPECT_LE(derived_1.GetHeight(), height_1);
301 EXPECT_LT(derived_1.GetHeight(), font_lis
[all...]
H A Dfont.cc45 int Font::GetHeight() const { function in class:gfx::Font
46 return platform_font_->GetHeight();
H A Dfont_unittest.cc91 EXPECT_GE(cf.GetHeight(), 16);
93 EXPECT_LE(cf.GetHeight(), 26);
99 EXPECT_GT(cf.GetCapHeight(), cf.GetHeight() / 2);
H A Dfont.h72 int GetHeight() const;
H A Dplatform_font.h41 virtual int GetHeight() const = 0;
H A Dplatform_font_win.cc101 if (GetHeight() == height && GetStyle() == style)
106 if (GetHeight() > height) {
109 int font_height = font.GetHeight();
113 if (font_height == font.GetHeight() && font_size == font.GetFontSize())
115 font_height = font.GetHeight();
144 int PlatformFontWin::GetHeight() const { function in class:gfx::PlatformFontWin
/external/chromium_org/third_party/libjingle/source/talk/media/base/
H A Dcapturerenderadapter.cc118 iter->render_height != frame->GetHeight();
121 static_cast<int>(frame->GetHeight()), 0)) {
123 iter->render_height = frame->GetHeight();
126 frame->GetWidth() << " x " << frame->GetHeight();
H A Dvideoframe.cc59 const size_t height = GetHeight();
91 int32 src_height = static_cast<int>(GetHeight());
101 memcpy(dst_y, GetYPlane(), GetWidth() * GetHeight());
129 size_t src_height = GetHeight();
151 (GetHeight() - src_height) >> 2);
201 dst->GetWidth(), dst->GetHeight(),
226 static_cast<int>(GetHeight()),
230 memset(GetYPlane(), 16, GetWidth() * GetHeight());
H A Dvideoadapter.cc274 static_cast<int>(in_frame->GetHeight()),
307 << "x" << in_frame->GetHeight()
319 static_cast<int>(in_frame->GetHeight()),
322 output_format_.height = static_cast<int>(in_frame->GetHeight() * scale +
326 output_format_.height = static_cast<int>(in_frame->GetHeight());
331 in_frame->GetHeight() == static_cast<size_t>(output_format_.height)) {
345 in_frame->GetHeight() != (*out_frame)->GetHeight()) {
358 previous_height_ != (*out_frame)->GetHeight())) {
371 << "x" << in_frame->GetHeight()
[all...]
H A Dfakevideorenderer.h67 frame->GetHeight() != static_cast<size_t>(height_)) {
73 << frame->GetWidth() << "x" << frame->GetHeight();
118 size_t y_height = frame->GetHeight();
H A Dyuvframegenerator.h38 int GetHeight() { return height_; } function in class:cricket::YuvFrameGenerator
/external/chromium_org/third_party/libjingle/source/talk/media/webrtc/
H A Dwebrtctexturevideoframe_unittest.cc51 EXPECT_EQ(480u, frame.GetHeight());
66 EXPECT_EQ(frame1.GetHeight(), frame2->GetHeight());
/external/chromium_org/android_webview/native/
H A Daw_picture.h28 jint GetHeight(JNIEnv* env, jobject obj);
H A Daw_picture.cc29 jint AwPicture::GetHeight(JNIEnv* env, jobject obj) { function in class:android_webview::AwPicture
/external/chromium_org/ui/base/l10n/
H A Dl10n_font_util.cc28 int height = static_cast<int>(font.GetHeight() * lines);
/external/chromium_org/ui/gfx/image/
H A Dimage_skia_rep.cc32 int ImageSkiaRep::GetHeight() const { function in class:gfx::ImageSkiaRep
H A Dimage_skia_rep.h40 int GetHeight() const;
/external/chromium_org/ui/base/dragdrop/
H A Ddrag_utils.cc55 size().width() - 2, font_list.GetHeight());
61 size().width(), font_list.GetHeight());
72 const int height = gfx::FontList().GetHeight() + icon.height() +
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/objc/
H A DRTCI420Frame.mm42 return _videoFrame->GetHeight();
/external/chromium_org/third_party/libjingle/source/talk/media/devices/
H A Dgtkvideorenderer.cc92 frame->GetWidth() * frame->GetHeight() * 4,
107 frame->GetHeight(),
/external/chromium_org/ash/shell/
H A Dlock_view.cc50 (height() - font_list_.GetHeight()) / 2,
51 string_width, font_list_.GetHeight()));
/external/chromium_org/ash/frame/
H A Dheader_painter_util.cc68 int height = title_font_list.GetHeight();
/external/chromium_org/third_party/webrtc/modules/video_coding/codecs/test_framework/
H A Dvideo_source.h62 int GetHeight() const { return _height; } function in class:VideoSource

Completed in 602 milliseconds

1234567