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

1 2 3 4 5 6 7 8 91011>>

  /external/glide/library/src/main/java/com/bumptech/glide/request/target/
SimpleTarget.java 5 * of non essential methods that allows the caller to specify an exact width/height. Typicaly use cases look something
27 private final int width; field in class:SimpleTarget
47 * @param width The width in pixels of the desired resource.
50 public SimpleTarget(int width, int height) {
51 this.width = width;
62 if (width <= 0 || height <= 0) {
63 throw new IllegalArgumentException("Width and height must both be > 0, but given width: " + width + " and
    [all...]
  /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-trace/trace-viewer/tracing/third_party/tvcm/third_party/rcssmin/tests/yui/
concat-charset.css 4 border-width:1px;
14 border-width:10px;
  /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/jmonkeyengine/engine/src/core/com/jme3/scene/shape/
Quad.java 42 * side is located at the width/height coordinates (width, height, 0).
48 private float width; field in class:Quad
58 * Create a quad with the given width and height. The quad
61 * @param width The X extent or width
62 * @param height The Y extent or width
64 public Quad(float width, float height){
65 updateGeometry(width, height);
69 * Create a quad with the given width and height. The qua
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
FixedPointPreCompInfo.java 15 * The width used for the precomputation. If a larger width precomputation
17 * code should refer to the actual width.
19 protected int width = -1; field in class:FixedPointPreCompInfo
33 return width;
36 public void setWidth(int width)
38 this.width = width;
  /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/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
  /dalvik/dx/tests/026-field-attrib-Signature/
run 17 dx --debug --dump --width=200 small-class.txt
  /external/v8/src/arm64/
utils-arm64.cc 16 int CountLeadingZeros(uint64_t value, int width) {
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) {
31 DCHECK((width == 32) || (width == 64));
33 return CountLeadingZeros(value, width) - 1;
35 return CountLeadingZeros(~value, width) - 1
    [all...]
  /packages/wallpapers/MagicSmoke/src/com/android/magicsmoke/
MagicSmoke.java 22 protected MagicSmokeRS createScene(int width, int height) {
23 return new MagicSmokeRS(this, width, height);
  /development/ndk/samples/hello-neon/jni/
helloneon-intrinsics.h 20 void fir_filter_neon_intrinsics(short *output, const short* input, const short* kernel, int width, int kernelSize);
  /external/jmonkeyengine/engine/src/core/com/jme3/font/
Rectangle.java 41 public final float x, y, width, height; field in class:Rectangle
47 * @param width the width of the rectangle
50 public Rectangle(float x, float y, float width, float height) {
53 this.width = width;
  /frameworks/av/cmds/stagefright/
jpeg.h 4 int writeJpegFile(const char *filename, uint8_t *frame, int width, int height);

Completed in 382 milliseconds

1 2 3 4 5 6 7 8 91011>>