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

1 2

  /external/skia/platform_tools/chromeos/bin/
build_skia_in_chroot 28 returnVal=$?
29 if [ $returnVal != 0 ]
36 returnVal=$?
37 if [ $returnVal != 0 ]
  /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);
  /frameworks/native/opengl/tests/include/
glTestLib.h 30 void glTestCheckEglError(const char* op, EGLBoolean returnVal = EGL_TRUE);
  /frameworks/native/opengl/tests/lib/
glTestLib.cpp 48 void glTestCheckEglError(const char* op, EGLBoolean returnVal)
50 if (returnVal != EGL_TRUE) {
51 testPrintE("%s() returned %d", op, returnVal);
111 EGLint returnVal = eglGetConfigAttrib(dpy, config, names[j].attribute,
114 if (returnVal && error == EGL_SUCCESS) {
  /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/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_perf/
gl2_perf.cpp 35 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/
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_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) {
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
RBBIRuleScanner.java 133 boolean returnVal = true;
298 returnVal = false;
400 returnVal = false;
461 returnVal = false;
470 returnVal = false;
474 returnVal = false;
483 returnVal = false;
486 return returnVal;
    [all...]
  /frameworks/base/core/java/android/animation/
KeyframeSet.java 258 String returnVal = " ";
260 returnVal += mKeyframes.get(i).getValue() + " ";
262 return returnVal;
PropertyValuesHolder.java     [all...]
ObjectAnimator.java     [all...]
ValueAnimator.java     [all...]
AnimatorSet.java     [all...]
  /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/conscrypt/src/main/java/org/conscrypt/
OpenSSLSocketImpl.java 575 InputStream returnVal;
585 returnVal = is;
592 return returnVal;
599 OutputStream returnVal;
609 returnVal = os;
616 return returnVal;
    [all...]
  /external/icu/icu4c/source/i18n/
ucol.cpp 454 UCollationResult returnVal = Collator::fromUCollator(coll)->
456 UTRACE_EXIT_VALUE_STATUS(returnVal, status);
457 return returnVal;
484 UCollationResult returnVal = Collator::fromUCollator(coll)->internalCompareUTF8(
486 UTRACE_EXIT_VALUE_STATUS(returnVal, *status);
487 return returnVal;
  /external/icu/icu4c/source/common/
rbbiscan.cpp 199 UBool returnVal = TRUE;
371 returnVal = FALSE;
476 returnVal = FALSE;
538 returnVal = FALSE;
547 returnVal = FALSE;
551 returnVal = FALSE;
560 returnVal = FALSE;
563 return returnVal;
    [all...]
  /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/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/src/modules/audio_coding/codecs/isac/main/source/
isac.c     [all...]

Completed in 379 milliseconds

1 2