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

/frameworks/base/core/java/com/android/internal/graphics/
H A DColorUtils.java562 * @param outResult 3-element array which holds the resulting HSL components
565 @FloatRange(from = 0.0, to = 1.0) float ratio, @NonNull float[] outResult) {
566 if (outResult.length != 3) {
571 outResult[0] = circularInterpolate(hsl1[0], hsl2[0], ratio);
572 outResult[1] = hsl1[1] * inverseRatio + hsl2[1] * ratio;
573 outResult[2] = hsl1[2] * inverseRatio + hsl2[2] * ratio;
585 * @param outResult 3-element array which holds the resulting LAB components
588 @FloatRange(from = 0.0, to = 1.0) double ratio, @NonNull double[] outResult) {
589 if (outResult.length != 3) {
590 throw new IllegalArgumentException("outResult mus
564 blendHSL(@onNull float[] hsl1, @NonNull float[] hsl2, @FloatRange(from = 0.0, to = 1.0) float ratio, @NonNull float[] outResult) argument
587 blendLAB(@onNull double[] lab1, @NonNull double[] lab2, @FloatRange(from = 0.0, to = 1.0) double ratio, @NonNull double[] outResult) argument
[all...]
/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/services/core/java/com/android/server/am/
H A DActivityStarter.java672 ProfilerInfo profilerInfo, WaitResult outResult,
846 if (outResult != null) {
847 outResult.result = res;
849 mSupervisor.mWaitingActivityLaunched.add(outResult);
855 } while (outResult.result != START_TASK_TO_FRONT
856 && !outResult.timeout && outResult.who == null);
857 if (outResult.result == START_TASK_TO_FRONT) {
867 outResult.timeout = false;
868 outResult
668 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, IActivityContainer iContainer, TaskRecord inTask, String reason) argument
[all...]
/frameworks/base/core/java/android/widget/
H A DNumberPicker.java2611 int virtualViewId, List<AccessibilityNodeInfo> outResult) {
2617 outResult.add(createAccessibilityNodeInfo(VIRTUAL_VIEW_ID_DECREMENT));
2624 outResult.add(createAccessibilityNodeInfo(VIRTUAL_VIEW_ID_INPUT));
2630 outResult.add(createAccessibilityNodeInfo(VIRTUAL_VIEW_ID_INPUT));
2638 outResult.add(createAccessibilityNodeInfo(VIRTUAL_VIEW_ID_INCREMENT));
2610 findAccessibilityNodeInfosByTextInChild(String searchedLowerCase, int virtualViewId, List<AccessibilityNodeInfo> outResult) argument

Completed in 3653 milliseconds