Searched defs:outResult (Results 1 - 4 of 4) sorted by relevance

/frameworks/support/core-utils/java/android/support/v4/graphics/
H A DColorUtils.java561 * @param outResult 3-element array which holds the resulting HSL components
564 @FloatRange(from = 0.0, to = 1.0) float ratio, @NonNull float[] outResult) {
565 if (outResult.length != 3) {
570 outResult[0] = circularInterpolate(hsl1[0], hsl2[0], ratio);
571 outResult[1] = hsl1[1] * inverseRatio + hsl2[1] * ratio;
572 outResult[2] = hsl1[2] * inverseRatio + hsl2[2] * ratio;
584 * @param outResult 3-element array which holds the resulting LAB components
587 @FloatRange(from = 0.0, to = 1.0) double ratio, @NonNull double[] outResult) {
588 if (outResult.length != 3) {
589 throw new IllegalArgumentException("outResult mus
563 blendHSL(@onNull float[] hsl1, @NonNull float[] hsl2, @FloatRange(from = 0.0, to = 1.0) float ratio, @NonNull float[] outResult) argument
586 blendLAB(@onNull double[] lab1, @NonNull double[] lab2, @FloatRange(from = 0.0, to = 1.0) double ratio, @NonNull double[] outResult) argument
[all...]
/frameworks/base/core/java/com/android/internal/graphics/
H A DColorUtils.java605 * @param outResult 3-element array which holds the resulting HSL components
608 @FloatRange(from = 0.0, to = 1.0) float ratio, @NonNull float[] outResult) {
609 if (outResult.length != 3) {
614 outResult[0] = circularInterpolate(hsl1[0], hsl2[0], ratio);
615 outResult[1] = hsl1[1] * inverseRatio + hsl2[1] * ratio;
616 outResult[2] = hsl1[2] * inverseRatio + hsl2[2] * ratio;
628 * @param outResult 3-element array which holds the resulting LAB components
631 @FloatRange(from = 0.0, to = 1.0) double ratio, @NonNull double[] outResult) {
632 if (outResult.length != 3) {
633 throw new IllegalArgumentException("outResult mus
607 blendHSL(@onNull float[] hsl1, @NonNull float[] hsl2, @FloatRange(from = 0.0, to = 1.0) float ratio, @NonNull float[] outResult) argument
630 blendLAB(@onNull double[] lab1, @NonNull double[] lab2, @FloatRange(from = 0.0, to = 1.0) double ratio, @NonNull double[] outResult) argument
[all...]
/frameworks/base/services/core/java/com/android/server/am/
H A DActivityStarter.java677 ProfilerInfo profilerInfo, WaitResult outResult,
839 if (outResult != null) {
840 outResult.result = res;
842 mSupervisor.mWaitingActivityLaunched.add(outResult);
848 } while (outResult.result != START_TASK_TO_FRONT
849 && !outResult.timeout && outResult.who == null);
850 if (outResult.result == START_TASK_TO_FRONT) {
860 outResult.timeout = false;
861 outResult
673 startActivityMayWait(IApplicationThread caller, int callingUid, String callingPackage, Intent intent, String resolvedType, IVoiceInteractionSession voiceSession, IVoiceInteractor voiceInteractor, IBinder resultTo, String resultWho, int requestCode, int startFlags, ProfilerInfo profilerInfo, WaitResult outResult, Configuration globalConfig, Bundle bOptions, boolean ignoreTargetSecurity, int userId, TaskRecord inTask, String reason) argument
[all...]
/frameworks/base/core/java/android/widget/
H A DNumberPicker.java2638 int virtualViewId, List<AccessibilityNodeInfo> outResult) {
2644 outResult.add(createAccessibilityNodeInfo(VIRTUAL_VIEW_ID_DECREMENT));
2651 outResult.add(createAccessibilityNodeInfo(VIRTUAL_VIEW_ID_INPUT));
2657 outResult.add(createAccessibilityNodeInfo(VIRTUAL_VIEW_ID_INPUT));
2665 outResult.add(createAccessibilityNodeInfo(VIRTUAL_VIEW_ID_INCREMENT));
2637 findAccessibilityNodeInfosByTextInChild(String searchedLowerCase, int virtualViewId, List<AccessibilityNodeInfo> outResult) argument

Completed in 132 milliseconds