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

1 2 3 4 5 6 7 8 91011>>

  /development/samples/GlobalTime/src/com/android/globaltime/
Texture.java 24 private int width, height; field in class:Texture
26 public Texture(ByteBuffer data, int width, int height) {
28 this.width = width;
37 return width;
  /external/skia/gpu/include/
GrRectanizer.h 33 GrRectanizer(int width, int height) : fWidth(width), fHeight(height) {
34 GrAssert(width >= 0);
40 int width() const { return fWidth; } function in class:GrRectanizer
43 virtual bool addRect(int width, int height, GrIPoint16* loc) = 0;
55 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...]
WebRect.h 47 int width; member in struct:WebKit::WebRect
50 bool isEmpty() const { return width <= 0 || height <= 0; }
55 , width(0)
60 WebRect(int x, int y, int width, int height)
63 , width(width)
72 , width(r.width())
81 width = r.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/skia/src/utils/
SkEGLContext_none.cpp 9 bool SkEGLContext::init(int width, int height) {
  /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
  /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 464 milliseconds

1 2 3 4 5 6 7 8 91011>>