Searched defs:getWidth (Results 1 - 25 of 83) sorted by path

1234

/frameworks/av/cmds/screenrecord/
H A DEglWindow.h51 int getWidth() const { return mWidth; } function in class:android::EglWindow
/frameworks/av/media/ndk/
H A DNdkImage.cpp103 AImage::getWidth(int32_t* width) const { function in class:AImage
523 return image->getWidth(width);
558 media_status_t ret = image->getWidth(&width);
H A DNdkImageReaderPriv.h68 int32_t getWidth() const { return mWidth; }; function in struct:AImageReader
/frameworks/av/services/camera/libcameraservice/device3/
H A DCamera3Stream.cpp90 uint32_t Camera3Stream::getWidth() const { function in class:android::camera3::Camera3Stream
/frameworks/base/core/java/android/app/
H A DActivityOptions.java866 public int getWidth() { method in class:ActivityOptions
/frameworks/base/core/java/android/app/assist/
H A DAssistStructure.java465 public int getWidth() { method in class:AssistStructure.WindowNode
786 public int getWidth() { method in class:AssistStructure.ViewNode
1356 + " " + node.getWidth() + "x" + node.getHeight() + "]" + " " + node.getTitle());
1363 + " " + node.getWidth() + "x" + node.getHeight() + "]" + " " + node.getClassName());
/frameworks/base/core/java/android/hardware/camera2/params/
H A DHighSpeedVideoConfiguration.java72 public int getWidth() { method in class:HighSpeedVideoConfiguration
H A DInputConfiguration.java60 public int getWidth() { method in class:InputConfiguration
100 if (otherInputConfig.getWidth() == mWidth &&
H A DMeteringRectangle.java118 mWidth = checkArgumentNonnegative(dimensions.getWidth(), "width must be nonnegative");
167 public int getWidth() { method in class:MeteringRectangle
H A DStreamConfiguration.java86 public int getWidth() { method in class:StreamConfiguration
H A DStreamConfigurationDuration.java81 public int getWidth() { method in class:StreamConfigurationDuration
/frameworks/base/core/java/android/text/
H A DLayout.java586 public final int getWidth() { method in class:Layout
592 * {@link #getWidth} if it is not doing anything special.
/frameworks/base/core/java/android/util/
H A DSize.java40 public int getWidth() { method in class:Size
H A DSizeF.java51 public float getWidth() { method in class:SizeF
/frameworks/base/core/java/android/view/
H A DDisplay.java85 // to getHeight() and getWidth() to ensure that applications perceive
563 public int getWidth() { method in class:Display
1017 * applications when the mode is active (as reported by {@link Display#getWidth()} may
H A DDisplayListCanvas.java126 public int getWidth() { method in class:DisplayListCanvas
H A DGraphicBuffer.java101 public int getWidth() { method in class:GraphicBuffer
H A DThreadedRenderer.java603 int getWidth() { method in class:ThreadedRenderer
H A DView.java348 * is similar to the following computation: <code>getLeft() + getWidth()</code>
373 * {@link #getWidth()} and {@link #getHeight()}.
6584 position.right = Math.min(position.right, parentView.getWidth());
10530 final float x = getWidth() / 2f;
11025 final int width = getWidth();
11696 public final int getWidth() { method in class:View
11713 * getWidth(), and getHeight(). These bounds do not account for any
11742 * {@link #getWidth()} to see how wide a view is after layout.
13025 tmpRect.set(0, 0, getWidth(), getHeight());
14491 return getWidth();
[all...]
/frameworks/base/core/java/android/widget/
H A DFastScroller.java505 public int getWidth() { method in class:FastScroller
732 container.right = list.getWidth();
745 final int width = getWidth();
791 final int left = thumb.getLeft() + (thumb.getWidth() - trackWidth) / 2;
868 final float offset = mLayoutFromRight ? mThumbImage.getWidth() : -mThumbImage.getWidth();
1162 final int previewWidth = preview.getWidth() - preview.getPaddingLeft()
1167 final int targetWidth = target.getWidth();
1177 final int showingWidth = showing.getWidth();
H A DListPopupWindow.java485 public int getWidth() { method in class:ListPopupWindow
609 widthSpec = getAnchorView().getWidth();
645 widthSpec = getAnchorView().getWidth();
1284 (x >= 0 && x < mPopup.getWidth() && y >= 0 && y < mPopup.getHeight())) {
H A DPopupWindow.java1045 public int getWidth() { method in class:PopupWindow
1060 * @see #getWidth()
1529 final int anchorWidth = anchor.getWidth();
1887 final Rect bounds = new Rect(0, 0, anchor.getWidth(), anchor.getHeight());
2275 && ((x < 0) || (x >= getWidth()) || (y < 0) || (y >= getHeight()))) {
/frameworks/base/core/java/com/android/internal/widget/
H A DDrawableHolder.java134 canvas.translate(-0.5f*getWidth(), -0.5f*getHeight());
202 public int getWidth() { method in class:DrawableHolder
/frameworks/base/core/jni/
H A Dandroid_graphics_Canvas.cpp70 static jint getWidth(JNIEnv*, jobject, jlong canvasHandle) { function in namespace:android::CanvasJNI
580 {"native_getWidth","!(J)I", (void*) CanvasJNI::getWidth},
/frameworks/base/graphics/java/android/graphics/
H A DBitmap.java298 reconfigure(getWidth(), height, getConfig());
314 reconfigure(getWidth(), getHeight(), config);
658 final int width = src.getWidth();
681 return createBitmap(src, 0, 0, src.getWidth(), src.getHeight());
733 if (x + width > source.getWidth()) {
741 if (!source.isMutable() && x == 0 && y == 0 && width == source.getWidth() &&
1149 public final int getWidth() { method in class:Bitmap
1151 Log.w(TAG, "Called getWidth() on a recycle()'d bitmap! This is undefined behavior!");
1169 return scaleFromDensity(getWidth(), mDensity, canvas.mDensity);
1185 return scaleFromDensity(getWidth(), mDensit
[all...]

Completed in 285 milliseconds

1234