Searched refs:width (Results 326 - 350 of 355) sorted by relevance

<<1112131415

/frameworks/base/core/java/android/widget/
H A DAutoCompleteTextView.java188 // For dropdown width, the developer can specify a specific width, or MATCH_PARENT
189 // (for full screen width) or WRAP_CONTENT (to match the width of the anchored view).
247 * <p>Returns the current width for the auto-complete drop down list. This can
248 * be a fixed width, or {@link ViewGroup.LayoutParams#MATCH_PARENT} to fill the screen, or
249 * {@link ViewGroup.LayoutParams#WRAP_CONTENT} to fit the width of its anchor view.</p>
251 * @return the width for the drop down list
260 * <p>Sets the current width for the auto-complete drop down list. This can
261 * be a fixed width, o
268 setDropDownWidth(int width) argument
[all...]
H A DGridView.java949 MeasureSpec.makeMeasureSpec(mColumnWidth, MeasureSpec.EXACTLY), 0, p.width);
1289 MeasureSpec.makeMeasureSpec(mColumnWidth, MeasureSpec.EXACTLY), 0, p.width);
1754 * Set the width of columns in the grid.
1756 * @param columnWidth The column width, in pixels.
H A DListView.java1145 mListPadding.left + mListPadding.right, p.width);
1172 * @param widthMeasureSpec The width measure spec to be given to a child's
1813 mListPadding.left + mListPadding.right, p.width);
2473 mListPadding.left + mListPadding.right, p.width);
/frameworks/base/core/jni/
H A Dcom_google_android_gles_jni_EGLImpl.cpp298 pixmap.width = nativeBitmap->width();
H A Dandroid_app_NativeActivity.cpp863 jint format, jint width, jint height)
862 onSurfaceChanged_native(JNIEnv* env, jobject clazz, jint handle, jobject surface, jint format, jint width, jint height) argument
/frameworks/base/include/ui/
H A DInputReader.h45 int32_t width; member in struct:android::VirtualKeyDefinition
94 int32_t* width, int32_t* height, int32_t* orientation) = 0;
698 // The surface orientation and width and height set by configureSurfaceLocked().
/frameworks/base/libs/ui/tests/
H A DInputReader_test.cpp37 int32_t width; member in struct:android::FakeInputReaderPolicy::DisplayInfo
61 void setDisplayInfo(int32_t displayId, int32_t width, int32_t height, int32_t orientation) { argument
65 info.width = width;
108 int32_t* width, int32_t* height, int32_t* orientation) {
112 if (width) {
113 *width = info.width;
107 getDisplayInfo(int32_t displayId, int32_t* width, int32_t* height, int32_t* orientation) argument
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
H A DPaint_Delegate.java361 /*package*/ static void setStrokeWidth(Paint thisPaint, float width) { argument
368 delegate.mStrokeWidth = width;
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
H A DRenderSessionImpl.java488 * if <var>measuredView</var> is non null, the method returns a {@link Pair} of (width, height)
492 * @param measuredView if non null, the view to query for its measured width/height.
493 * @param width the width to use in the MeasureSpec.
494 * @param widthMode the MeasureSpec mode to use for the width.
497 * @return the measured width/height if measuredView is non-null, null otherwise.
500 int width, int widthMode, int height, int heightMode) {
501 int w_spec = MeasureSpec.makeMeasureSpec(width, widthMode);
499 measureView(ViewGroup viewToMeasure, View measuredView, int width, int widthMode, int height, int heightMode) argument
/frameworks/base/core/java/android/gesture/
H A DGestureOverlayView.java294 mPath.addPath(path, -bounds.left + (getWidth() - bounds.width()) / 2.0f,
H A DGestureUtils.java97 final float gestureWidth = rect.width();
/frameworks/base/core/jni/android/graphics/
H A DBitmapFactory.cpp244 env->SetIntField(options, gOptions_widthFieldID, bitmap->width());
/frameworks/base/graphics/java/android/graphics/
H A DPaint.java499 * Return the width for stroking.
504 * @return the paint's stroke width, used whenever the paint's style is
510 * Set the width for stroking.
514 * @param width set the paint's stroke width, used whenever the paint's
517 public native void setStrokeWidth(float width); argument
586 * drawn with a hairline (width == 0)
993 * Return the width of the text.
998 * @return The width of the text
1012 * Return the width o
[all...]
/frameworks/base/include/private/opengles/
H A Dgl_context.h166 GGLcoord width; member in struct:android::gl::line_width_t
/frameworks/base/media/libstagefright/codecs/avc/common/src/
H A Ddpb.cpp311 video->currPic->width = video->PicWidthInSamplesL;
/frameworks/base/policy/src/com/android/internal/policy/impl/
H A DLockPatternKeyguardView.java753 (getBounds().width() - mBitmap.getWidth()) / 2,
/frameworks/base/media/libstagefright/
H A DAwesomePlayer.cpp1029 int32_t *width, int32_t *height) const {
1036 *width = mVideoWidth;
1028 getVideoDimensions( int32_t *width, int32_t *height) const argument
/frameworks/base/opengl/libs/EGL/
H A Degl.cpp1831 EGLint left, EGLint top, EGLint width, EGLint height)
1842 dp->disp[s->impl].dpy, s->surface, left, top, width, height);
1830 eglSetSwapRectangleANDROID(EGLDisplay dpy, EGLSurface draw, EGLint left, EGLint top, EGLint width, EGLint height) argument
/frameworks/base/media/libstagefright/codecs/avc/dec/src/
H A Davcdec_api.cpp881 output->pitch = oldestFrame->frame.width;
/frameworks/base/media/libstagefright/codecs/avc/enc/src/
H A Dinit.cpp71 video->PicWidthInMbs = (encParam->width + 15) >> 4; /* round it to multiple of 16 */
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/
H A DCodecTest.java244 public void onVideoSizeChanged(MediaPlayer mp, int width, int height) {
/frameworks/base/opengl/java/android/opengl/
H A DGLSurfaceView.java633 * void onSurfaceChanged(GL10 gl, int width, int height) {
634 * gl.glViewport(0, 0, width, height);
636 * float ratio = (float) width / height;
644 * @param width
647 void onSurfaceChanged(GL10 gl, int width, int height); argument
/frameworks/base/services/camera/libcameraservice/
H A DCameraService.cpp996 // "size" is the width and height of yuv picture for registerBuffer.
1022 w = size->width;
1026 LOG1("Snapshot image width=%d, height=%d", w, h);
/frameworks/base/core/java/android/app/
H A DSearchDialog.java176 lp.width = ViewGroup.LayoutParams.MATCH_PARENT;
/frameworks/base/core/java/android/view/
H A DViewDebug.java1080 clientStream.writeInt(outRect.width());

Completed in 1144 milliseconds

<<1112131415