Searched refs:outSize (Results 1 - 23 of 23) sorted by relevance

/frameworks/base/core/jni/android/graphics/pdf/
H A DPdfRenderer.cpp44 jint pageIndex, jobject outSize) {
64 env->SetIntField(outSize, gPointClassInfo.x, width);
65 env->SetIntField(outSize, gPointClassInfo.y, height);
43 nativeOpenPageAndGetSize(JNIEnv* env, jclass thiz, jlong documentPtr, jint pageIndex, jobject outSize) argument
H A DPdfEditor.cpp166 jint pageIndex, jobject outSize) {
186 env->SetIntField(outSize, gPointClassInfo.x, width);
187 env->SetIntField(outSize, gPointClassInfo.y, height);
165 nativeGetPageSize(JNIEnv* env, jclass thiz, jlong documentPtr, jint pageIndex, jobject outSize) argument
/frameworks/minikin/libs/minikin/
H A DLocaleListCache.cpp34 static size_t toLanguageTag(char* output, size_t outSize, const StringPiece& locale) { argument
44 outLength = uloc_canonicalize(localeString.c_str(), output, outSize, &uErr);
70 outLength = uloc_toLanguageTag(likelyChars, output, outSize, FALSE, &uErr);
/frameworks/base/graphics/java/android/graphics/pdf/
H A DPdfEditor.java158 * @param outSize The size output.
160 public void getPageSize(int pageIndex, @NonNull Point outSize) { argument
162 throwIfOutSizeNull(outSize);
166 nativeGetPageSize(mNativeDocument, pageIndex, outSize);
322 private void throwIfOutSizeNull(Point outSize) { argument
323 if (outSize == null) {
324 throw new NullPointerException("outSize cannot be null");
359 private static native void nativeGetPageSize(long documentPtr, int pageIndex, Point outSize); argument
H A DPdfRenderer.java491 Point outSize);
490 nativeOpenPageAndGetSize(long documentPtr, int pageIndex, Point outSize) argument
/frameworks/base/core/java/android/view/
H A DDisplay.java608 * @param outSize A {@link Point} object to receive the size information.
610 public void getSize(Point outSize) { argument
614 outSize.x = mTempMetrics.widthPixels;
615 outSize.y = mTempMetrics.heightPixels;
622 * @param outSize A {@link Rect} object to receive the size information.
625 public void getRectSize(Rect outSize) { argument
629 outSize.set(0, 0, mTempMetrics.widthPixels, mTempMetrics.heightPixels);
976 * @param outSize Set to the real size of the display.
978 public void getRealSize(Point outSize) { argument
981 outSize
[all...]
/frameworks/base/libs/androidfw/include/androidfw/
H A DCursorWindow.h136 inline const void* getFieldSlotValueBlob(FieldSlot* fieldSlot, size_t* outSize) { argument
137 *outSize = fieldSlot->data.buffer.size;
H A DBackupHelpers.h140 const String8& rootPath, const String8& filePath, off_t* outSize,
H A DAssetManager.h210 uint32_t targetCrc, uint32_t overlayCrc, uint32_t** outData, size_t* outSize);
H A DResourceTypes.h1996 void** outData, size_t* outSize) const;
/frameworks/base/cmds/hid/jni/
H A Dcom_android_commands_hid_Device.cpp194 std::unique_ptr<uint8_t[]> getData(JNIEnv* env, jbyteArray javaArray, size_t& outSize) { argument
196 outSize = scopedArray.size();
197 std::unique_ptr<uint8_t[]> data(new uint8_t[outSize]);
198 for (size_t i = 0; i < outSize; i++) {
/frameworks/native/include/android/
H A Dnative_activity.h145 * outSize with the number of bytes in the allocation. Note that the
149 void* (*onSaveInstanceState)(ANativeActivity* activity, size_t* outSize);
/frameworks/base/packages/WallpaperCropper/src/com/android/wallpapercropper/
H A DWallpaperCropActivity.java334 Point outSize = getDefaultWallpaperSize(getResources(),
337 inSize.x, inSize.y, outSize.x, outSize.y, false);
347 crop, rotation, outSize.x, outSize.y, true, false, onEndCrop);
/frameworks/base/core/java/android/hardware/camera2/legacy/
H A DRequestThreadManager.java394 Size outSize = outPair.second;
407 callbackOutputSizes.add(outSize);
417 previewOutputSizes.add(outSize);
/frameworks/native/services/inputflinger/
H A DInputReader.h1381 inline void applySizeScaleAndBias(float* outSize) const {
1383 *outSize *= sizeScale;
1386 *outSize += sizeBias;
1388 if (*outSize < 0) {
1389 *outSize = 0;
/frameworks/base/libs/androidfw/
H A DBackupHelpers.cpp482 const String8& rootpath, const String8& filepath, off_t* outSize,
493 *outSize = 0;
537 *outSize = 512 + (needExtended ? 1024 : 0) + 512*((s.st_size + 511)/512);
481 write_tarfile(const String8& packageName, const String8& domain, const String8& rootpath, const String8& filepath, off_t* outSize, BackupDataWriter* writer) argument
H A DAssetManager.cpp327 uint32_t targetCrc, uint32_t overlayCrc, uint32_t** outData, size_t* outSize)
352 targetApkPath, overlayApkPath, (void**)outData, outSize) == NO_ERROR;
326 createIdmap(const char* targetApkPath, const char* overlayApkPath, uint32_t targetCrc, uint32_t overlayCrc, uint32_t** outData, size_t* outSize) argument
H A DResourceTypes.cpp7036 void** outData, size_t* outSize) const
7059 *outSize = ResTable::IDMAP_HEADER_SIZE_BYTES;
7062 *outSize += 2 * sizeof(uint16_t);
7143 *outSize += (4 * sizeof(uint16_t)) + (typeMap.entryMap.size() * sizeof(uint32_t));
7152 if ((*outData = malloc(*outSize)) == NULL) {
/frameworks/av/media/libmedia/
H A DNdkWrapper.cpp453 bool AMediaFormatWrapper::getBuffer(const char *name, void** data, size_t *outSize) const {
457 return AMediaFormat_getBuffer(mAMediaFormat, name, data, outSize);
/frameworks/av/media/libeffects/lvm/wrapper/Reverb/
H A DEffectReverb.cpp383 size_t outSize = frameCount * sizeof(process_buffer_t) * FCC_2; local
391 pContext->bufferSizeOut < outSize) {
393 pContext->bufferSizeOut = outSize;
/frameworks/base/tools/aapt/
H A DAaptAssets.cpp465 void* AaptFile::editData(size_t* outSize) argument
467 if (outSize) {
468 *outSize = mDataSize;
H A DAaptAssets.h173 void* editData(size_t* outSize = NULL);
/frameworks/native/opengl/libagl/
H A Dtexture.cpp355 GGLSurface** outSurface, int32_t* outSize, GLint level,
381 *outSize = size;
393 *outSize = size;
354 createTextureSurface(ogles_context_t* c, GGLSurface** outSurface, int32_t* outSize, GLint level, GLenum format, GLenum type, GLsizei width, GLsizei height, GLenum compressedFormat = 0) argument

Completed in 448 milliseconds