/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/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/skia/src/core/ |
SkMatrixUtils.h | 20 * Given a matrix and width/height, return true if the computed dst-rect would 25 * The src-rect is defined to be { 0, 0, width, height } 31 bool SkTreatAsSprite(const SkMatrix&, int width, int height, 39 int width, int height) { 40 return SkTreatAsSprite(matrix, width, height, kSkSubPixelBitsForBilerp);
|
/external/webp/src/utils/ |
quant_levels_dec.c | 18 int DequantizeLevels(uint8_t* const data, int width, int height) { 19 if (data == NULL || width <= 0 || height <= 0) return 0; 21 (void)width;
|
/external/skia/src/gpu/ |
GrRectanizer.h | 25 GrRectanizer(int width, int height) : fWidth(width), fHeight(height) { 26 GrAssert(width >= 0); 32 int width() const { return fWidth; } function in class:GrRectanizer 35 virtual bool addRect(int width, int height, GrIPoint16* loc) = 0; 47 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/webkit/Source/WebCore/html/ |
TextMetrics.idl | 29 readonly attribute float width;
|
/external/webkit/Source/WebKit/chromium/public/ |
WebSize.h | 45 int width; member in struct:WebKit::WebSize 48 bool isEmpty() const { return width <= 0 || height <= 0; } 51 : width(0) 56 WebSize(int width, int height) 57 : width(width) 64 : width(s.width()) 71 width = s.width(); [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;
|
/external/webkit/Source/WebCore/platform/efl/ |
FileChooserEfl.cpp | 38 String FileChooser::basenameForWidth(const Font& font, int width) const 40 if (width <= 0) 49 return StringTruncator::rightTruncate(multipleFileUploadText(m_filenames.size()), width, font); 51 return StringTruncator::centerTruncate(string, static_cast<float>(width), font);
|
/external/webkit/Source/WebCore/platform/haiku/ |
FileChooserHaiku.cpp | 31 String FileChooser::basenameForWidth(const Font&, int width) const
|
/external/webkit/Source/WebCore/platform/wx/ |
FileChooserWx.cpp | 33 String FileChooser::basenameForWidth(const Font&, int width) const
|