/frameworks/av/media/libstagefright/codecs/mp3dec/src/ |
D | pvmp3_getbits.cpp | 120 uint32 returnValue = 0; in getNbits() local 124 return (returnValue); in getNbits() 135 returnValue = (((uint32)(Elem)) << 24) | in getNbits() 144 returnValue <<= bitIndex; in getNbits() 147 returnValue >>= (32 - neededBits); in getNbits() 151 return (returnValue); in getNbits() 166 uint16 returnValue; in getUpTo9bits() local 174 returnValue = (((uint16)(Elem)) << 8) | in getUpTo9bits() 182 returnValue = (returnValue << (bitIndex)); in getUpTo9bits() 186 return (uint16)(returnValue >> (16 - neededBits)); in getUpTo9bits() [all …]
|
/frameworks/native/opengl/tests/gl_perf/ |
D | gl2_perf.cpp | 60 EGLBoolean returnValue; in main() local 82 returnValue = eglInitialize(dpy, &majorVersion, &minorVersion); in main() 83 checkEglError("eglInitialize", returnValue); in main() 84 if (returnValue != EGL_TRUE) { in main() 91 returnValue = EGLUtils::selectConfigForNativeWindow(dpy, s_configAttribs, window, &myConfig); in main() 92 if (returnValue) { in main() 93 printf("EGLUtils::selectConfigForNativeWindow() returned %d", returnValue); in main() 112 returnValue = eglMakeCurrent(dpy, surface, surface, context); in main() 113 checkEglError("eglMakeCurrent", returnValue); in main() 114 if (returnValue != EGL_TRUE) { in main()
|
/frameworks/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/ |
D | LayoutParserWrapper.java | 135 int returnValue; in next() local 138 returnValue = mNext; in next() 144 returnValue = mDelegate.next(); in next() 147 if (returnValue == END_TAG && depth <= mFinalDepth) { in next() 150 return returnValue; in next() 175 String returnValue = null; in getAttributeValue() local 188 returnValue = attribute.value; in getAttributeValue() 194 returnValue = mDelegate.getAttributeValue(namespace, name); in getAttributeValue() 197 if (returnValue != null && mFinalDepth >= 0 && returnValue.startsWith("@{")) { in getAttributeValue() 199 int i = returnValue.lastIndexOf(DEFAULT); in getAttributeValue() [all …]
|
/frameworks/support/transition/src/android/support/transition/ |
D | TransitionValues.java | 79 String returnValue = "TransitionValues@" + Integer.toHexString(hashCode()) + ":\n"; in toString() local 80 returnValue += " view = " + view + "\n"; in toString() 81 returnValue += " values:"; in toString() 83 returnValue += " " + s + ": " + values.get(s) + "\n"; in toString() 85 return returnValue; in toString()
|
/frameworks/base/core/java/android/transition/ |
D | TransitionValues.java | 80 String returnValue = "TransitionValues@" + Integer.toHexString(hashCode()) + ":\n"; in toString() local 81 returnValue += " view = " + view + "\n"; in toString() 82 returnValue += " values:"; in toString() 84 returnValue += " " + s + ": " + values.get(s) + "\n"; in toString() 86 return returnValue; in toString()
|
/frameworks/native/opengl/tests/gl_yuvtex/ |
D | gl_yuvtex.cpp | 225 EGLBoolean returnValue; in main() local 249 returnValue = eglInitialize(dpy, &majorVersion, &minorVersion); in main() 250 checkEglError("eglInitialize", returnValue); in main() 252 if (returnValue != EGL_TRUE) { in main() 259 returnValue = EGLUtils::selectConfigForNativeWindow(dpy, s_configAttribs, window, &myConfig); in main() 260 if (returnValue) { in main() 261 printf("EGLUtils::selectConfigForNativeWindow() returned %d", returnValue); in main() 283 returnValue = eglMakeCurrent(dpy, surface, surface, context); in main() 284 checkEglError("eglMakeCurrent", returnValue); in main() 285 if (returnValue != EGL_TRUE) { in main()
|
/frameworks/base/core/java/com/android/internal/view/ |
D | OneShotPreDrawListener.java | 39 private OneShotPreDrawListener(View view, boolean returnValue, Runnable runnable) { in OneShotPreDrawListener() argument 43 mReturnValue = returnValue; in OneShotPreDrawListener() 68 public static OneShotPreDrawListener add(View view, boolean returnValue, Runnable runnable) { in add() argument 69 OneShotPreDrawListener listener = new OneShotPreDrawListener(view, returnValue, runnable); in add()
|
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/ |
D | H264SwDecApi.c | 356 H264SwDecRet returnValue = H264SWDEC_STRM_PROCESSED; in H264SwDecDecode() local 434 returnValue = H264SWDEC_PIC_RDY_BUFF_NOT_EMPTY; in H264SwDecDecode() 439 returnValue = H264SWDEC_HDRS_RDY_BUFF_NOT_EMPTY; in H264SwDecDecode() 448 returnValue = H264SWDEC_PIC_RDY; in H264SwDecDecode() 450 returnValue = H264SWDEC_PIC_RDY_BUFF_NOT_EMPTY; in H264SwDecDecode() 459 returnValue = H264SWDEC_STRM_ERR; in H264SwDecDecode() 464 returnValue = H264SWDEC_MEMFAIL; in H264SwDecDecode() 476 returnValue); in H264SwDecDecode() 480 return(returnValue); in H264SwDecDecode()
|
/frameworks/native/opengl/tools/glgen/stubs/jsr239/ |
D | glGetString.java-impl | 10 String returnValue; 11 returnValue = _glGetString( 14 return returnValue;
|
/frameworks/native/opengl/tests/gl2_basic/ |
D | gl2_basic.cpp | 269 EGLBoolean returnValue; in main() local 293 returnValue = eglInitialize(dpy, &majorVersion, &minorVersion); in main() 294 checkEglError("eglInitialize", returnValue); in main() 296 if (returnValue != EGL_TRUE) { in main() 310 returnValue = EGLUtils::selectConfigForNativeWindow(dpy, s_configAttribs, window, &myConfig); in main() 311 if (returnValue) { in main() 312 printf("EGLUtils::selectConfigForNativeWindow() returned %d", returnValue); in main() 334 returnValue = eglMakeCurrent(dpy, surface, surface, context); in main() 335 checkEglError("eglMakeCurrent", returnValue); in main() 336 if (returnValue != EGL_TRUE) { in main()
|
/frameworks/native/opengl/tests/gl2_yuvtex/ |
D | gl2_yuvtex.cpp | 335 EGLBoolean returnValue; in main() local 359 returnValue = eglInitialize(dpy, &majorVersion, &minorVersion); in main() 360 checkEglError("eglInitialize", returnValue); in main() 362 if (returnValue != EGL_TRUE) { in main() 369 returnValue = EGLUtils::selectConfigForNativeWindow(dpy, s_configAttribs, window, &myConfig); in main() 370 if (returnValue) { in main() 371 printf("EGLUtils::selectConfigForNativeWindow() returned %d", returnValue); in main() 393 returnValue = eglMakeCurrent(dpy, surface, surface, context); in main() 394 checkEglError("eglMakeCurrent", returnValue); in main() 395 if (returnValue != EGL_TRUE) { in main()
|
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/jni/ |
D | brightness.cpp | 47 float returnValue = sqrt(0.241f * avgPixels[0] * avgPixels[0] + in Java_androidx_media_filterfw_samples_simplecamera_AvgBrightnessFilter_brightnessOperator() local 51 return returnValue / 255; in Java_androidx_media_filterfw_samples_simplecamera_AvgBrightnessFilter_brightnessOperator()
|
/frameworks/native/opengl/tests/gl2_copyTexImage/ |
D | gl2_copyTexImage.cpp | 366 EGLBoolean returnValue; in main() local 394 returnValue = eglInitialize(dpy, &majorVersion, &minorVersion); in main() 395 checkEglError("eglInitialize", returnValue); in main() 397 if (returnValue != EGL_TRUE) { in main() 438 returnValue = eglMakeCurrent(dpy, surface, surface, context); in main() 439 checkEglError("eglMakeCurrent", returnValue); in main() 440 if (returnValue != EGL_TRUE) { in main()
|
/frameworks/rs/ |
D | rsClosure.cpp | 12 RsAllocation returnValue, in rsi_ClosureCreate() argument 24 context, (const ScriptKernelID*)kernelID, (Allocation*)returnValue, in rsi_ClosureCreate() 60 Allocation* returnValue, in Closure() argument 68 mIsKernel(true), mReturnValue(returnValue), mParams(nullptr), in Closure()
|
D | rsClosure.h | 24 Allocation* returnValue,
|
/frameworks/native/opengl/libs/EGL/ |
D | egl_tls.h | 56 int line, EGLint error, T returnValue, bool quiet = false) { 58 return returnValue;
|
/frameworks/support/graphics/drawable/animated/src/android/support/graphics/drawable/ |
D | AnimatorInflaterCompat.java | 224 PropertyValuesHolder returnValue = null; in getPVH() local 242 returnValue = PropertyValuesHolder.ofObject(propertyName, evaluator, in getPVH() 245 returnValue = PropertyValuesHolder.ofObject(propertyName, evaluator, in getPVH() 250 returnValue = PropertyValuesHolder.ofObject(propertyName, evaluator, in getPVH() 276 returnValue = PropertyValuesHolder.ofFloat(propertyName, in getPVH() 279 returnValue = PropertyValuesHolder.ofFloat(propertyName, valueFrom); in getPVH() 287 returnValue = PropertyValuesHolder.ofFloat(propertyName, valueTo); in getPVH() 308 returnValue = PropertyValuesHolder.ofInt(propertyName, valueFrom, valueTo); in getPVH() 310 returnValue = PropertyValuesHolder.ofInt(propertyName, valueFrom); in getPVH() 321 returnValue = PropertyValuesHolder.ofInt(propertyName, valueTo); in getPVH() [all …]
|
/frameworks/base/obex/javax/obex/ |
D | ClientOperation.java | 442 boolean returnValue = false; in sendRequest() 524 returnValue = true; in sendRequest() 536 if ((mPrivateOutput.isClosed()) && (!returnValue) && (!mEndOfBodySent) in sendRequest() 573 return returnValue; in sendRequest() 586 returnValue = true; in sendRequest() 588 return returnValue; in sendRequest()
|
/frameworks/base/core/java/android/animation/ |
D | AnimatorInflater.java | 293 PropertyValuesHolder returnValue = null; in getPVH() local 311 returnValue = PropertyValuesHolder.ofObject(propertyName, evaluator, in getPVH() 314 returnValue = PropertyValuesHolder.ofObject(propertyName, evaluator, in getPVH() 319 returnValue = PropertyValuesHolder.ofObject(propertyName, evaluator, in getPVH() 345 returnValue = PropertyValuesHolder.ofFloat(propertyName, in getPVH() 348 returnValue = PropertyValuesHolder.ofFloat(propertyName, valueFrom); in getPVH() 356 returnValue = PropertyValuesHolder.ofFloat(propertyName, valueTo); in getPVH() 377 returnValue = PropertyValuesHolder.ofInt(propertyName, valueFrom, valueTo); in getPVH() 379 returnValue = PropertyValuesHolder.ofInt(propertyName, valueFrom); in getPVH() 390 returnValue = PropertyValuesHolder.ofInt(propertyName, valueTo); in getPVH() [all …]
|
/frameworks/native/opengl/tests/hwc/ |
D | hwcTestLib.cpp | 54 EGLBoolean returnValue; in hwcTestInitDisplay() local 71 returnValue = eglInitialize(*dpy, &majorVersion, &minorVersion); in hwcTestInitDisplay() 72 checkEglError("eglInitialize", returnValue); in hwcTestInitDisplay() 76 if (returnValue != EGL_TRUE) { in hwcTestInitDisplay() 90 returnValue = EGLUtils::selectConfigForNativeWindow(*dpy, in hwcTestInitDisplay() 92 if (returnValue) { in hwcTestInitDisplay() 94 returnValue); in hwcTestInitDisplay() 117 returnValue = eglMakeCurrent(*dpy, *surface, *surface, context); in hwcTestInitDisplay() 118 checkEglError("eglMakeCurrent", returnValue); in hwcTestInitDisplay() 119 if (returnValue != EGL_TRUE) { in hwcTestInitDisplay()
|
/frameworks/base/tools/preload/ |
D | sorttable.js | 412 var returnValue = true; 421 returnValue = false; 424 return returnValue; 434 this.returnValue = false;
|
/frameworks/base/core/java/android/preference/ |
D | PreferenceGroup.java | 182 final boolean returnValue = removePreferenceInt(preference); in removePreference() 184 return returnValue; in removePreference()
|
/frameworks/support/v7/preference/src/android/support/v7/preference/ |
D | PreferenceGroup.java | 213 final boolean returnValue = removePreferenceInt(preference); in removePreference() 215 return returnValue; in removePreference()
|
/frameworks/base/services/net/java/android/net/ip/ |
D | IpReachabilityMonitor.java | 378 final int returnValue = probeNeighbor(mInterfaceIndex, target); in probeAll() local 380 target.getHostAddress(), returnValue)); in probeAll() 381 logEvent(IpReachabilityEvent.PROBE, returnValue); in probeAll()
|
/frameworks/base/core/java/android/widget/ |
D | ExpandableListView.java | 669 boolean returnValue; in handleItemClick() 709 returnValue = true; in handleItemClick() 718 returnValue = false; in handleItemClick() 723 return returnValue; in handleItemClick()
|