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

1 2 3 4 5 6 7 8 91011>>

  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
driverspecs.h 19 #define __in_bcount(Size)
20 #define __in_ecount(Size)
23 #define __out_bcount(Size)
24 #define __out_bcount_part(Size, Length)
25 #define __out_ecount(Size)
29 #define __deref_out_ecount(Size)
  /external/chromium_org/apps/
size_constraints.h 8 #include "ui/gfx/geometry/size.h"
23 SizeConstraints(const gfx::Size& min_size, const gfx::Size& max_size);
26 // Adds frame insets to a size constraint.
27 static gfx::Size AddFrameToConstraints(const gfx::Size& size_constraints,
30 // Returns the bounds with its size clamped to the min/max size.
31 gfx::Size ClampSize(gfx::Size size) const
    [all...]
  /external/chromium_org/chrome/common/extensions/api/notifications/
notification_style.h 8 #include "ui/gfx/size.h"
10 // This structure describes the size in DIPs of each type of image rendered
13 gfx::Size image_size;
14 gfx::Size icon_size;
15 gfx::Size button_icon_size;
  /external/clang/test/Sema/
offsetof-64.c 5 const unsigned long Size = (1l << 60);
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/
LEB128.cpp 19 /// Utility function to get the size of the ULEB128-encoded value.
21 unsigned Size = 0;
24 Size += sizeof(int8_t);
26 return Size;
29 /// Utility function to get the size of the SLEB128-encoded value.
31 unsigned Size = 0;
39 Size += sizeof(int8_t);
41 return Size;
  /external/chromium_org/ui/display/util/
display_util_unittest.cc 12 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(1366, 768)))
    [all...]
display_util.h 9 #include "ui/gfx/geometry/size.h"
13 // Returns true if a given size is in the list of bogus sizes in mm that should
16 const gfx::Size& physical_size);
21 const gfx::Size& physical_size_in_mm,
22 const gfx::Size& screen_size_in_pixels);
  /external/chromium_org/ui/gfx/geometry/
