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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/chrome/browser/resources/options/
alert_overlay.css 6 width: 400px;
hotword_confirm_overlay.css 7 width: 500px;
spelling_confirm_overlay.css 7 width: 500px;
  /external/chromium_org/third_party/WebKit/Source/core/css/
viewportAndroid.css 34 min-width: 980px;
  /external/chromium_org/ui/gfx/
favicon_size.cc 11 void CalculateFaviconTargetSize(int* width, int* height) {
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);
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/camera/fov/
Size.java 23 public final int width; field in class:Size
26 public Size(int width, int height) {
27 this.width = width;
SelectableResolution.java 24 public final int width; field in class:SelectableResolution
30 public SelectableResolution(int cameraId, int width, int height) {
32 this.width = width;
40 return "Cam " + cameraId + ": " + width + " x " + height + " - "
  /external/chromium_org/chrome/browser/resources/chromeos/network_configuration/css/
config.css 8 width: 500px;
  /external/chromium_org/chrome/browser/resources/options/chromeos/
consumer_management_overlay.css 6 width: 500px;
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLPreElement.idl 22 [Reflect] attribute long width;
  /external/deqp/framework/common/
tcuSurface.cpp 34 Surface::Surface(int width, int height)
35 : m_width (width)
37 , m_pixels (width*height)
49 * \param width New width.
52 void Surface::setSize (int width, int height)
54 m_width = width;
56 m_pixels.resize(width*height);
  /external/glide/library/src/main/java/com/bumptech/glide/request/target/
SimpleTarget.java 5 * caller to specify an exact width/height.
9 private final int width; field in class:SimpleTarget
12 public SimpleTarget(int width, int height) {
13 this.width = width;
19 cb.onSizeReady(width, height);
  /external/lldb/examples/customization/bin-utils/
binutils.py 5 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-bit two'
    [all...]
  /external/chromium_org/chrome/test/chromedriver/chrome/
device_metrics.cc 7 DeviceMetrics::DeviceMetrics(int width, int height, double device_scale_factor)
8 : width(width),
  /external/chromium_org/third_party/skia/src/gpu/
GrRectanizer.h 17 GrRectanizer(int width, int height) : fWidth(width), fHeight(height) {
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);
  /dalvik/dx/tests/008-field/
run 17 dx --debug --dump --width=200 small-class.txt
  /dalvik/dx/tests/009-method/
run 17 dx --debug --dump --width=200 small-class.txt
  /dalvik/dx/tests/010-class-attrib-InnerClasses/
run 17 dx --debug --dump --width=200 small-class.txt
  /dalvik/dx/tests/011-class-attrib-Synthetic/
run 17 dx --debug --dump --width=200 small-class.txt
  /dalvik/dx/tests/012-class-attrib-SourceFile/
run 17 dx --debug --dump --width=200 small-class.txt
  /dalvik/dx/tests/013-class-attrib-Deprecated/
run 17 dx --debug --dump --width=200 small-class.txt
  /dalvik/dx/tests/014-field-attrib-ConstantValue/
run 17 dx --debug --dump --width=200 small-class.txt
  /dalvik/dx/tests/015-field-attrib-Synthetic/
run 17 dx --debug --dump --width=200 small-class.txt
  /dalvik/dx/tests/016-field-attrib-Deprecated/
run 17 dx --debug --dump --width=200 small-class.txt
  /dalvik/dx/tests/025-class-attrib-Signature/
run 17 dx --debug --dump --width=200 small-class.txt

Completed in 652 milliseconds

1 2 3 4 5 6 7 8 91011>>