Searched defs:getWidth (Results 51 - 75 of 83) sorted by relevance

1234

/frameworks/base/libs/hwui/font/
H A DCacheTexture.h94 inline uint16_t getWidth() const { function in class:android::uirenderer::CacheTexture
107 return (y * getWidth() + x) * PixelBuffer::formatSize(mFormat);
/frameworks/base/media/mca/filterfw/java/android/filterfw/core/
H A DFrameFormat.java138 public int getWidth() { method in class:FrameFormat
/frameworks/base/packages/PrintSpooler/src/com/android/printspooler/ui/
H A DPrintPreviewController.java202 public int getWidth() { method in class:PrintPreviewController
203 return mEmbeddedContentContainer.getWidth();
H A DPageAdapter.java123 public int getWidth(); method in interface:PageAdapter.PreviewArea
409 final int availableWidth = mPreviewArea.getWidth();
/frameworks/base/packages/WallpaperCropper/src/com/android/photos/
H A DBitmapRegionTileSource.java47 int getWidth(); method in interface:SimpleBitmapRegionDecoder
83 public int getWidth() { method in class:SimpleBitmapRegionDecoderWrapper
84 return mDecoder.getWidth();
115 public int getWidth() { method in class:DumbBitmapRegionDecoder
116 return mBuffer.getWidth();
181 int width = mDecoder.getWidth();
384 mWidth = mDecoder.getWidth();
397 if (preview.getWidth() <= GL_SIZE_LIMIT && preview.getHeight() <= GL_SIZE_LIMIT) {
404 preview.getWidth(), preview.getHeight()));
509 float scale = (float) targetSize / (float) (Math.max(result.getWidth(), resul
[all...]
/frameworks/av/services/camera/libcameraservice/device3/
H A DCamera3Stream.cpp90 uint32_t Camera3Stream::getWidth() const { function in class:android::camera3::Camera3Stream
/frameworks/base/libs/hwui/
H A DLayer.h115 inline uint32_t getWidth() const { function in class:android::uirenderer::Layer
/frameworks/base/media/java/android/media/
H A DImageReader.java173 * found using {@link Image#getWidth}.</p>
177 public int getWidth() { method in class:ImageReader
688 public int getWidth() { method in class:ImageReader.SurfaceImage
695 width = ImageReader.this.getWidth();
H A DImageWriter.java147 ImageUtils.getEstimatedNativeAllocBytes(surfSize.getWidth(),surfSize.getHeight(),
653 public int getWidth() { method in class:ImageWriter.WriterSurfaceImage
/frameworks/native/services/surfaceflinger/
H A DDisplayDevice.cpp195 int DisplayDevice::getWidth() const { function in class:DisplayDevice
/frameworks/native/services/surfaceflinger/DisplayHardware/
H A DHWComposer_hwc1.cpp497 uint32_t HWComposer::getWidth(int disp) const { function in class:android::HWComposer
H A DHWC2.h254 int32_t getWidth() const { return mWidth; } function in class:HWC2::Display::Config
/frameworks/base/core/java/android/app/
H A DActivityOptions.java866 public int getWidth() { method in class:ActivityOptions
/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 DThreadedRenderer.java603 int getWidth() { method in class:ThreadedRenderer
/frameworks/base/core/java/android/widget/
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 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 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/services/core/java/com/android/server/wm/
H A DWindowSurfaceController.java485 float getWidth() { method in class:WindowSurfaceController
/frameworks/native/libs/gui/
H A DSurfaceComposerClient.cpp878 uint32_t ScreenshotClient::getWidth() const { function in class:android::ScreenshotClient
/frameworks/rs/
H A DrsContext.h193 uint32_t getWidth() const {return mWidth;} function in class:android::renderscript::Context
/frameworks/support/v7/appcompat/src/android/support/v7/widget/
H A DListPopupWindow.java524 public int getWidth() { method in class:ListPopupWindow
647 widthSpec = getAnchorView().getWidth();
683 widthSpec = getAnchorView().getWidth();
1330 (x >= 0 && x < mPopup.getWidth() && y >= 0 && y < mPopup.getHeight())) {
/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/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 421 milliseconds

1234