Searched defs:outSize (Results 1 - 6 of 6) sorted by relevance

/frameworks/base/core/java/android/view/
H A DDisplay.java92 * @param outSize A {@link Point} object to receive the size information.
94 public void getSize(Point outSize) { argument
95 getSizeInternal(outSize, true);
98 private void getSizeInternal(Point outSize, boolean doCompat) { argument
102 wm.getDisplaySize(outSize);
106 mTmpMetrics.noncompatWidthPixels = outSize.x;
107 mTmpMetrics.noncompatHeightPixels = outSize.y;
110 outSize.x = mTmpMetrics.widthPixels;
111 outSize.y = mTmpMetrics.heightPixels;
117 outSize
138 getRectSize(Rect outSize) argument
201 getRealSize(Point outSize) argument
[all...]
/frameworks/base/include/binder/
H A DCursorWindow.h134 inline const void* getFieldSlotValueBlob(FieldSlot* fieldSlot, size_t* outSize) { argument
135 *outSize = fieldSlot->data.buffer.size;
/frameworks/base/opengl/libs/GLES2_dbg/test/
H A Dtest_main.cpp120 const uint32_t outSize = *(uint32_t *)(out.data() + i); local
125 i += outSize; // chunk not compressed
128 decompSize += outSize;
/frameworks/base/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/opengl/libagl/
H A Dtexture.cpp363 GGLSurface** outSurface, int32_t* outSize, GLint level,
393 *outSize = size;
405 *outSize = size;
362 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.cpp1466 void* AaptFile::editData(size_t* outSize) argument
1468 if (outSize) {
1469 *outSize = mDataSize;

Completed in 4681 milliseconds