/frameworks/base/tests/TtsTests/src/com/android/speech/tts/ |
D | MockableCheckVoiceData.java | 37 final Intent returnVal = new Intent(); in onCreate() local 41 setResult(TextToSpeech.Engine.CHECK_VOICE_DATA_FAIL, returnVal); in onCreate() 46 returnVal.putStringArrayListExtra(TextToSpeech.Engine.EXTRA_AVAILABLE_VOICES, in onCreate() 50 returnVal.putStringArrayListExtra(TextToSpeech.Engine.EXTRA_UNAVAILABLE_VOICES, in onCreate() 54 setResult(TextToSpeech.Engine.CHECK_VOICE_DATA_PASS, returnVal); in onCreate()
|
/frameworks/native/opengl/tests/gl2_basic/ |
D | gl2_basic.cpp | 47 static void checkEglError(const char* op, EGLBoolean returnVal = EGL_TRUE) { in checkEglError() argument 48 if (returnVal != EGL_TRUE) { in checkEglError() 49 fprintf(stderr, "%s() returned %d\n", op, returnVal); in checkEglError() 219 EGLint returnVal = eglGetConfigAttrib(dpy, config, names[j].attribute, &value); in printEGLConfiguration() local 221 if (returnVal && error == EGL_SUCCESS) { in printEGLConfiguration() 231 EGLint returnVal = eglGetConfigs(dpy, NULL, 0, &numConfig); in printEGLConfigurations() local 232 checkEglError("eglGetConfigs", returnVal); in printEGLConfigurations() 233 if (!returnVal) { in printEGLConfigurations() 245 returnVal = eglGetConfigs(dpy, configs, numConfig, &numConfig); in printEGLConfigurations() 246 checkEglError("eglGetConfigs", returnVal); in printEGLConfigurations() [all …]
|
/frameworks/native/opengl/tests/gl_basic/ |
D | gl_basic.cpp | 138 EGLint returnVal = eglGetConfigAttrib(dpy, config, names[j].attribute, &value); in printEGLConfiguration() local 140 if (returnVal && error == EGL_SUCCESS) { in printEGLConfiguration() 148 static void checkEglError(const char* op, EGLBoolean returnVal = EGL_TRUE) { in checkEglError() argument 149 if (returnVal != EGL_TRUE) { in checkEglError() 150 fprintf(stderr, "%s() returned %d\n", op, returnVal); in checkEglError() 162 EGLint returnVal = eglGetConfigs(dpy, NULL, 0, &numConfig); in printEGLConfigurations() local 163 checkEglError("eglGetConfigs", returnVal); in printEGLConfigurations() 164 if (!returnVal) { in printEGLConfigurations() 176 returnVal = eglGetConfigs(dpy, configs, numConfig, &numConfig); in printEGLConfigurations() 177 checkEglError("eglGetConfigs", returnVal); in printEGLConfigurations() [all …]
|
/frameworks/base/core/tests/coretests/src/android/animation/ |
D | AutoCancelTest.java | 43 ObjectAnimator returnVal; in setupAnimator() local 45 returnVal = ObjectAnimator.ofFloat(this, properties[0], 0, 1); in setupAnimator() 51 returnVal = ObjectAnimator.ofPropertyValuesHolder(this, pvhArray); in setupAnimator() 53 returnVal.setAutoCancel(true); in setupAnimator() 54 returnVal.setStartDelay(startDelay); in setupAnimator() 55 returnVal.addListener(mCanceledListener); in setupAnimator() 56 return returnVal; in setupAnimator()
|
/frameworks/native/opengl/tests/lib/ |
D | glTestLib.cpp | 48 void glTestCheckEglError(const char* op, EGLBoolean returnVal) in glTestCheckEglError() argument 50 if (returnVal != EGL_TRUE) { in glTestCheckEglError() 51 testPrintE("%s() returned %d", op, returnVal); in glTestCheckEglError() 111 EGLint returnVal = eglGetConfigAttrib(dpy, config, names[j].attribute, in glTestPrintEGLConfiguration() local 114 if (returnVal && error == EGL_SUCCESS) { in glTestPrintEGLConfiguration()
|
/frameworks/native/opengl/tests/gl2_copyTexImage/ |
D | gl2_copyTexImage.cpp | 47 static void checkEglError(const char* op, EGLBoolean returnVal = EGL_TRUE) { in checkEglError() argument 48 if (returnVal != EGL_TRUE) { in checkEglError() 49 fprintf(stderr, "%s() returned %d\n", op, returnVal); in checkEglError() 323 EGLint returnVal = eglGetConfigAttrib(dpy, config, names[j].attribute, &value); in printEGLConfiguration() local 325 if (returnVal && error == EGL_SUCCESS) { in printEGLConfiguration() 335 EGLint returnVal = eglGetConfigs(dpy, NULL, 0, &numConfig); in printEGLConfigurations() local 336 checkEglError("eglGetConfigs", returnVal); in printEGLConfigurations() 337 if (!returnVal) { in printEGLConfigurations() 349 returnVal = eglGetConfigs(dpy, configs, numConfig, &numConfig); in printEGLConfigurations() 350 checkEglError("eglGetConfigs", returnVal); in printEGLConfigurations() [all …]
|
/frameworks/native/opengl/tests/gl_perf/ |
D | gl2_perf.cpp | 35 static void checkEglError(const char* op, EGLBoolean returnVal = EGL_TRUE) { in checkEglError() argument 36 if (returnVal != EGL_TRUE) { in checkEglError() 37 fprintf(stderr, "%s() returned %d\n", op, returnVal); in checkEglError()
|
/frameworks/native/opengl/tests/gl_yuvtex/ |
D | gl_yuvtex.cpp | 49 static void checkEglError(const char* op, EGLBoolean returnVal = EGL_TRUE) { in checkEglError() argument 50 if (returnVal != EGL_TRUE) { in checkEglError() 51 fprintf(stderr, "%s() returned %d\n", op, returnVal); in checkEglError() 214 EGLint returnVal = eglGetConfigAttrib(dpy, config, names[j].attribute, &value); in printEGLConfiguration() local 216 if (returnVal && error == EGL_SUCCESS) { in printEGLConfiguration()
|
/frameworks/native/opengl/tests/gl2_yuvtex/ |
D | gl2_yuvtex.cpp | 49 static void checkEglError(const char* op, EGLBoolean returnVal = EGL_TRUE) { in checkEglError() argument 50 if (returnVal != EGL_TRUE) { in checkEglError() 51 fprintf(stderr, "%s() returned %d\n", op, returnVal); in checkEglError() 324 EGLint returnVal = eglGetConfigAttrib(dpy, config, names[j].attribute, &value); in printEGLConfiguration() local 326 if (returnVal && error == EGL_SUCCESS) { in printEGLConfiguration()
|
/frameworks/native/opengl/tests/include/ |
D | glTestLib.h | 30 void glTestCheckEglError(const char* op, EGLBoolean returnVal = EGL_TRUE);
|
/frameworks/base/core/java/android/animation/ |
D | KeyframeSet.java | 258 String returnVal = " "; in toString() local 260 returnVal += mKeyframes.get(i).getValue() + " "; in toString() 262 return returnVal; in toString()
|
D | PropertyValuesHolder.java | 672 Method returnVal = null; in getPropertyFunction() local 677 returnVal = targetClass.getMethod(methodName, args); in getPropertyFunction() 697 returnVal = targetClass.getMethod(methodName, args); in getPropertyFunction() 702 return returnVal; in getPropertyFunction() 710 if (returnVal == null) { in getPropertyFunction() 716 return returnVal; in getPropertyFunction()
|
D | ObjectAnimator.java | 994 String returnVal = "ObjectAnimator@" + Integer.toHexString(hashCode()) + ", target " + in toString() local 998 returnVal += "\n " + mValues[i].toString(); in toString() 1001 return returnVal; in toString()
|
D | ValueAnimator.java | 1561 String returnVal = "ValueAnimator@" + Integer.toHexString(hashCode()); in toString() local 1564 returnVal += "\n " + mValues[i].toString(); in toString() 1567 return returnVal; in toString()
|
D | AnimatorSet.java | 978 String returnVal = "AnimatorSet@" + Integer.toHexString(hashCode()) + "{"; in toString() local 983 returnVal += "\n " + node.animation.toString(); in toString() 985 return returnVal + "\n}"; in toString()
|
/frameworks/rs/driver/ |
D | rsdGL.cpp | 51 static void checkEglError(const char* op, EGLBoolean returnVal = EGL_TRUE) { in checkEglError() argument 75 if (returnVal != EGL_TRUE) { in checkEglError() 76 fprintf(stderr, "%s() returned %d\n", op, returnVal); in checkEglError() 127 EGLBoolean returnVal = eglGetConfigAttrib(dpy, config, names[j].attribute, &value); in printEGLConfiguration() local 128 if (returnVal) { in printEGLConfiguration()
|
/frameworks/native/opengl/tests/hwc/ |
D | hwcTestLib.cpp | 38 static void checkEglError(const char* op, EGLBoolean returnVal = EGL_TRUE); 952 static void checkEglError(const char* op, EGLBoolean returnVal) in checkEglError() argument 954 if (returnVal != EGL_TRUE) { in checkEglError() 955 testPrintE("%s() returned %d", op, returnVal); in checkEglError() 1007 EGLint returnVal = eglGetConfigAttrib(dpy, config, names[j].attribute, in printEGLConfiguration() local 1010 if (returnVal && error == EGL_SUCCESS) { in printEGLConfiguration()
|