size.h 16 typedef struct tagSIZE SIZE;
25 // A size has width and height values.
26 class GFX_EXPORT Size : public SizeBase<Size, int> {
28 Size() : SizeBase<Size, int>(0, 0) {}
29 Size(int width, int height) : SizeBase<Size, int>(width, height) {}
31 explicit Size(const CGSize& s);
34 ~Size() {}
    [all...]
size.cc 5 #include "ui/gfx/geometry/size.h"
15 template class SizeBase<Size, int>;
18 Size::Size(const CGSize& s)
19 : SizeBase<Size, int>(s.width, s.height) {
22 Size& Size::operator=(const CGSize& s) {
30 SIZE Size::ToSIZE() const {
31 SIZE s
    [all...]
size_conversions.h 8 #include "ui/gfx/geometry/size.h"
13 // 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);
    [all...]
size_conversions.cc 11 Size ToFlooredSize(const SizeF& size) {
12 int w = ToFlooredInt(size.width());
13 int h = ToFlooredInt(size.height());
14 return Size(w, h);
17 Size ToCeiledSize(const SizeF& size) {
18 int w = ToCeiledInt(size.width());
19 int h = ToCeiledInt(size.height());
20 return Size(w, h)
    [all...]
size_unittest.cc 6 #include "ui/gfx/geometry/size.h"
23 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)))
    [all...]
  /external/deqp/framework/common/
tcuVector.hpp 36 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 == 3)
    [all...]
  /external/chromium_org/cc/test/
pixel_test_software_output_device.h 14 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/apps/ui/
web_contents_sizer.h 13 class Size;
20 const gfx::Size& size);
  /external/chromium_org/components/web_modal/
web_contents_modal_dialog_host.h 11 class Size;
25 virtual gfx::Size GetMaximumDialogSize() = 0;
  /external/chromium_org/ui/views/window/
window_shape.h 11 class Size;
19 VIEWS_EXPORT void GetDefaultWindowMask(const gfx::Size& size,
  /packages/apps/Camera2/src/com/android/camera/util/
Size.java 25 * Simple size class until we are 'L' only and can use android.util.Size.
27 public class Size {
31 public static Size[] convert(android.util.Size[] sizes) {
32 Size[] converted = new Size[sizes.length];
34 converted[i] = new Size(sizes[i].getWidth(), sizes[i].getHeight());
39 public static List<Size> convert(List<com.android.ex.camera2.portability.Size> sizes)
    [all...]
  /frameworks/ex/camera2/portability/src/com/android/ex/camera2/portability/
Size.java 27 * An immutable simple size container.
29 public class Size {
34 * {@link android.hardware.Camera.Size}.
39 public static List<Size> buildListFromCameraSizes(List<Camera.Size> cameraSizes) {
40 ArrayList<Size> list = new ArrayList<Size>(cameraSizes.size());
41 for (Camera.Size cameraSize : cameraSizes) {
42 list.add(new Size(cameraSize))
    [all...]
  /external/chromium_org/ui/ozone/platform/caca/
caca_connection.h 11 #include "ui/gfx/geometry/size.h"
26 // This is the Caca canvas size.
27 gfx::Size physical_size() const { return physical_size_; }
28 gfx::Size bitmap_size() const { return bitmap_size_; }
35 // Size of the console in characters. This can be changed by setting
37 gfx::Size physical_size_;
39 // Size of the backing buffer we draw into. Size in pixels.
40 gfx::Size bitmap_size_;
  /external/chromium_org/ui/ozone/platform/dri/
scanout_surface.h 11 class Size;
27 // ScanoutSurface* surface = new ScanoutSurfaceImpl(size);
71 // Returns the surface size.
72 virtual gfx::Size Size() const = 0;
79 virtual ScanoutSurface* Create(const gfx::Size& size) = 0;
  /external/llvm/include/llvm/CodeGen/
MachineCodeInfo.h 26 size_t Size; // Number of bytes in memory used
30 MachineCodeInfo() : Size(0), Address(nullptr) {}
33 Size = s;
40 size_t size() const { function in class:llvm::MachineCodeInfo
41 return Size;
  /external/chromium_org/chrome/browser/thumbnails/
content_based_thumbnailing_algorithm.h 18 explicit ContentBasedThumbnailingAlgorithm(const gfx::Size& target_size);
20 virtual ClipResult GetCanvasCopyInfo(const gfx::Size& source_size,
23 gfx::Size* target_size) const OVERRIDE;
29 // Prepares (clips to size, copies etc.) the bitmap passed to ProcessBitmap.
33 const gfx::Size& thumbnail_size,
41 const gfx::Size& thumbnail_size,
49 static gfx::Rect GetClippingRect(const gfx::Size& source_size,
50 const gfx::Size& thumbnail_size,
51 gfx::Size* target_size,
54 const gfx::Size target_size_
    [all...]
  /external/chromium_org/cc/base/
tiling_data_unittest.cc 16 int NumTiles(const gfx::Size& max_texture_size,
30 int XIndex(const gfx::Size& max_texture_size,
38 int YIndex(const gfx::Size& max_texture_size,
46 int MinBorderXIndex(const gfx::Size& max_texture_size,
54 int MinBorderYIndex(const gfx::Size& max_texture_size,
62 int MaxBorderXIndex(const gfx::Size& max_texture_size,
70 int MaxBorderYIndex(const gfx::Size& max_texture_size,
78 int PosX(const gfx::Size& max_texture_size,
86 int PosY(const gfx::Size& max_texture_size,
94 int SizeX(const gfx::Size& max_texture_size
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/camera/fov/
Size.java 20 * Simple immutable class for keeping a size.
22 public class Size {
26 public Size(int width, int height) {

Completed in 706 milliseconds

1 2 3 4 5 6 7 8 91011>>