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

/frameworks/av/media/libstagefright/codecs/mp3dec/src/
H A Dpvmp3_getbits.cpp120 uint32 returnValue = 0; local
124 return (returnValue);
135 returnValue = (((uint32)(Elem)) << 24) |
144 returnValue <<= bitIndex;
147 returnValue >>= (32 - neededBits);
151 return (returnValue);
166 uint16 returnValue; local
174 returnValue = (((uint16)(Elem)) << 8) |
182 returnValue = (returnValue << (bitInde
203 uint32 returnValue; local
238 uint8 returnValue; local
[all...]
/frameworks/base/core/java/android/transition/
H A DTransitionValues.java74 String returnValue = "TransitionValues@" + Integer.toHexString(hashCode()) + ":\n";
75 returnValue += " view = " + view + "\n";
76 returnValue += " values:";
78 returnValue += " " + s + ": " + values.get(s) + "\n";
80 return returnValue;
/frameworks/native/opengl/tests/gl_perf/
H A Dgl2_perf.cpp60 EGLBoolean returnValue; local
82 returnValue = eglInitialize(dpy, &majorVersion, &minorVersion);
83 checkEglError("eglInitialize", returnValue);
84 if (returnValue != EGL_TRUE) {
90 returnValue = EGLUtils::selectConfigForNativeWindow(dpy, s_configAttribs, window, &myConfig);
91 if (returnValue) {
92 printf("EGLUtils::selectConfigForNativeWindow() returned %d", returnValue);
111 returnValue = eglMakeCurrent(dpy, surface, surface, context);
112 checkEglError("eglMakeCurrent", returnValue);
113 if (returnValue !
[all...]
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/jni/
H A Dbrightness.cpp47 float returnValue = sqrt(0.241f * avgPixels[0] * avgPixels[0] + local
51 return returnValue / 255;
/frameworks/base/core/java/android/hardware/camera2/utils/
H A DCameraBinderDecorator.java66 int returnValue = (Integer) result;
68 switch (returnValue) {
104 if (returnValue < 0) {
106 returnValue));
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
H A DH264SwDecApi.c343 H264SwDecRet returnValue = H264SWDEC_STRM_PROCESSED; local
421 returnValue = H264SWDEC_PIC_RDY_BUFF_NOT_EMPTY;
426 returnValue = H264SWDEC_HDRS_RDY_BUFF_NOT_EMPTY;
435 returnValue = H264SWDEC_PIC_RDY;
437 returnValue = H264SWDEC_PIC_RDY_BUFF_NOT_EMPTY;
446 returnValue = H264SWDEC_STRM_ERR;
451 returnValue = H264SWDEC_MEMFAIL;
463 returnValue);
467 return(returnValue);
/frameworks/native/opengl/libs/EGL/
H A Degl_tls.h58 int line, EGLint error, T returnValue, bool quiet = false) {
60 return returnValue;
57 setErrorEtc(const char* caller, int line, EGLint error, T returnValue, bool quiet = false) argument
/frameworks/native/opengl/tests/gl2_basic/
H A Dgl2_basic.cpp262 EGLBoolean returnValue; local
286 returnValue = eglInitialize(dpy, &majorVersion, &minorVersion);
287 checkEglError("eglInitialize", returnValue);
289 if (returnValue != EGL_TRUE) {
302 returnValue = EGLUtils::selectConfigForNativeWindow(dpy, s_configAttribs, window, &myConfig);
303 if (returnValue) {
304 printf("EGLUtils::selectConfigForNativeWindow() returned %d", returnValue);
326 returnValue = eglMakeCurrent(dpy, surface, surface, context);
327 checkEglError("eglMakeCurrent", returnValue);
328 if (returnValue !
[all...]
/frameworks/native/opengl/tests/gl_yuvtex/
H A Dgl_yuvtex.cpp225 EGLBoolean returnValue; local
249 returnValue = eglInitialize(dpy, &majorVersion, &minorVersion);
250 checkEglError("eglInitialize", returnValue);
252 if (returnValue != EGL_TRUE) {
258 returnValue = EGLUtils::selectConfigForNativeWindow(dpy, s_configAttribs, window, &myConfig);
259 if (returnValue) {
260 printf("EGLUtils::selectConfigForNativeWindow() returned %d", returnValue);
282 returnValue = eglMakeCurrent(dpy, surface, surface, context);
283 checkEglError("eglMakeCurrent", returnValue);
284 if (returnValue !
[all...]
/frameworks/native/opengl/tests/gl2_yuvtex/
H A Dgl2_yuvtex.cpp335 EGLBoolean returnValue; local
359 returnValue = eglInitialize(dpy, &majorVersion, &minorVersion);
360 checkEglError("eglInitialize", returnValue);
362 if (returnValue != EGL_TRUE) {
368 returnValue = EGLUtils::selectConfigForNativeWindow(dpy, s_configAttribs, window, &myConfig);
369 if (returnValue) {
370 printf("EGLUtils::selectConfigForNativeWindow() returned %d", returnValue);
392 returnValue = eglMakeCurrent(dpy, surface, surface, context);
393 checkEglError("eglMakeCurrent", returnValue);
394 if (returnValue !
[all...]
/frameworks/native/opengl/tests/gl2_copyTexImage/
H A Dgl2_copyTexImage.cpp366 EGLBoolean returnValue; local
394 returnValue = eglInitialize(dpy, &majorVersion, &minorVersion);
395 checkEglError("eglInitialize", returnValue);
397 if (returnValue != EGL_TRUE) {
437 returnValue = eglMakeCurrent(dpy, surface, surface, context);
438 checkEglError("eglMakeCurrent", returnValue);
439 if (returnValue != EGL_TRUE) {
/frameworks/base/obex/javax/obex/
H A DClientOperation.java405 boolean returnValue = false;
476 returnValue = true;
488 if ((mPrivateOutput.isClosed()) && (!returnValue) && (!mEndOfBodySent)
524 return returnValue;
534 returnValue = true;
536 return returnValue;
H A DClientSession.java178 HeaderSet returnValue = op.getReceivedHeader();
181 return returnValue;
/frameworks/base/core/java/android/preference/
H A DPreferenceGroup.java181 final boolean returnValue = removePreferenceInt(preference);
183 return returnValue;
/frameworks/native/opengl/tests/hwc/
H A DhwcTestLib.cpp56 EGLBoolean returnValue; local
73 returnValue = eglInitialize(*dpy, &majorVersion, &minorVersion);
74 checkEglError("eglInitialize", returnValue);
78 if (returnValue != EGL_TRUE) {
88 returnValue = EGLUtils::selectConfigForNativeWindow(*dpy,
90 if (returnValue) {
92 returnValue);
115 returnValue = eglMakeCurrent(*dpy, *surface, *surface, context);
116 checkEglError("eglMakeCurrent", returnValue);
117 if (returnValue !
[all...]
/frameworks/base/tools/preload/
H A Dsorttable.js412 var returnValue = true;
421 returnValue = false;
424 return returnValue;
434 this.returnValue = false;
/frameworks/base/core/java/android/app/
H A DInstrumentation.java749 boolean returnValue;
761 returnValue = win.performPanelIdentifierAction(
770 return mr.returnValue;
812 boolean returnValue;
823 returnValue = win.performContextMenuIdentifierAction(
832 return cmr.returnValue;
/frameworks/base/core/java/android/widget/
H A DExpandableListView.java667 boolean returnValue;
707 returnValue = true;
716 returnValue = false;
721 return returnValue;
/frameworks/opt/mms/src/java/com/google/android/mms/pdu/
H A DPduParser.java1027 EncodedStringValue returnValue = null;
1047 returnValue = new EncodedStringValue(charset, textString);
1049 returnValue = new EncodedStringValue(textString);
1055 return returnValue;
/frameworks/base/core/java/android/speech/tts/
H A DTextToSpeech.java1273 int returnValue;
1284 returnValue = service.synthesizeToFileDescriptor(getCallerIdentity(), text,
1287 return returnValue;
/frameworks/base/opengl/java/com/google/android/gles_jni/
H A DGLImpl.java495 String returnValue;
496 returnValue = _glGetString(
499 return returnValue;
/frameworks/native/opengl/libs/GLES_trace/
H A Dgltrace.proto656 optional DataType returnValue = 6; // GL function's return value
/frameworks/native/opengl/libagl/
H A Degl.cpp74 static T setError(GLint error, T returnValue) { argument
82 return returnValue;

Completed in 1904 milliseconds