HomeSort by relevance Sort by last modified time
    Searched defs:returnVal (Results 1 - 25 of 61) sorted by null

1 2 3

  /frameworks/base/tests/TtsTests/src/com/android/speech/tts/
MockableCheckVoiceData.java 37 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);
  /external/webrtc/webrtc/modules/audio_coding/codecs/isac/main/util/
utility.c 68 double returnVal = defaultVal;
77 returnVal = atof(argv[n]);
82 return returnVal;
92 int returnVal = defaultVal;
101 returnVal = atoi(argv[n]);
106 return returnVal;
  /frameworks/native/opengl/tests/lib/
glTestLib.cpp 47 void glTestCheckEglError(const char* op, EGLBoolean returnVal)
49 if (returnVal != EGL_TRUE) {
50 testPrintE("%s() returned %d", op, returnVal);
110 EGLint returnVal = eglGetConfigAttrib(dpy, config, names[j].attribute,
113 if (returnVal && error == EGL_SUCCESS) {
  /frameworks/rs/driver/
rsdGL.cpp 51 static void checkEglError(const char* op, EGLBoolean returnVal = EGL_TRUE) {
75 if (returnVal != EGL_TRUE) {
76 fprintf(stderr, "%s() returned %d\n", op, returnVal);
127 EGLBoolean returnVal = eglGetConfigAttrib(dpy, config, names[j].attribute, &value);
128 if (returnVal) {
  /external/icu/icu4c/source/common/
rbbiscan.cpp 198 UBool returnVal = TRUE;
382 returnVal = FALSE;
508 returnVal = FALSE;
570 returnVal = FALSE;
579 returnVal = FALSE;
583 returnVal = FALSE;
592 returnVal = FALSE;
595 return returnVal && U_SUCCESS(*fRB->fStatus);
    [all...]
  /frameworks/base/core/java/android/animation/
KeyframeSet.java 259 String returnVal = " ";
261 returnVal += mKeyframes.get(i).getValue() + " ";
263 return returnVal;
ObjectAnimator.java     [all...]
PropertyValuesHolder.java     [all...]
ValueAnimator.java     [all...]
AnimatorSet.java     [all...]
  /external/icu/icu4c/source/i18n/
regexcmp.cpp 352 UBool returnVal = TRUE;
393 returnVal = FALSE;
    [all...]
ucol.cpp 452 UCollationResult returnVal = Collator::fromUCollator(coll)->
454 UTRACE_EXIT_VALUE_STATUS(returnVal, status);
455 return returnVal;
480 UCollationResult returnVal = Collator::fromUCollator(coll)->internalCompareUTF8(
482 UTRACE_EXIT_VALUE_STATUS(returnVal, *status);
483 return returnVal;
rematch.cpp     [all...]
  /external/sl4a/Common/src/com/googlecode/android_scripting/facade/wifi/
HttpFacade.java 192 int returnVal = p1.waitFor();
193 boolean reachable = (returnVal == 0);
194 Log.d("Ping return Value:" + returnVal);
  /frameworks/base/core/tests/coretests/src/android/animation/
AutoCancelTest.java 43 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/
gl2_basic.cpp 47 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);
221 if (returnVal && error == EGL_SUCCESS) {
231 EGLint returnVal = eglGetConfigs(dpy, NULL, 0, &numConfig);
232 checkEglError("eglGetConfigs", returnVal);
233 if (!returnVal) {
245 returnVal = eglGetConfigs(dpy, configs, numConfig, &numConfig);
246 checkEglError("eglGetConfigs", returnVal);
    [all...]
  /frameworks/native/opengl/tests/gl2_copyTexImage/
gl2_copyTexImage.cpp 47 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);
325 if (returnVal && error == EGL_SUCCESS) {
335 EGLint returnVal = eglGetConfigs(dpy, NULL, 0, &numConfig);
336 checkEglError("eglGetConfigs", returnVal);
337 if (!returnVal) {
349 returnVal = eglGetConfigs(dpy, configs, numConfig, &numConfig);
350 checkEglError("eglGetConfigs", returnVal);
    [all...]
  /frameworks/native/opengl/tests/gl_basic/
gl_basic.cpp 138 EGLint returnVal = eglGetConfigAttrib(dpy, config, names[j].attribute, &value);
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);
163 checkEglError("eglGetConfigs", returnVal);
164 if (!returnVal) {
176 returnVal = eglGetConfigs(dpy, configs, numConfig, &numConfig);
177 checkEglError("eglGetConfigs", returnVal);
    [all...]
  /frameworks/native/opengl/tests/gl_yuvtex/
gl_yuvtex.cpp 49 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);
216 if (returnVal && error == EGL_SUCCESS) {
  /frameworks/native/opengl/tests/gl2_yuvtex/
gl2_yuvtex.cpp 49 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);
326 if (returnVal && error == EGL_SUCCESS) {
  /external/slf4j/slf4j-migrator/src/main/java/org/slf4j/migrator/internal/
MigratorFrame.java 317 int returnVal = fileChooser.showOpenDialog(this);
318 if (returnVal == JFileChooser.APPROVE_OPTION) {
  /frameworks/native/opengl/tests/hwc/
hwcTestLib.cpp 38 static void checkEglError(const char* op, EGLBoolean returnVal = EGL_TRUE);
    [all...]
  /external/icu/icu4c/source/test/intltest/
ustrtest.cpp     [all...]
  /external/webrtc/webrtc/modules/audio_coding/codecs/isac/main/source/
isac.c     [all...]
  /external/conscrypt/src/main/java/org/conscrypt/
OpenSSLSocketImpl.java 628 InputStream returnVal;
638 returnVal = is;
645 return returnVal;
652 OutputStream returnVal;
662 returnVal = os;
669 return returnVal;
    [all...]

Completed in 717 milliseconds

1 2 3