Searched refs:Size (Results 1 - 25 of 3528) sorted by relevance

1234567891011>>

/external/chromium_org/chrome/common/extensions/api/notifications/
H A Dnotification_style.h16 gfx::Size image_size;
17 gfx::Size icon_size;
18 gfx::Size button_icon_size;
19 gfx::Size app_icon_mask_size;
H A Dnotification_style.cc17 gfx::Size(message_center::kNotificationPreferredImageWidth,
19 sizes.icon_size = gfx::Size(message_center::kNotificationIconSize,
22 gfx::Size(message_center::kNotificationButtonIconSize,
25 sizes.app_icon_mask_size = gfx::Size(message_center::kSmallImageSize,
/external/clang/test/Sema/
H A Doffsetof-64.c5 const unsigned long Size = (1l << 60); variable
8 char padding[Size];
9 char more_padding[1][Size];
16 char padding[Size][Size][Size]; // expected-error 2{{array is too large}}
/external/llvm/lib/Support/
H A DLEB128.cpp21 unsigned Size = 0; local
24 Size += sizeof(int8_t);
26 return Size;
31 unsigned Size = 0; local
39 Size += sizeof(int8_t);
41 return Size;
H A Draw_os_ostream.cpp26 void raw_os_ostream::write_impl(const char *Ptr, size_t Size) { argument
27 OS.write(Ptr, Size);
/external/chromium_org/ui/display/util/
H A Ddisplay_util_unittest.cc12 EXPECT_TRUE(IsDisplaySizeBlackListed(gfx::Size(10, 10)));
13 EXPECT_TRUE(IsDisplaySizeBlackListed(gfx::Size(40, 30)));
14 EXPECT_TRUE(IsDisplaySizeBlackListed(gfx::Size(50, 40)));
15 EXPECT_TRUE(IsDisplaySizeBlackListed(gfx::Size(160, 90)));
16 EXPECT_TRUE(IsDisplaySizeBlackListed(gfx::Size(160, 100)));
18 EXPECT_FALSE(IsDisplaySizeBlackListed(gfx::Size(50, 60)));
19 EXPECT_FALSE(IsDisplaySizeBlackListed(gfx::Size(100, 70)));
20 EXPECT_FALSE(IsDisplaySizeBlackListed(gfx::Size(272, 181)));
26 gfx::Size(256, 144), gfx::Size(136
[all...]
H A Ddisplay_util.h16 const gfx::Size& physical_size);
21 const gfx::Size& physical_size_in_mm,
22 const gfx::Size& screen_size_in_pixels);
/external/deqp/framework/common/
H A DtcuVector.hpp36 template <typename T, int VecSize, int Size>
44 VecAccess& operator= (const Vector<T, Size>& v);
46 operator Vector<T, Size> (void) const;
50 int m_index[Size];
53 template <typename T, int VecSize, int Size>
54 VecAccess<T, VecSize, Size>::VecAccess (Vector<T, VecSize>& v, int x, int y)
57 DE_STATIC_ASSERT(Size == 2);
62 template <typename T, int VecSize, int Size>
63 VecAccess<T, VecSize, Size>::VecAccess (Vector<T, VecSize>& v, int x, int y, int z)
66 DE_STATIC_ASSERT(Size
[all...]
/external/chromium_org/ui/gfx/geometry/
H A Dsize.cc15 template class SizeBase<Size, int>;
18 Size::Size(const CGSize& s) function in class:gfx::Size
19 : SizeBase<Size, int>(s.width, s.height) {
22 Size& Size::operator=(const CGSize& s) {
30 SIZE Size::ToSIZE() const {
37 CGSize Size::ToCGSize() const {
42 std::string Size::ToString() const {
H A Dsize_conversions.h13 // Returns a Size with each component from the input SizeF floored.
14 GFX_EXPORT Size ToFlooredSize(const SizeF& size);
16 // Returns a Size with each component from the input SizeF ceiled.
17 GFX_EXPORT Size ToCeiledSize(const SizeF& size);
19 // Returns a Size with each component from the input SizeF rounded.
20 GFX_EXPORT Size ToRoundedSize(const SizeF& size);
H A Dsize.h27 class GFX_EXPORT Size : public SizeBase<Size, int> { class in namespace:gfx
29 Size() : SizeBase<Size, int>(0, 0) {} function in class:gfx::Size
30 Size(int width, int height) : SizeBase<Size, int>(width, height) {} function in class:gfx::Size
32 explicit Size(const CGSize& s);
35 ~Size() {}
38 Size& operator=(const CGSize& s);
54 inline bool operator==(const Size
[all...]
H A Dsize_conversions.cc11 Size ToFlooredSize(const SizeF& size) {
14 return Size(w, h);
17 Size ToCeiledSize(const SizeF& size) {
20 return Size(w, h);
23 Size ToRoundedSize(const SizeF& size) {
26 return Size(w, h);
H A Dsize_unittest.cc23 Size a(10, 20);
34 EXPECT_EQ(Size(0, 0), ToFlooredSize(SizeF(0, 0)));
35 EXPECT_EQ(Size(0, 0), ToFlooredSize(SizeF(0.0001f, 0.0001f)));
36 EXPECT_EQ(Size(0, 0), ToFlooredSize(SizeF(0.4999f, 0.4999f)));
37 EXPECT_EQ(Size(0, 0), ToFlooredSize(SizeF(0.5f, 0.5f)));
38 EXPECT_EQ(Size(0, 0), ToFlooredSize(SizeF(0.9999f, 0.9999f)));
40 EXPECT_EQ(Size(10, 10), ToFlooredSize(SizeF(10, 10)));
41 EXPECT_EQ(Size(10, 10), ToFlooredSize(SizeF(10.0001f, 10.0001f)));
42 EXPECT_EQ(Size(10, 10), ToFlooredSize(SizeF(10.4999f, 10.4999f)));
43 EXPECT_EQ(Size(1
[all...]
/external/chromium_org/extensions/browser/app_window/
H A Dsize_constraints.h23 SizeConstraints(const gfx::Size& min_size, const gfx::Size& max_size);
27 static gfx::Size AddFrameToConstraints(const gfx::Size& size_constraints,
31 gfx::Size ClampSize(gfx::Size size) const;
33 // When gfx::Size is used as a min/max size, a zero represents an unbounded
35 // Note we can't use gfx::Size::IsEmpty as it returns true if either width
44 gfx::Size GetMaximumSize() const;
45 gfx::Size GetMinimumSiz
[all...]
/external/chromium_org/chrome/browser/resources/print_preview/data/
H A Dsize.js14 function Size(width, height) {
30 Size.prototype = {
42 * @param {print_preview.Size} other Other size object to compare against.
54 Size: Size
/external/chromium_org/cc/base/
H A Dtiling_data_unittest.cc16 int NumTiles(const gfx::Size& max_texture_size,
17 const gfx::Size& tiling_size,
30 int XIndex(const gfx::Size& max_texture_size,
31 const gfx::Size& tiling_size,
38 int YIndex(const gfx::Size& max_texture_size,
39 const gfx::Size& tiling_size,
46 int MinBorderXIndex(const gfx::Size& max_texture_size,
47 const gfx::Size& tiling_size,
54 int MinBorderYIndex(const gfx::Size& max_texture_size,
55 const gfx::Size
[all...]
/external/llvm/include/llvm/CodeGen/
H A DMachineCodeInfo.h26 size_t Size; // Number of bytes in memory used member in class:llvm::MachineCodeInfo
30 MachineCodeInfo() : Size(0), Address(nullptr) {}
33 Size = s;
41 return Size;
/external/chromium_org/chrome/browser/ui/
H A Dweb_contents_sizer.h13 class Size;
19 const gfx::Size& size);
/external/chromium_org/components/web_modal/
H A Dweb_contents_modal_dialog_host.h11 class Size;
25 virtual gfx::Size GetMaximumDialogSize() = 0;
/external/chromium_org/ui/events/
H A Dtouchscreen_device.h17 TouchscreenDevice(int id, const gfx::Size& size, bool is_internal);
22 // Size of the touch screen area.
23 gfx::Size size;
/external/chromium_org/ui/views/window/
H A Dwindow_shape.h11 class Size;
19 VIEWS_EXPORT void GetDefaultWindowMask(const gfx::Size& size,
/external/chromium_org/ppapi/cpp/private/
H A Dimage_capture_config_private.h60 /// @param[out] preview_size A <code>Size</code> that indicates the
62 void GetPreviewSize(Size* preview_size);
67 /// @param[in] preview_size A <code>Size</code> that indicates the
69 void SetPreviewSize(const Size& preview_size);
74 /// @param[out] jpeg_size A <code>Size</code> that indicates the current
76 void GetJpegSize(Size* jpeg_size);
81 /// @param[in] jpeg_size A <code>Size</code> that indicates the requested
83 void SetJpegSize(const Size& jpeg_size);
/external/chromium_org/ui/views/test/
H A Dtest_views.cc9 StaticSizedView::StaticSizedView(const gfx::Size& size) : size_(size) {}
13 gfx::Size StaticSizedView::GetPreferredSize() const {
26 gfx::Size ProportionallySizedView::GetPreferredSize() const {
28 return gfx::Size(preferred_width_, GetHeightForWidth(preferred_width_));
/external/chromium_org/cc/test/
H A Dpixel_test_software_output_device.h14 virtual void Resize(const gfx::Size& pixel_size, float scale_factor) OVERRIDE;
16 void set_surface_expansion_size(const gfx::Size& surface_expansion_size) {
21 gfx::Size surface_expansion_size_;
/external/chromium_org/ui/gfx/image/
H A Dimage_png_rep.h12 class Size;
24 // If the image is invalid, returns gfx::Size(0, 0).
27 gfx::Size Size() const;

Completed in 1141 milliseconds

1234567891011>>