Searched defs:setSize (Results 1 - 13 of 13) sorted by relevance

/frameworks/base/awt/java/awt/
H A DDimension.java81 setSize(width, height);
139 public void setSize(int width, int height) { method in class:Dimension
151 public void setSize(Dimension d) { method in class:Dimension
152 setSize(d.width, d.height);
163 * @see java.awt.geom.Dimension2D#setSize(double, double)
166 public void setSize(double width, double height) { method in class:Dimension
167 setSize((int)Math.ceil(width), (int)Math.ceil(height));
H A DRectangle.java220 public void setSize(int width, int height) { method in class:Rectangle
231 public void setSize(Dimension d) { method in class:Rectangle
232 setSize(d.width, d.height);
318 * @deprecated use the setSize(int, int) method.
H A DComponent.java249 * public void setSize(Dimension size) { toolkit.lockAWT(); try {
250 * Component.this.setSize(size); } finally { toolkit.unlockAWT(); } } public
1489 public void setSize(int width, int height) { method in class:Component
1504 public void setSize(Dimension d) { method in class:Component
1514 * Deprecated: replaced by setSize(int, int) method.
1520 * @deprecated Replaced by setSize(int, int) method.
1534 * Deprecated: replaced by setSize(int, int) method.
1538 * @deprecated Replaced by setSize(int, int) method.
1544 setSize(size.width, size.height);
1682 rv.setSize(getWidt
[all...]
/frameworks/base/awt/java/awt/geom/
H A DDimension2D.java61 public abstract void setSize(double width, double height); method in class:Dimension2D
71 public void setSize(Dimension2D d) { method in class:Dimension2D
72 setSize(d.getWidth(), d.getHeight());
/frameworks/base/awt/org/apache/harmony/awt/state/
H A DMenuState.java36 void setSize(int w, int h); method in interface:MenuState
/frameworks/base/core/java/android/inputmethodservice/
H A DSoftInputWindow.java95 public void setSize(int size) { method in class:SoftInputWindow
/frameworks/base/core/java/com/android/internal/util/
H A DProcessedMessages.java30 * constructor or by calling setSize. The public interface also
33 * the last setSize, get which returns a processed message and
132 setSize(maxSize);
140 void setSize(int maxSize) { method in class:ProcessedMessages
/frameworks/base/camera/libcameraservice/
H A DFakeCamera.cpp312 setSize(width, height);
320 void FakeCamera::setSize(int width, int height) function in class:android::FakeCamera
/frameworks/base/core/java/android/view/
H A DSurface.java373 public native void setSize(int w, int h); method in class:Surface
/frameworks/base/libs/surfaceflinger_client/
H A DSurfaceComposerClient.cpp536 status_t SurfaceComposerClient::setSize(SurfaceID id, uint32_t w, uint32_t h) function in class:android::SurfaceComposerClient
H A DSurface.cpp168 status_t SurfaceControl::setSize(uint32_t w, uint32_t h) { function in class:android::SurfaceControl
172 return client->setSize(mToken, w, h);
/frameworks/base/graphics/java/android/graphics/drawable/
H A DGradientDrawable.java215 public void setSize(int width, int height) { method in class:GradientDrawable
216 mGradientState.setSize(width, height);
643 setSize(width, height);
984 public void setSize(int width, int height) { method in class:GradientDrawable.GradientState
/frameworks/base/libs/surfaceflinger/
H A DLayerBase.cpp145 bool LayerBase::setSize(uint32_t w, uint32_t h) { function in class:android::LayerBase

Completed in 278 milliseconds