Home
last modified time | relevance | path

Searched refs:returnValue (Results 1 – 25 of 45) sorted by relevance

12

/frameworks/av/media/libstagefright/codecs/mp3dec/src/
Dpvmp3_getbits.cpp120 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/
Dgl2_perf.cpp60 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/
DLayoutParserWrapper.java135 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/
DTransitionValues.java79 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/
DTransitionValues.java80 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/
Dgl_yuvtex.cpp225 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/
DOneShotPreDrawListener.java39 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/
DH264SwDecApi.c356 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/
DglGetString.java-impl10 String returnValue;
11 returnValue = _glGetString(
14 return returnValue;
/frameworks/native/opengl/tests/gl2_basic/
Dgl2_basic.cpp269 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/
Dgl2_yuvtex.cpp335 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/
Dbrightness.cpp47 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/
Dgl2_copyTexImage.cpp366 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/
DrsClosure.cpp12 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()
DrsClosure.h24 Allocation* returnValue,
/frameworks/native/opengl/libs/EGL/
Degl_tls.h56 int line, EGLint error, T returnValue, bool quiet = false) {
58 return returnValue;
/frameworks/support/graphics/drawable/animated/src/android/support/graphics/drawable/
DAnimatorInflaterCompat.java224 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/
DClientOperation.java442 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/
DAnimatorInflater.java293 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/
DhwcTestLib.cpp54 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/
Dsorttable.js412 var returnValue = true;
421 returnValue = false;
424 return returnValue;
434 this.returnValue = false;
/frameworks/base/core/java/android/preference/
DPreferenceGroup.java182 final boolean returnValue = removePreferenceInt(preference); in removePreference()
184 return returnValue; in removePreference()
/frameworks/support/v7/preference/src/android/support/v7/preference/
DPreferenceGroup.java213 final boolean returnValue = removePreferenceInt(preference); in removePreference()
215 return returnValue; in removePreference()
/frameworks/base/services/net/java/android/net/ip/
DIpReachabilityMonitor.java378 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/
DExpandableListView.java669 boolean returnValue; in handleItemClick()
709 returnValue = true; in handleItemClick()
718 returnValue = false; in handleItemClick()
723 return returnValue; in handleItemClick()

12