Searched refs:returnVal (Results 1 - 18 of 18) sorted by relevance

/frameworks/base/tests/TtsTests/src/com/android/speech/tts/
H A DMockableCheckVoiceData.java37 final Intent returnVal = new Intent();
41 setResult(TextToSpeech.Engine.CHECK_VOICE_DATA_FAIL, returnVal);
46 returnVal.putStringArrayListExtra(TextToSpeech.Engine.EXTRA_AVAILABLE_VOICES,
50 returnVal.putStringArrayListExtra(TextToSpeech.Engine.EXTRA_UNAVAILABLE_VOICES,
54 setResult(TextToSpeech.Engine.CHECK_VOICE_DATA_PASS, returnVal);
/frameworks/native/opengl/tests/include/
H A DglTestLib.h30 void glTestCheckEglError(const char* op, EGLBoolean returnVal = EGL_TRUE);
/frameworks/native/opengl/tests/lib/
H A DglTestLib.cpp47 void glTestCheckEglError(const char* op, EGLBoolean returnVal) argument
49 if (returnVal != EGL_TRUE) {
50 testPrintE("%s() returned %d", op, returnVal);
110 EGLint returnVal = eglGetConfigAttrib(dpy, config, names[j].attribute, local
113 if (returnVal && error == EGL_SUCCESS) {
/frameworks/base/core/tests/coretests/src/android/animation/
H A DAutoCancelTest.java43 ObjectAnimator returnVal;
45 returnVal = ObjectAnimator.ofFloat(this, properties[0], 0, 1);
51 returnVal = ObjectAnimator.ofPropertyValuesHolder(this, pvhArray);
53 returnVal.setAutoCancel(true);
54 returnVal.setStartDelay(startDelay);
55 returnVal.addListener(mCanceledListener);
56 return returnVal;
/frameworks/native/opengl/tests/gl2_basic/
H A Dgl2_basic.cpp52 static void checkEglError(const char* op, EGLBoolean returnVal = EGL_TRUE) {
53 if (returnVal != EGL_TRUE) {
54 fprintf(stderr, "%s() returned %d\n", op, returnVal);
224 EGLint returnVal = eglGetConfigAttrib(dpy, config, names[j].attribute, &value); local
226 if (returnVal && error == EGL_SUCCESS) {
236 EGLint returnVal = eglGetConfigs(dpy, NULL, 0, &numConfig); local
237 checkEglError("eglGetConfigs", returnVal);
238 if (!returnVal) {
250 returnVal = eglGetConfigs(dpy, configs, numConfig, &numConfig);
251 checkEglError("eglGetConfigs", returnVal);
[all...]
/frameworks/native/opengl/tests/gl_basic/
H A Dgl_basic.cpp138 EGLint returnVal = eglGetConfigAttrib(dpy, config, names[j].attribute, &value); local
140 if (returnVal && error == EGL_SUCCESS) {
148 static void checkEglError(const char* op, EGLBoolean returnVal = EGL_TRUE) {
149 if (returnVal != EGL_TRUE) {
150 fprintf(stderr, "%s() returned %d\n", op, returnVal);
162 EGLint returnVal = eglGetConfigs(dpy, NULL, 0, &numConfig); local
163 checkEglError("eglGetConfigs", returnVal);
164 if (!returnVal) {
176 returnVal = eglGetConfigs(dpy, configs, numConfig, &numConfig);
177 checkEglError("eglGetConfigs", returnVal);
[all...]
/frameworks/native/opengl/tests/gl_perf/
H A Dgl2_perf.cpp35 static void checkEglError(const char* op, EGLBoolean returnVal = EGL_TRUE) {
36 if (returnVal != EGL_TRUE) {
37 fprintf(stderr, "%s() returned %d\n", op, returnVal);
/frameworks/native/opengl/tests/gl2_copyTexImage/
H A Dgl2_copyTexImage.cpp47 static void checkEglError(const char* op, EGLBoolean returnVal = EGL_TRUE) {
48 if (returnVal != EGL_TRUE) {
49 fprintf(stderr, "%s() returned %d\n", op, returnVal);
323 EGLint returnVal = eglGetConfigAttrib(dpy, config, names[j].attribute, &value); local
325 if (returnVal && error == EGL_SUCCESS) {
335 EGLint returnVal = eglGetConfigs(dpy, NULL, 0, &numConfig); local
336 checkEglError("eglGetConfigs", returnVal);
337 if (!returnVal) {
349 returnVal = eglGetConfigs(dpy, configs, numConfig, &numConfig);
350 checkEglError("eglGetConfigs", returnVal);
[all...]
/frameworks/native/opengl/tests/gl_yuvtex/
H A Dgl_yuvtex.cpp49 static void checkEglError(const char* op, EGLBoolean returnVal = EGL_TRUE) {
50 if (returnVal != EGL_TRUE) {
51 fprintf(stderr, "%s() returned %d\n", op, returnVal);
214 EGLint returnVal = eglGetConfigAttrib(dpy, config, names[j].attribute, &value); local
216 if (returnVal && error == EGL_SUCCESS) {
/frameworks/base/core/java/android/animation/
H A DKeyframeSet.java251 String returnVal = " ";
253 returnVal += mKeyframes.get(i).getValue() + " ";
255 return returnVal;
H A DObjectAnimator.java1008 String returnVal = "ObjectAnimator@" + Integer.toHexString(hashCode()) + ", target " +
1012 returnVal += "\n " + mValues[i].toString();
1015 return returnVal;
H A DValueAnimator.java1596 String returnVal = "ValueAnimator@" + Integer.toHexString(hashCode());
1599 returnVal += "\n " + mValues[i].toString();
1602 return returnVal;
H A DPropertyValuesHolder.java697 Method returnVal = null;
702 returnVal = targetClass.getMethod(methodName, args);
722 returnVal = targetClass.getMethod(methodName, args);
727 return returnVal;
735 if (returnVal == null) {
741 return returnVal;
H A DAnimatorSet.java1424 String returnVal = "AnimatorSet@" + Integer.toHexString(hashCode()) + "{";
1428 returnVal += "\n " + node.mAnimation.toString();
1430 return returnVal + "\n}";
/frameworks/native/opengl/tests/gl2_yuvtex/
H A Dgl2_yuvtex.cpp49 static void checkEglError(const char* op, EGLBoolean returnVal = EGL_TRUE) {
50 if (returnVal != EGL_TRUE) {
51 fprintf(stderr, "%s() returned %d\n", op, returnVal);
324 EGLint returnVal = eglGetConfigAttrib(dpy, config, names[j].attribute, &value); local
326 if (returnVal && error == EGL_SUCCESS) {
/frameworks/support/core-utils/java/android/support/v4/app/
H A DFrameMetricsAggregator.java457 SparseIntArray[] returnVal = mMetrics;
459 return returnVal;
/frameworks/rs/driver/
H A DrsdGL.cpp47 static void checkEglError(const char* op, EGLBoolean returnVal = EGL_TRUE) {
71 if (returnVal != EGL_TRUE) {
72 fprintf(stderr, "%s() returned %d\n", op, returnVal);
123 EGLBoolean returnVal = eglGetConfigAttrib(dpy, config, names[j].attribute, &value); local
124 if (returnVal) {
/frameworks/native/opengl/tests/hwc/
H A DhwcTestLib.cpp38 static void checkEglError(const char* op, EGLBoolean returnVal = EGL_TRUE);
952 static void checkEglError(const char* op, EGLBoolean returnVal) argument
954 if (returnVal != EGL_TRUE) {
955 testPrintE("%s() returned %d", op, returnVal);
1007 EGLint returnVal = eglGetConfigAttrib(dpy, config, names[j].attribute, local
1010 if (returnVal && error == EGL_SUCCESS) {

Completed in 6189 milliseconds