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

1 2 3 4 5 6 7 8 91011>>

  /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/gpu/
GrRectanizer.h 26 GrRectanizer(int width, int height) : fWidth(width), fHeight(height) {
27 GrAssert(width >= 0);
33 int width() const { return fWidth; } function in class:GrRectanizer
36 virtual bool addRect(int width, int height, GrIPoint16* loc) = 0;
48 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
  /frameworks/av/cmds/stagefright/
jpeg.h 4 int writeJpegFile(const char *filename, uint8_t *frame, int width, int height);
  /packages/apps/Mms/src/com/android/mms/ui/
AdaptableSlideViewInterface.java 27 void setTextRegion(int left, int top, int width, int height);
31 void setImageRegion(int left, int top, int width, int height);
35 void setVideoRegion(int left, int top, int width, int height);
43 void onSizeChanged(int width, int height);
  /frameworks/base/graphics/java/android/graphics/drawable/shapes/
Shape.java 33 * Returns the width of the Shape.
61 * @param width the width of the shape (in pixels)
64 public final void resize(float width, float height) {
65 if (width < 0) {
66 width = 0;
71 if (mWidth != width || mHeight != height) {
72 mWidth = width;
74 onResize(width, height);
91 * @param width the new width of the Shap
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/photoeditor/
Photo.java 27 private int width; field in class:Photo
38 public static Photo create(int width, int height) {
39 return new Photo(RendererUtils.createTexture(), width, height);
42 private Photo(int texture, int width, int height) {
44 this.width = width;
53 return ((photo.width == width) && (photo.height == height));
56 public void changeDimension(int width, int height) {
57 this.width = width
63 public int width() { method in class:Photo
    [all...]

Completed in 1054 milliseconds

1 2 3 4 5 6 7 8 91011>>