Searched refs:from (Results 76 - 100 of 886) sorted by relevance

1234567891011>>

/frameworks/support/browser/src/main/java/androidx/browser/browseractions/
H A DBrowserActionsFallbackMenuDialog.java69 float from = isEnterAnimation ? 0f : 1f;
72 mContentView.setScaleX(from);
73 mContentView.setScaleY(from);
/frameworks/support/jetifier/jetifier/processor/src/test/kotlin/com/android/tools/build/jetifier/processor/transform/pom/
H A DPomRewriteRuleTest.kt127 val from = PomDependency(groupId = "g", artifactId = "a", version = ruleVersion)
130 val rule = PomRewriteRule(from, from)
136 val from = PomDependency(groupId = "g", artifactId = "a", version = ruleVersion)
139 val rule = PomRewriteRule(from, from)
/frameworks/support/room/compiler/src/test/kotlin/androidx/room/solver/
H A DTypeAssignmentTest.kt70 from = set,
74 from = hashSet,
93 from = set,
97 from = varianceSet,
110 from = unbounded,
114 from = objectMap,
/frameworks/base/core/java/android/app/
H A DActionBar.java65 * object obtained from the Activity can be used to control either configuration transparently.</p>
69 * select items accessible directly from the action bar as "action items". You can also
85 * same space, the {@link android.view.ActionMode} APIs are distinct and independent from those for
699 * Remove a tab from the action bar. If the removed tab was selected it will be deselected
713 * Remove a tab from the action bar. If the removed tab was selected it will be deselected
727 * Remove all tabs from the action bar and deselect the current tab.
886 * <p>If you pass <code>null</code> to this method, the default drawable from the theme
906 * <p>If you pass <code>0</code> to this method, the default drawable from the theme
1024 * <p>The action bar's elevation is the distance it is placed from its parent surface. Higher
1039 * <p>The action bar's elevation is the distance it is placed from it
[all...]
/frameworks/base/core/java/com/android/internal/graphics/
H A DColorUtils.java26 * Copied from: frameworks/support/core-utils/java/android/support/v4/graphics/ColorUtils.java
76 @FloatRange(from = 0.0, to = 1.0)
214 public static void RGBToHSL(@IntRange(from = 0x0, to = 0xFF) int r,
215 @IntRange(from = 0x0, to = 0xFF) int g, @IntRange(from = 0x0, to = 0xFF) int b,
340 @IntRange(from = 0x0, to = 0xFF) int alpha) {
371 public static void RGBToLAB(@IntRange(from = 0x0, to = 0xFF) int r,
372 @IntRange(from = 0x0, to = 0xFF) int g, @IntRange(from = 0x0, to = 0xFF) int b,
417 public static void RGBToXYZ(@IntRange(from
[all...]
/frameworks/support/compat/src/main/java/androidx/core/graphics/
H A DColorUtils.java143 @FloatRange(from = 0.0, to = 1.0)
238 public static void RGBToHSL(@IntRange(from = 0x0, to = 0xFF) int r,
239 @IntRange(from = 0x0, to = 0xFF) int g, @IntRange(from = 0x0, to = 0xFF) int b,
364 @IntRange(from = 0x0, to = 0xFF) int alpha) {
395 public static void RGBToLAB(@IntRange(from = 0x0, to = 0xFF) int r,
396 @IntRange(from = 0x0, to = 0xFF) int g, @IntRange(from = 0x0, to = 0xFF) int b,
441 public static void RGBToXYZ(@IntRange(from = 0x0, to = 0xFF) int r,
442 @IntRange(from
[all...]
/frameworks/base/core/java/android/view/textclassifier/
H A DTextSelection.java70 @IntRange(from = 0)
76 * Returns the entity at the specified index. Entities are ordered from high confidence
89 * Returns the confidence score for the specified entity. The value ranges from
93 @FloatRange(from = 0.0, to = 1.0)
130 public Builder(@IntRange(from = 0) int startIndex, @IntRange(from = 0) int endIndex) {
140 * @param confidenceScore a value from 0 (low confidence) to 1 (high confidence).
147 @FloatRange(from = 0.0, to = 1.0) float confidenceScore) {
208 @IntRange(from = 0)
216 @IntRange(from
403 public static Options from(TextClassificationSessionId sessionId, Request request) { method in class:TextSelection.Options
[all...]
/frameworks/data-binding/
H A DpropLoader.gradle9 apply from: "${root}/../buildSrc/base/version.gradle"
21 // load version from gradle build file
22 apply from: "$root/../buildSrc/base/version.gradle"
73 p.apply from: "$dataBindingRootFolder/../buildSrc/base/publish.gradle"
74 p.apply from: "$dataBindingRootFolder/../buildSrc/base/bintray.gradle"
76 p.apply from: "$dataBindingRootFolder/../buildSrc/base/javadoc.gradle"
/frameworks/support/jetifier/jetifier/core/src/main/kotlin/com/android/tools/build/jetifier/core/rule/
H A DRewriteRule.kt29 * @param from Regular expression where packages are separated via '/' and inner class separator
31 * @param to A string to be used as a replacement if the 'from' pattern is matched. It can also
32 * apply groups matched from the original pattern using {x} annotation, e.g. {0}.
34 class RewriteRule(private val from: String, private val to: String) {
42 private val inputPattern = Pattern.compile("^${from.replace("$", "\\$")}$")
53 * Any type matched to [from] will be in such case ignored by the preprocessor (thus missing
54 * from the map) but it will be also ignored during rewriting.
61 * That means that error is still thrown if [from] is found in a library that is being
90 val newTo = from.replace("(.*)", "{0}")
112 return JsonData(from, t
[all...]
/frameworks/data-binding/extensions/baseAdapters/
H A Dbuild.gradle78 from 'build/docs/javadoc'
84 from android.sourceSets.main.java.srcDirs
111 from "$buildDir/outputs/aar/baseAdapters-release.aar"
/frameworks/data-binding/integration-tests/TestApp/app/src/androidTestApi7/java/android/databinding/testapp/
H A DListChangeRegistryTest.java64 public void onItemRangeMoved(ObservableList sender, int from, int to, int count) {
103 public void onItemRangeMoved(ObservableList sender, int from, int to, int count) {
142 public void onItemRangeMoved(ObservableList sender, int from, int to, int count) {
180 public void onItemRangeMoved(ObservableList sender, int from, int to, int count) {
181 assertEquals(expectedFrom, from);
220 public void onItemRangeMoved(ObservableList sender, int from, int to, int count) {
/frameworks/support/jetifier/jetifier/gradle-plugin/src/main/kotlin/com/android/tools/build/jetifier/plugin/gradle/
H A DTasksCommon.kt41 logger.log(LogLevel.DEBUG, it.from.absolutePath)
53 it.from.artifactId == artifactId && it.from.groupId == groupId
/frameworks/support/work/workmanager/src/main/java/androidx/work/
H A DOneTimeWorkRequest.java36 * Creates an array of {@link OneTimeWorkRequest} with defaults from an array of
43 @SafeVarargs public static @NonNull List<OneTimeWorkRequest> from( method in class:OneTimeWorkRequest
45 return from(Arrays.asList(workerClasses));
49 * Creates a list of {@link OneTimeWorkRequest} with defaults from an array of {@link Worker}
56 public static @NonNull List<OneTimeWorkRequest> from( method in class:OneTimeWorkRequest
/frameworks/av/include/media/stagefright/foundation/
H A DMutexed.h97 * unlock() or lock() from different threads; they must be called from the thread
106 inline Locked(Locked &&from) : argument
107 mLock(from.mLock),
108 mTreasure(from.mTreasure),
109 mLocked(from.mLocked) {}
/frameworks/av/media/libstagefright/foundation/include/media/stagefright/foundation/
H A DMutexed.h97 * unlock() or lock() from different threads; they must be called from the thread
106 inline Locked(Locked &&from) : argument
107 mLock(from.mLock),
108 mTreasure(from.mTreasure),
109 mLocked(from.mLocked) {}
/frameworks/av/media/libstagefright/include/media/stagefright/foundation/
H A DMutexed.h97 * unlock() or lock() from different threads; they must be called from the thread
106 inline Locked(Locked &&from) : argument
107 mLock(from.mLock),
108 mTreasure(from.mTreasure),
109 mLocked(from.mLocked) {}
/frameworks/base/core/java/android/annotation/
H A DFloatRange.java32 * &#64;FloatRange(from=0.0,to=1.0)
45 double from() default Double.NEGATIVE_INFINITY;
50 /** Whether the from value is included in the range */
H A DIntRange.java33 * &#64;IntRange(from=0,to=255)
45 long from() default Long.MIN_VALUE;
/frameworks/base/core/proto/android/server/
H A Danimationadapter.proto66 optional .android.graphics.PointProto from = 1;
75 optional float from = 1;
/frameworks/base/core/tests/coretests/src/android/view/
H A DMerge.java39 LayoutInflater.from(this).inflate(R.layout.merge_tag, mLayout);
/frameworks/base/libs/hwui/utils/
H A DVectorDrawableUtils.h35 static void interpolatePaths(PathData* outPathData, const PathData& from, const PathData& to,
/frameworks/base/packages/SystemUI/src/com/android/systemui/
H A DSysuiRestartReceiver.java33 NotificationManager.from(context).cancel(pkg, SystemMessage.NOTE_PLUGIN);
/frameworks/support/annotations/src/main/java/androidx/annotation/
H A DIntRange.java33 * &#64;IntRange(from=0,to=255)
43 long from() default Long.MIN_VALUE;
/frameworks/support/app-toolkit/buildSrc/src/main/kotlin/androidx/build/
H A DSourceJarTaskHelper.kt39 sourceJar.from(extension.sourceSets.findByName("main")!!.java.srcDirs)
52 sourceJar.from(convention.sourceSets.findByName("main")!!.allSource.srcDirs)
/frameworks/support/buildSrc/src/main/kotlin/androidx/build/
H A DSourceJarTaskHelper.kt39 sourceJar.from(extension.sourceSets.findByName("main")!!.java.srcDirs)
52 sourceJar.from(convention.sourceSets.findByName("main")!!.allSource.srcDirs)

Completed in 1547 milliseconds

1234567891011>>