Searched defs:height (Results 151 - 175 of 674) sorted by last modified time

1234567891011>>

/frameworks/native/vulkan/include/vulkan/
H A Dvulkan.h1253 uint32_t height; member in struct:VkExtent3D
1742 float height; member in struct:VkViewport
1754 uint32_t height; member in struct:VkExtent2D
2007 uint32_t height; member in struct:VkFramebufferCreateInfo
/frameworks/native/vulkan/libvulkan/
H A Dswapchain.cpp283 int width, height; local
290 err = window->query(window, NATIVE_WINDOW_DEFAULT_HEIGHT, &height);
310 VkExtent2D{static_cast<uint32_t>(width), static_cast<uint32_t>(height)};
405 create_info->imageExtent.height, create_info->imageUsage,
513 static_cast<int>(create_info->imageExtent.height));
518 create_info->imageExtent.width, create_info->imageExtent.height,
670 static_cast<uint32_t>(img.buffer->height),
/frameworks/opt/bitmap/src/com/android/bitmap/drawable/
H A DBasicBitmapDrawable.java124 public void setDecodeDimensions(int width, int height) { argument
127 mDecodeHeight = height;
384 bounds.width(), bounds.height(),
385 bounds.height(), Integer.MAX_VALUE, getDecodeHorizontalCenter(),
H A DExtendedBitmapDrawable.java115 if (bounds.height() != 0) {
116 placeholderHeight = bounds.height();
165 * Directly sets the decode width and height. The given height should already have had the
168 public void setExactDecodeDimensions(int width, int height) { argument
169 super.setDecodeDimensions(width, height);
175 * The given height should not have had the parallaxSpeedMultiplier applied to it.
178 public void setDecodeDimensions(int width, int height) { argument
179 super.setDecodeDimensions(width, (int) (height * mOpts.parallaxSpeedMultiplier));
634 * Some users report motion sickness with certain speed multiplier values. Decode height
[all...]
/frameworks/data-binding/prebuilds/1.0-rc0/
H A Ddatabinding-studio-bundle.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/databinding/ android/databinding/Bindable.class Bindable. ...
/frameworks/ex/camera2/portability/src/com/android/ex/camera2/portability/
H A DSize.java71 flatSizes.add(s.height());
87 int height = Integer.parseInt(flatSizes[i + 1]);
88 list.add(new Size(width,height));
98 public Size(int width, int height) { argument
99 val = new Point(width, height);
109 val = new Point(other.width(), other.height());
122 val = new Point(other.width, other.height);
156 public int height() { method in class:Size
176 return "Size: (" + this.width() + " x " + this.height() + ")";
/frameworks/ex/common/java/com/android/ex/editstyledtext/
H A DEditStyledText.java1942 int width, height;
1944 height = opt.outHeight;
1947 height = height * getMaxImageWidthPx() / opt.outWidth;
1948 Rect padding = new Rect(0, 0, width, height);
1955 drawable.setBounds(0, 0, width, height);
2637 int width, height;
2639 height = opt.outHeight;
2641 mIntrinsicHeight = height;
2644 height
2773 ColorPaletteDrawable(int color, int width, int height, int mergin) argument
[all...]
/frameworks/ex/framesequence/jni/
H A DFrameSequence_gif.cpp192 const int height = mFrameSequence.getHeight(); local
194 mPreserveBuffer = new Color8888[width * height];
196 for (int y = 0; y < height; y++) {
205 const int height = mFrameSequence.getHeight(); local
210 for (int y = 0; y < height; y++) {
231 const int height = mFrameSequence.getHeight(); local
261 for (int y = 0; y < height; y++) {
283 getCopySize(prevFrame.ImageDesc, width, height, copyWidth, copyHeight);
318 getCopySize(frame.ImageDesc, width, height, copyWidth, copyHeight);
H A DFrameSequence_webp.cpp37 return (frame.width == canvasWidth && frame.height == canvasHeight);
45 const int bottom = top + frame.height;
151 const int covered_y_max = covered.y_offset + covered.height;
152 const int target_y_max = target.y_offset + target.height;
166 int width, int height) {
167 for (int y = 0; y < height; y++) {
214 for (int j = 0; j < prevIter.height; j++) {
227 mDecoderConfig.output.u.RGBA.size = mDecoderConfig.output.u.RGBA.stride * currIter.height;
244 for (int y = 0; y < currIter.height; y++) {
261 for (int y = 0; y < currIter.height;
165 copyFrame(const Color8888* src, int srcStride, Color8888* dst, int dstStride, int width, int height) argument
[all...]
/frameworks/ex/framesequence/src/android/support/rastermill/
H A DFrameSequence.java52 private FrameSequence(long nativeFrameSequence, int width, int height, argument
56 mHeight = height;
/frameworks/ex/widget/java/com/android/ex/widget/
H A DStaggeredGridView.java83 * or after it may need to be invalidated. e.g. if the item's height or the number
138 public int height; field in class:StaggeredGridView.LayoutRecord
182 String result = "LayoutRecord{c=" + column + ", id=" + id + " h=" + height +
468 final int height = getHeight();
470 final int clearBelow = height + mItemMargin;
626 Log.e(TAG, "onMeasure: must have an exact height or match_parent! " +
650 final int height = b - t;
651 mTopEdge.setSize(width, height);
652 mBottomEdge.setSize(width, height);
781 if (lp.height
1415 LayoutParams(int height) argument
[all...]
/frameworks/minikin/include/minikin/
H A DLayout.h34 Bitmap(int width, int height);
40 int height; member in class:minikin::Bitmap
H A DMinikinFontFreeType.h34 int height; member in struct:android::GlyphBitmap
/frameworks/minikin/libs/minikin/
H A DLayout.cpp50 Bitmap::Bitmap(int width, int height) : width(width), height(height) { argument
51 buf = new uint8_t[width * height]();
60 o << width << " " << height << std::endl;
62 o.write((const char *)buf, width * height);
68 int bmh = bitmap.height;
74 int y1 = std::min(height, y + bmh);
916 ALOGD("glyphBitmap.width=%d, glyphBitmap.height=%d (%d, %d) x=%f, y=%f, ok=%d",
917 glyphBitmap.width, glyphBitmap.height, glyphBitma
[all...]
/frameworks/minikin/sample/
H A Dexample_skia.cpp130 int height = 600; local
132 bitmap.allocN32Pixels(width, height);
/frameworks/base/services/core/java/com/android/server/
H A DAssetAtlasService.java154 // The comparator will sort the bitmap by width first, then by height
224 mBuffer = GraphicBuffer.create(config.width, config.height,
228 Atlas atlas = new Atlas(config.type, config.width, config.height, config.flags);
401 return r1.width * r1.height - r2.width * r2.height;
412 return new Configuration(result.type, result.width, result.height, result.count);
470 writer.write(String.valueOf(config.height));
504 int height = readInt(reader, MIN_SIZE, MAX_SIZE);
508 config = new Configuration(type, width, height, count, flags);
574 final int height; field in class:AssetAtlasService.Configuration
578 Configuration(Atlas.Type type, int width, int height, int count) argument
582 Configuration(Atlas.Type type, int width, int height, int count, int flags) argument
604 int height; field in class:AssetAtlasService.WorkerResult
607 WorkerResult(Atlas.Type type, int width, int height, int count) argument
702 packBitmaps(Atlas.Type type, int width, int height, Atlas.Entry entry) argument
[all...]
/frameworks/base/services/core/java/com/android/server/am/
H A DActivityStackSupervisor.java268 // The height/width divide used when fitting a task within a bounds with method
272 // the input bounds right or bottom side minus the width or height divided by this value.
4085 public void setSurface(Surface surface, int width, int height, int density) { argument
4141 public void setSurface(Surface surface, int width, int height, int density) { argument
4142 super.setSurface(surface, width, height, density);
4147 setSurfaceLocked(surface, width, height, density);
4154 private void setSurfaceLocked(Surface surface, int width, int height, int density) { argument
4162 new VirtualActivityDisplay(width, height, density);
4285 VirtualActivityDisplay(int width, int height, int density) { argument
4288 VIRTUAL_DISPLAY_BASE_NAME, width, height, densit
[all...]
H A DLaunchingTaskPositioner.java95 int height = mAvailableRect.height();
97 mDefaultFreeformStartY = mAvailableRect.top + height / MARGIN_SIZE_DENOMINATOR;
99 mDefaultFreeformHeight = height / WINDOW_SIZE_DENOMINATOR;
101 mDefaultFreeformStepVertical = Math.max(height / STEP_DENOMINATOR, MINIMAL_STEP);
125 int height = getFinalHeight(windowLayout);
130 positionTopRight(task, tasks, width, height);
132 positionTopLeft(task, tasks, width, height);
136 positionBottomRight(task, tasks, width, height);
138 positionBottomLeft(task, tasks, width, height);
171 positionBottomLeft(TaskRecord task, ArrayList<TaskRecord> tasks, int width, int height) argument
178 positionBottomRight(TaskRecord task, ArrayList<TaskRecord> tasks, int width, int height) argument
185 positionTopLeft(TaskRecord task, ArrayList<TaskRecord> tasks, int width, int height) argument
192 positionTopRight(TaskRecord task, ArrayList<TaskRecord> tasks, int width, int height) argument
199 positionCenter(TaskRecord task, ArrayList<TaskRecord> tasks, int width, int height) argument
[all...]
/frameworks/base/services/core/java/com/android/server/display/
H A DDisplayAdapter.java139 public static Display.Mode createMode(int width, int height, float refreshRate) { argument
141 NEXT_DISPLAY_MODE_ID.getAndIncrement(), width, height, refreshRate);
H A DDisplayDeviceInfo.java138 * The height of the display in its natural orientation, in pixels.
141 public int height; field in class:DisplayDeviceInfo
260 public void setAssumedDensityForExternalDisplay(int width, int height) { argument
261 densityDpi = Math.min(width, height) * DisplayMetrics.DENSITY_XHIGH / 1080;
289 || height != other.height
323 height = other.height;
352 sb.append(width).append(" x ").append(height);
H A DDisplayManagerService.java556 String name, int width, int height, int densityDpi, Surface surface, int flags) {
566 name, width, height, densityDpi, surface, flags);
587 int width, int height, int densityDpi) {
593 mVirtualDisplayAdapter.resizeVirtualDisplayLocked(appToken, width, height, densityDpi);
1369 int width, int height, int densityDpi, Surface surface, int flags) {
1380 if (width <= 0 || height <= 0 || densityDpi <= 0) {
1381 throw new IllegalArgumentException("width, height, and densityDpi must be "
1423 packageName, name, width, height, densityDpi, surface, flags);
1431 int width, int height, int densityDpi) {
1434 resizeVirtualDisplayInternal(callback.asBinder(), width, height, densityDp
554 createVirtualDisplayInternal(IVirtualDisplayCallback callback, IMediaProjection projection, int callingUid, String packageName, String name, int width, int height, int densityDpi, Surface surface, int flags) argument
586 resizeVirtualDisplayInternal(IBinder appToken, int width, int height, int densityDpi) argument
1367 createVirtualDisplay(IVirtualDisplayCallback callback, IMediaProjection projection, String packageName, String name, int width, int height, int densityDpi, Surface surface, int flags) argument
1430 resizeVirtualDisplay(IVirtualDisplayCallback callback, int width, int height, int densityDpi) argument
[all...]
H A DOverlayDisplayAdapter.java61 * [width]x[height]/[densityDpi]
172 int height = Integer.parseInt(modeMatcher.group(2), 10);
175 && height >= MIN_HEIGHT && height <= MAX_HEIGHT
178 modes.add(new OverlayMode(width, height, densityDpi));
292 mInfo.height = mode.getPhysicalHeight();
511 OverlayMode(int width, int height, int densityDpi) { argument
513 mHeight = height;
521 .append(", height=").append(mHeight)
H A DOverlayDisplayWindow.java96 int width, int height, int densityDpi, int gravity, boolean secure,
112 resize(width, height, densityDpi, false /* doLayout */);
140 public void resize(int width, int height, int densityDpi) { argument
141 resize(width, height, densityDpi, true /* doLayout */);
144 private void resize(int width, int height, int densityDpi, boolean doLayout) { argument
146 mHeight = height;
204 mTextureView.getLayoutParams().height = mHeight;
251 int height = (int)(mHeight * scale);
253 int y = (int)(mWindowY + mLiveTranslationY - height * offsetScale);
255 y = Math.max(0, Math.min(y, mDefaultDisplayInfo.logicalHeight - height));
95 OverlayDisplayWindow(Context context, String name, int width, int height, int densityDpi, int gravity, boolean secure, Listener listener) argument
[all...]
H A DVirtualDisplayAdapter.java65 String name, int width, int height, int densityDpi, Surface surface, int flags) {
73 ownerUid, ownerPackageName, name, width, height, densityDpi, surface, flags,
95 int width, int height, int densityDpi) {
98 device.resizeLocked(width, height, densityDpi);
190 String name, int width, int height, int densityDpi, Surface surface, int flags,
198 mHeight = height;
199 mMode = createMode(width, height, REFRESH_RATE);
263 public void resizeLocked(int width, int height, int densityDpi) { argument
264 if (mWidth != width || mHeight != height || mDensityDpi != densityDpi) {
268 mHeight = height;
63 createVirtualDisplayLocked(IVirtualDisplayCallback callback, IMediaProjection projection, int ownerUid, String ownerPackageName, String name, int width, int height, int densityDpi, Surface surface, int flags) argument
94 resizeVirtualDisplayLocked(IBinder appToken, int width, int height, int densityDpi) argument
188 VirtualDisplayDevice(IBinder displayToken, IBinder appToken, int ownerUid, String ownerPackageName, String name, int width, int height, int densityDpi, Surface surface, int flags, Callback callback, String uniqueId, int uniqueIndex) argument
[all...]
H A DWifiDisplayAdapter.java361 Surface surface, int width, int height, int flags) {
384 mDisplayDevice = new WifiDisplayDevice(displayToken, name, width, height,
526 int width, int height, int flags) {
529 addDisplayDeviceLocked(display, surface, width, height, flags);
592 int width, int height, float refreshRate, int flags, String address,
597 mHeight = height;
602 mMode = createMode(width, height, refreshRate);
632 mInfo.height = mHeight;
360 addDisplayDeviceLocked(WifiDisplay display, Surface surface, int width, int height, int flags) argument
591 WifiDisplayDevice(IBinder displayToken, String name, int width, int height, float refreshRate, int flags, String address, Surface surface) argument

Completed in 1880 milliseconds

1234567891011>>