Searched refs:returnVal (Results 1 - 17 of 17) 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);
H A DTextToSpeechTests.java127 Locale returnVal = mTts.getLanguage();
128 assertNull(returnVal);
133 returnVal = mTts.getLanguage();
134 assertNull(returnVal);
143 Locale returnVal = mTts.getLanguage();
148 assertEquals(new Locale("eng", "USA", ""), 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.cpp48 void glTestCheckEglError(const char* op, EGLBoolean returnVal) argument
50 if (returnVal != EGL_TRUE) {
51 testPrintE("%s() returned %d", op, returnVal);
111 EGLint returnVal = eglGetConfigAttrib(dpy, config, names[j].attribute, local
114 if (returnVal && error == EGL_SUCCESS) {
/frameworks/native/opengl/tests/gl2_basic/
H A Dgl2_basic.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);
219 EGLint returnVal = eglGetConfigAttrib(dpy, config, names[j].attribute, &value); local
221 if (returnVal && error == EGL_SUCCESS) {
231 EGLint returnVal = eglGetConfigs(dpy, NULL, 0, &numConfig); local
232 checkEglError("eglGetConfigs", returnVal);
233 if (!returnVal) {
245 returnVal = eglGetConfigs(dpy, configs, numConfig, &numConfig);
246 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/speech/tts/
H A DTtsEngines.java314 String[] returnVal = new String[] { "", "", ""};
317 System.arraycopy(split, 0, returnVal, 0, split.length);
320 if (DBG) Log.d(TAG, "parseLocalePref(" + returnVal[0] + "," + returnVal[1] +
321 "," + returnVal[2] +")");
323 return returnVal;
/frameworks/base/core/java/android/animation/
H A DKeyframeSet.java218 String returnVal = " ";
220 returnVal += mKeyframes.get(i).getValue() + " ";
222 return returnVal;
H A DObjectAnimator.java488 String returnVal = "ObjectAnimator@" + Integer.toHexString(hashCode()) + ", target " +
492 returnVal += "\n " + mValues[i].toString();
495 return returnVal;
H A DPropertyValuesHolder.java380 Method returnVal = null;
385 returnVal = targetClass.getMethod(methodName, args);
405 returnVal = targetClass.getMethod(methodName, args);
408 return returnVal;
416 if (returnVal == null) {
422 return returnVal;
H A DValueAnimator.java1257 String returnVal = "ValueAnimator@" + Integer.toHexString(hashCode());
1260 returnVal += "\n " + mValues[i].toString();
1263 return returnVal;
/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/rs/driver/
H A DrsdGL.cpp53 static void checkEglError(const char* op, EGLBoolean returnVal = EGL_TRUE) {
77 if (returnVal != EGL_TRUE) {
78 fprintf(stderr, "%s() returned %d\n", op, returnVal);
129 EGLBoolean returnVal = eglGetConfigAttrib(dpy, config, names[j].attribute, &value); local
130 if (returnVal) {
/frameworks/native/opengl/tests/hwc/
H A DhwcTestLib.cpp37 static void checkEglError(const char* op, EGLBoolean returnVal = EGL_TRUE);
959 static void checkEglError(const char* op, EGLBoolean returnVal) argument
961 if (returnVal != EGL_TRUE) {
962 testPrintE("%s() returned %d", op, returnVal);
1022 EGLint returnVal = eglGetConfigAttrib(dpy, config, names[j].attribute, local
1025 if (returnVal && error == EGL_SUCCESS) {

Completed in 5351 milliseconds