Searched refs:outSize (Results 1 - 9 of 9) 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
244 getRealSize(Point outSize) argument
[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.h1535 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/services/input/
H A DInputReader.h1210 inline void applySizeScaleAndBias(float* outSize) const {
1212 *outSize *= sizeScale;
1215 *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.h186 void* editData(size_t* outSize = NULL);
H A DAaptAssets.cpp1514 void* AaptFile::editData(size_t* outSize) argument
1516 if (outSize) {
1517 *outSize = mDataSize;

Completed in 175 milliseconds