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

1234567891011>>

/external/chromium_org/cc/base/
H A Dtiling_data_unittest.cc16 gfx::Size max_texture_size,
17 gfx::Size total_size,
31 gfx::Size max_texture_size,
32 gfx::Size total_size,
40 gfx::Size max_texture_size,
41 gfx::Size total_size,
49 gfx::Size max_texture_size,
50 gfx::Size total_size,
58 gfx::Size max_texture_size,
59 gfx::Size total_siz
[all...]
/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/chromium_org/ui/gfx/
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.h26 class GFX_EXPORT Size : public SizeBase<Size, int> { class in namespace:gfx
28 Size() : SizeBase<Size, int>(0, 0) {} function in class:gfx::Size
29 Size(int width, int height) : SizeBase<Size, int>(width, height) {} function in class:gfx::Size
31 explicit Size(const CGSize& s);
34 ~Size() {}
37 Size& operator=(const CGSize& s);
53 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.cc24 Size a(10, 20);
35 EXPECT_EQ(Size(0, 0), ToFlooredSize(SizeF(0, 0)));
36 EXPECT_EQ(Size(0, 0), ToFlooredSize(SizeF(0.0001f, 0.0001f)));
37 EXPECT_EQ(Size(0, 0), ToFlooredSize(SizeF(0.4999f, 0.4999f)));
38 EXPECT_EQ(Size(0, 0), ToFlooredSize(SizeF(0.5f, 0.5f)));
39 EXPECT_EQ(Size(0, 0), ToFlooredSize(SizeF(0.9999f, 0.9999f)));
41 EXPECT_EQ(Size(10, 10), ToFlooredSize(SizeF(10, 10)));
42 EXPECT_EQ(Size(10, 10), ToFlooredSize(SizeF(10.0001f, 10.0001f)));
43 EXPECT_EQ(Size(10, 10), ToFlooredSize(SizeF(10.4999f, 10.4999f)));
44 EXPECT_EQ(Size(1
[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/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(0) {}
33 Size = s;
41 return Size;
/external/chromium_org/cc/test/
H A Dpixel_test_software_output_device.cc9 void PixelTestSoftwareOutputDevice::Resize(gfx::Size size) {
10 gfx::Size expanded_size(size.width() + surface_expansion_size_.width(),
H A Dpixel_test_software_output_device.h14 virtual void Resize(gfx::Size size) OVERRIDE;
16 void set_surface_expansion_size(gfx::Size surface_expansion_size) {
21 gfx::Size surface_expansion_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/views/window/
H A Dwindow_shape.h11 class Size;
19 VIEWS_EXPORT void GetDefaultWindowMask(const gfx::Size& size,
/external/llvm/lib/Support/
H A Draw_os_ostream.cpp26 void raw_os_ostream::write_impl(const char *Ptr, size_t Size) { argument
27 OS.write(Ptr, Size);
H A Dcircular_raw_ostream.cpp18 void circular_raw_ostream::write_impl(const char *Ptr, size_t Size) { argument
20 TheStream->write(Ptr, Size);
25 while (Size != 0) {
27 std::min(unsigned(Size), unsigned(BufferSize - (Cur - BufferArray)));
29 Size -= Bytes;
H A DFormattedStream.cpp23 static void UpdatePosition(std::pair<unsigned, unsigned> &Position, const char *Ptr, size_t Size) { argument
29 for (const char *End = Ptr + Size; Ptr != End; ++Ptr) {
47 void formatted_raw_ostream::ComputePosition(const char *Ptr, size_t Size) { argument
51 if (Ptr <= Scanned && Scanned <= Ptr + Size)
54 UpdatePosition(Position, Scanned, Size - (Scanned - Ptr));
56 UpdatePosition(Position, Ptr, Size);
59 Scanned = Ptr + Size;
75 void formatted_raw_ostream::write_impl(const char *Ptr, size_t Size) { argument
77 ComputePosition(Ptr, Size);
81 TheStream->write(Ptr, Size);
[all...]
/external/chromium_org/chrome/browser/ui/android/extensions/
H A Dextension_view_android.cc9 void ExtensionViewAndroid::ResizeDueToAutoResize(const gfx::Size& new_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;
/external/clang/test/SemaCXX/
H A Ddependent-types.cpp5 template<typename T, int Size> void f() {
10 T x5[Size];
11 int x6[Size];
/external/chromium_org/chrome/browser/thumbnails/
H A Dsimple_thumbnail_crop.h19 explicit SimpleThumbnailCrop(const gfx::Size& target_size);
21 virtual ClipResult GetCanvasCopyInfo(const gfx::Size& source_size,
24 gfx::Size* target_size) const OVERRIDE;
47 static gfx::Size GetCopySizeForThumbnail(ui::ScaleFactor scale_factor,
48 const gfx::Size& thumbnail_size);
49 static gfx::Rect GetClippingRect(const gfx::Size& source_size,
50 const gfx::Size& desired_size,
57 static gfx::Size ComputeTargetSizeAtMaximumScale(const gfx::Size& given_size);
64 const gfx::Size
[all...]
H A Dcontent_analysis.h37 const gfx::Size& target_size,
52 gfx::Size AdjustClippingSizeToAspectRatio(const gfx::Size& target_size,
53 const gfx::Size& image_size,
54 const gfx::Size& computed_size);
62 const gfx::Size& target_size,
80 const gfx::Size& target_size,
/external/eigen/Eigen/src/Eigen2Support/
H A DVectorBlock.h54 template<int Size>
55 inline VectorBlock<Derived,Size>
59 return VectorBlock<Derived,Size>(derived(), 0);
64 template<int Size>
65 inline const VectorBlock<const Derived,Size>
69 return VectorBlock<const Derived,Size>(derived(), 0);
74 template<int Size>
75 inline VectorBlock<Derived,Size>
79 return VectorBlock<Derived, Size>(derived(), size() - Size);
[all...]
/external/chromium_org/ui/surface/
H A Dd3d9_utils_win.h22 class Size;
50 const gfx::Size& size,
61 const gfx::Size& size,
75 const gfx::Size& size,
80 gfx::Size GetSize(IDirect3DTexture9* texture);
83 gfx::Size GetSize(IDirect3DSurface9* surface);
/external/chromium_org/ash/system/tray/
H A Dfixed_sized_image_view.cc20 gfx::Size FixedSizedImageView::GetPreferredSize() {
21 gfx::Size size = views::ImageView::GetPreferredSize();
22 return gfx::Size(width_ ? width_ : size.width(),
/external/chromium_org/chrome/renderer/prerender/
H A Dprerender_extra_data.h18 const gfx::Size& size);
23 const gfx::Size& size() const { return size_; }
31 const gfx::Size size_;

Completed in 797 milliseconds

1234567891011>>