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

/frameworks/testing/uiautomator/library/src/com/android/uiautomator/core/
H A DAccessibilityNodeInfoHelper.java47 Point outSize = new Point();
48 display.getSize(outSize);
51 displayRect.right = outSize.x;
52 displayRect.bottom = outSize.y;
/frameworks/base/core/java/android/view/
H A DDisplay.java340 * @param outSize A {@link Point} object to receive the size information.
342 public void getSize(Point outSize) { argument
346 outSize.x = mTempMetrics.widthPixels;
347 outSize.y = mTempMetrics.heightPixels;
354 * @param outSize A {@link Rect} object to receive the size information.
357 public void getRectSize(Rect outSize) { argument
361 outSize.set(0, 0, mTempMetrics.widthPixels, mTempMetrics.heightPixels);
525 * @param outSize Set to the real size of the display.
527 public void getRealSize(Point outSize) { argument
530 outSize
[all...]
/frameworks/base/include/androidfw/
H A DCursorWindow.h134 inline const void* getFieldSlotValueBlob(FieldSlot* fieldSlot, size_t* outSize) { argument
135 *outSize = fieldSlot->data.buffer.size;
H A DResourceTypes.h1543 void** outData, size_t* outSize) const;
/frameworks/native/include/android/
H A Dnative_activity.h134 * outSize with the number of bytes in the allocation. Note that the
138 void* (*onSaveInstanceState)(ANativeActivity* activity, size_t* outSize);
/frameworks/av/media/libstagefright/
H A DOggExtractor.cpp830 static uint8_t *DecodeBase64(const char *s, size_t size, size_t *outSize) { argument
831 *outSize = 0;
849 *outSize = outLen;
/frameworks/base/core/jni/android/graphics/
H A DPaint.cpp260 static void toLanguageTag(char* output, size_t outSize, argument
262 if (output == NULL || outSize <= 0) {
280 uloc_toLanguageTag(likelyChars, output, outSize, FALSE, &uErr);
/frameworks/base/services/input/
H A DInputReader.h1264 inline void applySizeScaleAndBias(float* outSize) const {
1266 *outSize *= sizeScale;
1269 *outSize += sizeBias;
/frameworks/native/opengl/libagl/
H A Dtexture.cpp362 GGLSurface** outSurface, int32_t* outSize, GLint level,
392 *outSize = size;
404 *outSize = size;
361 createTextureSurface(ogles_context_t* c, GGLSurface** outSurface, int32_t* outSize, GLint level, GLenum format, GLenum type, GLsizei width, GLsizei height, GLenum compressedFormat = 0) argument
/frameworks/base/tools/aapt/
H A DAaptAssets.h189 void* editData(size_t* outSize = NULL);
H A DAaptAssets.cpp1568 void* AaptFile::editData(size_t* outSize) argument
1570 if (outSize) {
1571 *outSize = mDataSize;

Completed in 712 milliseconds