Home
last modified time | relevance | path

Searched refs:outSize (Results 1 – 18 of 18) sorted by relevance

/aosp14/frameworks/base/graphics/java/android/graphics/pdf/
H A DPdfEditor.java159 public void getPageSize(int pageIndex, @NonNull Point outSize) { in getPageSize() argument
161 throwIfOutSizeNull(outSize); in getPageSize()
165 nativeGetPageSize(mNativeDocument, pageIndex, outSize); in getPageSize()
321 private void throwIfOutSizeNull(Point outSize) { in throwIfOutSizeNull() argument
322 if (outSize == null) { in throwIfOutSizeNull()
358 private static native void nativeGetPageSize(long documentPtr, int pageIndex, Point outSize); in nativeGetPageSize() argument
H A DPdfRenderer.java500 Point outSize); in nativeOpenPageAndGetSize() argument
/aosp14/frameworks/base/libs/hwui/jni/pdf/
H A DPdfRenderer.cpp41 jint pageIndex, jobject outSize) { in nativeOpenPageAndGetSize() argument
61 env->SetIntField(outSize, gPointClassInfo.x, width); in nativeOpenPageAndGetSize()
62 env->SetIntField(outSize, gPointClassInfo.y, height); in nativeOpenPageAndGetSize()
H A DPdfEditor.cpp165 jint pageIndex, jobject outSize) { in nativeGetPageSize() argument
185 env->SetIntField(outSize, gPointClassInfo.x, width); in nativeGetPageSize()
186 env->SetIntField(outSize, gPointClassInfo.y, height); in nativeGetPageSize()
/aosp14/frameworks/base/core/java/android/view/
H A DDisplay.java867 public void getSize(Point outSize) { in getSize() argument
871 outSize.x = mTempMetrics.widthPixels; in getSize()
872 outSize.y = mTempMetrics.heightPixels; in getSize()
885 public void getRectSize(Rect outSize) { in getRectSize() argument
889 outSize.set(0, 0, mTempMetrics.widthPixels, mTempMetrics.heightPixels); in getRectSize()
1668 public void getRealSize(Point outSize) { in getRealSize() argument
1674 outSize.x = bounds.width(); in getRealSize()
1675 outSize.y = bounds.height(); in getRealSize()
1683 outSize.x = mDisplayInfo.logicalWidth; in getRealSize()
1684 outSize.y = mDisplayInfo.logicalHeight; in getRealSize()
[all …]
/aosp14/frameworks/base/libs/androidfw/include/androidfw/
H A DCursorWindow.h137 inline const void* getFieldSlotValueBlob(FieldSlot* fieldSlot, size_t* outSize) { in getFieldSlotValueBlob() argument
138 *outSize = fieldSlot->data.buffer.size; in getFieldSlotValueBlob()
H A DBackupHelpers.h140 const String8& rootPath, const String8& filePath, off64_t* outSize,
H A DAssetManager.h213 uint32_t targetCrc, uint32_t overlayCrc, uint32_t** outData, size_t* outSize);
H A DResourceTypes.h2255 void** outData, size_t* outSize) const;
/aosp14/frameworks/base/packages/WallpaperCropper/src/com/android/wallpapercropper/
H A DWallpaperCropActivity.java334 Point outSize = getDefaultWallpaperSize(getResources(), getDisplay()); in cropImageAndSetWallpaper() local
336 inSize.x, inSize.y, outSize.x, outSize.y, false); in cropImageAndSetWallpaper()
346 crop, rotation, outSize.x, outSize.y, true, false, onEndCrop); in cropImageAndSetWallpaper()
/aosp14/frameworks/base/services/accessibility/java/com/android/server/accessibility/magnification/
H A DWindowMagnificationGestureHandler.java173 private void getScreenSize(Point outSize) { in getScreenSize() argument
175 display.getRealSize(outSize); in getScreenSize()
/aosp14/frameworks/base/libs/androidfw/
H A DBackupHelpers.cpp482 const String8& rootpath, const String8& filepath, off64_t* outSize, in write_tarfile() argument
493 *outSize = 0; in write_tarfile()
537 *outSize = 512 + (needExtended ? 1024 : 0) + 512*((s.st_size + 511)/512); in write_tarfile()
H A DAssetManager.cpp330 uint32_t targetCrc, uint32_t overlayCrc, uint32_t** outData, size_t* outSize) in createIdmap() argument
355 targetApkPath, overlayApkPath, (void**)outData, outSize) == NO_ERROR; in createIdmap()
H A DResourceTypes.cpp7283 void** outData, size_t* outSize) const in createIdmap()
7285 if (targetPath == NULL || overlayPath == NULL || outData == NULL || outSize == NULL) { in createIdmap()
7363 *outSize = ResTable::IDMAP_HEADER_SIZE_BYTES; // magic, version, target and overlay crc in createIdmap()
7364 *outSize += 2 * sizeof(uint16_t); // target package id, type count in createIdmap()
7368 *outSize += 4 * sizeof(uint16_t); // target type, overlay type, entry count, entry offset in createIdmap()
7369 *outSize += matchingResources.getNumberOfEntriesIncludingPadding(ti->first) * in createIdmap()
7372 if ((*outData = malloc(*outSize)) == NULL) { in createIdmap()
/aosp14/frameworks/base/tools/aapt/
H A DAaptAssets.cpp464 void* AaptFile::editData(size_t* outSize) in editData() argument
466 if (outSize) { in editData()
467 *outSize = mDataSize; in editData()
H A DAaptAssets.h173 void* editData(size_t* outSize = NULL);
/aosp14/frameworks/base/services/core/java/com/android/server/wm/
H A DAccessibilityController.java1145 private void getDisplaySizeLocked(Point outSize) { in getDisplaySizeLocked() argument
1148 outSize.set(bounds.width(), bounds.height()); in getDisplaySizeLocked()
/aosp14/frameworks/base/tools/aapt2/integration-tests/CommandTests/
H A Dandroid-33.jarAndroidManifest.xml META-INF/ META-INF/MANIFEST.MF NOTICES/ NOTICES/libcore ...