Searched refs:width (Results 1 - 25 of 8124) sorted by relevance

1234567891011>>

/external/chromium_org/chrome/browser/resources/options/
H A Dalert_overlay.css6 width: 400px;
H A Dhotword_confirm_overlay.css7 width: 500px;
H A Dspelling_confirm_overlay.css7 width: 500px;
H A Ddo_not_track_confirm_overlay.css6 width: 500px;
H A Dfactory_reset_overlay.css6 max-width: 550px;
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DviewportAndroid.css34 min-width: 980px;
H A Dxhtmlmp.css33 width: auto;
/external/chromium_org/ui/gfx/
H A Dfavicon_size.cc11 void CalculateFaviconTargetSize(int* width, int* height) { argument
12 if (*width > kFaviconSize || *height > kFaviconSize) {
14 float aspect_ratio = static_cast<float>(*width) /
17 *width = static_cast<int>(aspect_ratio * *height);
18 if (*width > kFaviconSize) {
19 *width = kFaviconSize;
20 *height = static_cast<int>(*width / aspect_ratio);
/external/chromium_org/chrome/browser/resources/chromeos/network_configuration/css/
H A Dconfig.css8 width: 500px;
/external/chromium_org/chrome/browser/resources/options/chromeos/
H A Dconsumer_management_overlay.css6 width: 500px;
H A Dthird_party_ime_confirm_overlay.css7 width: 500px;
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLPreElement.idl22 [Reflect] attribute long width;
/external/deqp/framework/common/
H A DtcuSurface.cpp34 Surface::Surface(int width, int height) argument
35 : m_width (width)
37 , m_pixels (width*height)
49 * \param width New width.
52 void Surface::setSize (int width, int height) argument
54 m_width = width;
56 m_pixels.resize(width*height);
/external/glide/library/src/main/java/com/bumptech/glide/request/target/
H A DSimpleTarget.java5 * caller to specify an exact width/height.
9 private final int width; field in class:SimpleTarget
12 public SimpleTarget(int width, int height) { argument
13 this.width = width;
19 cb.onSizeReady(width, height);
/external/lldb/examples/customization/bin-utils/
H A Dbinutils.py5 def binary(n, width=None):
8 If you specify a width, it must be > 0, otherwise it is ignored. The list
9 could be padded with 0 bits if width is specified.
12 if width and width <= 0:
13 width = None
18 if width:
19 for i in range(width - len(l)):
25 def twos_complement(n, width):
27 Return a list of (0|1)'s for the binary representation of a width
[all...]
/external/chromium_org/chrome/test/chromedriver/chrome/
H A Ddevice_metrics.cc7 DeviceMetrics::DeviceMetrics(int width, int height, double device_scale_factor) argument
8 : width(width),
/external/chromium_org/third_party/skia/src/gpu/
H A DGrRectanizer.h17 GrRectanizer(int width, int height) : fWidth(width), fHeight(height) { argument
18 SkASSERT(width >= 0);
26 int width() const { return fWidth; } function in class:GrRectanizer
31 virtual bool addRect(int width, int height, SkIPoint16* loc) = 0;
37 static GrRectanizer* Factory(int width, int height);
/external/skia/src/gpu/
H A DGrRectanizer.h17 GrRectanizer(int width, int height) : fWidth(width), fHeight(height) { argument
18 SkASSERT(width >= 0);
26 int width() const { return fWidth; } function in class:GrRectanizer
31 virtual bool addRect(int width, int height, SkIPoint16* loc) = 0;
37 static GrRectanizer* Factory(int width, int height);
/external/chromium_org/chrome/common/extensions/docs/examples/api/preferences/allowThirdPartyCookies/
H A Dpopup.css8 width: 300px;
/external/chromium_org/chrome/common/extensions/docs/examples/api/preferences/enableReferrer/
H A Dpopup.css8 width: 300px;
/external/chromium_org/v8/src/arm64/
H A Dutils-arm64.cc16 int CountLeadingZeros(uint64_t value, int width) { argument
18 DCHECK((width == 32) || (width == 64));
20 uint64_t bit_test = 1UL << (width - 1);
21 while ((count < width) && ((bit_test & value) == 0)) {
29 int CountLeadingSignBits(int64_t value, int width) { argument
31 DCHECK((width == 32) || (width == 64));
33 return CountLeadingZeros(value, width) - 1;
35 return CountLeadingZeros(~value, width)
40 CountTrailingZeros(uint64_t value, int width) argument
51 CountSetBits(uint64_t value, int width) argument
[all...]
/external/vixl/src/
H A Dutils-vixl.cc60 int CountLeadingZeros(uint64_t value, int width) { argument
61 VIXL_ASSERT((width == 32) || (width == 64));
63 uint64_t bit_test = UINT64_C(1) << (width - 1);
64 while ((count < width) && ((bit_test & value) == 0)) {
72 int CountLeadingSignBits(int64_t value, int width) { argument
73 VIXL_ASSERT((width == 32) || (width == 64));
75 return CountLeadingZeros(value, width) - 1;
77 return CountLeadingZeros(~value, width)
82 CountTrailingZeros(uint64_t value, int width) argument
92 CountSetBits(uint64_t value, int width) argument
[all...]
/external/chromium_org/third_party/WebKit/public/platform/
H A DWebFloatSize.h49 float width; member in struct:blink::WebFloatSize
52 bool isEmpty() const { return width <= 0 || height <= 0; }
55 : width(0)
60 WebFloatSize(float width, float height) argument
61 : width(width)
68 : width(s.width())
75 width = s.width();
[all...]
H A DWebSize.h48 int width; member in struct:blink::WebSize
51 bool isEmpty() const { return width <= 0 || height <= 0; }
54 : width(0)
59 WebSize(int width, int height) argument
60 : width(width)
67 : width(s.width())
74 width = s.width();
[all...]
/external/chromium_org/chrome/browser/resources/
H A Dabout_version_android.css7 width: 90%;
11 width: auto;

Completed in 1283 milliseconds

1234567891011>>