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

1 2

  /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/chromium_org/third_party/tlslite/tlslite/utils/
win32prng.c 12 PyObject* returnVal = NULL;
38 returnVal = Py_BuildValue("s#", NULL, 0);
40 returnVal = Py_BuildValue("s#", bytes, howMany);
45 return returnVal;
entropy.c 32 PyObject* returnVal = NULL;
86 returnVal = Py_BuildValue("s#", bytes, howMany);
96 return returnVal;
109 PyObject* returnVal = NULL;
138 returnVal = Py_BuildValue("s#", bytes, howMany);
144 return returnVal;
  /frameworks/native/opengl/tests/include/
glTestLib.h 30 void glTestCheckEglError(const char* op, EGLBoolean returnVal = EGL_TRUE);
  /external/chromium_org/third_party/tlslite/tlslite/
X509.py 129 returnVal = array.array('B', [0] * length)
130 cryptlib_py.cryptGetAttributeString(c, name, returnVal)
131 returnVal = returnVal.tostring()
134 returnVal = None
135 return returnVal
  /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...]
  /external/chromium_org/third_party/WebKit/Source/core/platform/
LayoutUnit.h 418 LayoutUnit returnVal;
419 returnVal.setRawValue(static_cast<int>(result));
420 return returnVal;
500 LayoutUnit returnVal;
502 returnVal.setRawValue(clampTo<int>(rawVal));
503 return returnVal;
578 LayoutUnit returnVal;
579 returnVal.setRawValue(saturatedAddition(a.rawValue(), b.rawValue()));
580 return returnVal;
615 LayoutUnit 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) {
  /frameworks/base/core/java/android/speech/tts/
TtsEngines.java 315 String[] returnVal = new String[] { "", "", ""};
318 System.arraycopy(split, 0, returnVal, 0, split.length);
321 if (DBG) Log.d(TAG, "parseLocalePref(" + returnVal[0] + "," + returnVal[1] +
322 "," + returnVal[2] +")");
324 return returnVal;
  /frameworks/base/core/java/android/animation/
KeyframeSet.java 231 String returnVal = " ";
233 returnVal += mKeyframes.get(i).getValue() + " ";
235 return returnVal;
PropertyValuesHolder.java 380 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;
    [all...]
ObjectAnimator.java 583 String returnVal = "ObjectAnimator@" + Integer.toHexString(hashCode()) + ", target " +
587 returnVal += "\n " + mValues[i].toString();
590 return returnVal;
ValueAnimator.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/chromium_org/third_party/icu/source/common/
rbbiscan.cpp 200 UBool returnVal = TRUE;
372 returnVal = FALSE;
477 returnVal = FALSE;
539 returnVal = FALSE;
548 returnVal = FALSE;
552 returnVal = FALSE;
561 returnVal = FALSE;
564 return returnVal;
    [all...]
  /external/icu4c/common/
rbbiscan.cpp 201 UBool returnVal = TRUE;
373 returnVal = FALSE;
478 returnVal = FALSE;
540 returnVal = FALSE;
549 returnVal = FALSE;
553 returnVal = FALSE;
562 returnVal = FALSE;
565 return returnVal;
    [all...]
  /frameworks/rs/driver/
rsdGL.cpp 52 static void checkEglError(const char* op, EGLBoolean returnVal = EGL_TRUE) {
76 if (returnVal != EGL_TRUE) {
77 fprintf(stderr, "%s() returned %d\n", op, returnVal);
128 EGLBoolean returnVal = eglGetConfigAttrib(dpy, config, names[j].attribute, &value);
129 if (returnVal) {
  /frameworks/native/opengl/tests/hwc/
hwcTestLib.cpp 37 static void checkEglError(const char* op, EGLBoolean returnVal = EGL_TRUE);
    [all...]
  /external/chromium_org/third_party/icu/source/test/intltest/
ustrtest.cpp     [all...]
  /external/icu4c/test/intltest/
ustrtest.cpp     [all...]

Completed in 653 milliseconds

1 2