Searched refs:from (Results 151 - 175 of 886) sorted by relevance

1234567891011>>

/frameworks/base/docs/html/
H A D__DEPRECATED__DO_NOT_EDIT__.txt13 - Sample code documentation is not maintained in Piper, but is published from
/frameworks/base/tests/TransitionTests/src/com/android/transitiontests/
H A DResourceLoadingTest.java47 mInflater = TransitionInflater.from(this);
53 TransitionInflater inflater = TransitionInflater.from(this);
/frameworks/base/tests/UiBench/
H A DAndroid.mk11 # use appcompat/support lib from the tree, so improvements/
/frameworks/compile/mclinker/lib/Target/
H A DELFEmulation.cpp19 const char* from; ///< the prefix of the input string. (match FROM*) member in struct:mcld::NameMap
78 pScript.sectionMap().insert(map[i].from, map[i].to, map[i].policy);
/frameworks/native/libs/gui/tests/
H A DSurfaceTextureFBO_test.cpp44 sp<GraphicBuffer> buf(GraphicBuffer::from(anb));
68 buf = GraphicBuffer::from(anb);
/frameworks/support/app-toolkit/buildSrc/
H A Drepos.gradle31 apply from: "${supportRoot}/buildSrc/unbundled_check.gradle"
/frameworks/support/buildSrc/
H A Drepos.gradle31 apply from: "${supportRoot}/buildSrc/unbundled_check.gradle"
/frameworks/support/navigation/common/
H A Dbuild.gradle43 from variant.javaCompile.destinationDir
/frameworks/support/palette/ktx/src/androidTest/java/androidx/palette/graphics/
H A DPaletteTest.kt31 // There's no easy way to test that the palette was created from our Bitmap.
39 val palette = Palette.from(bitmap).generate()
/frameworks/support/persistence/db/
H A Dbuild.gradle38 from variant.javaCompile.destinationDir
/frameworks/base/cmds/app_process/
H A DAndroid.mk14 # bad apps. This prevents a library from having a mismatch when resolving
15 # new/delete from an app shared library.
64 # Create a symlink from app_process to app_process32 or 64
/frameworks/base/cmds/statsd/src/
H A DFieldValue.cpp132 Value::Value(const Value& from) { argument
133 type = from.getType();
136 int_value = from.int_value;
139 long_value = from.long_value;
142 float_value = from.float_value;
145 str_value = from.str_value;
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
H A DPageIndicator.java112 private void animate(int from, int to) { argument
113 if (DEBUG) Log.d(TAG, "Animating from " + Integer.toHexString(from) + " to "
115 int fromIndex = from >> 1;
122 boolean fromTransition = (from & 1) != 0;
123 boolean isAState = fromTransition ? from > to : from < to;
/frameworks/support/compat/src/main/java/androidx/core/os/
H A DLocaleListCompat.java62 @IntRange(from = 0)
68 @IntRange(from = -1)
128 @IntRange(from = 0)
134 @IntRange(from = -1)
180 * Creates a new instance of {@link LocaleListCompat} from the Locale list.
203 * Creates a new instance of {@link LocaleListCompat} from the {@link Locale} array.
234 @IntRange(from = 0)
247 @IntRange(from = -1)
264 * @return The first {@link Locale} from this list that appears in the given array, or
/frameworks/support/emoji/core/src/androidTest/java/androidx/emoji/widget/
H A DEmojiExtractTextLayoutTest.java74 final EmojiExtractTextLayout layout = (EmojiExtractTextLayout) LayoutInflater.from(context)
94 final EmojiExtractTextLayout layout = (EmojiExtractTextLayout) LayoutInflater.from(context)
110 final EmojiExtractTextLayout layout = (EmojiExtractTextLayout) LayoutInflater.from(context)
132 final EmojiExtractTextLayout layout = (EmojiExtractTextLayout) LayoutInflater.from(context)
156 final EmojiExtractTextLayout layout = (EmojiExtractTextLayout) LayoutInflater.from(context)
184 final EmojiExtractTextLayout layout = (EmojiExtractTextLayout) LayoutInflater.from(context)
/frameworks/support/frameworks/support/samples/Support7Demos/src/main/java/com/example/android/supportv7/widget/touch/
H A DItemTouchHelperActivity.java45 * Sample activity from which ItemTouchHelper demo activities inherit.
79 return new ConfigViewHolder(LayoutInflater.from(parent.getContext())
213 LayoutInflater.from(parent.getContext())
275 public void move(int from, int to) { argument
276 String prev = mItems.remove(from);
277 mItems.add(to > from ? to - 1 : to, prev);
278 notifyItemMoved(from, to);
/frameworks/support/jetifier/jetifier/core/src/main/kotlin/com/android/tools/build/jetifier/core/type/
H A DTypesMap.kt27 * These mappings are generated by the preprocessor from existing support libraries and by applying
58 for ((from, to) in types) {
61 Log.e(TAG, "Conflict: %s -> (%s, %s)", to, from, conflictFrom)
64 typesReversed[to] = from
/frameworks/support/palette/src/androidTest/java/androidx/palette/graphics/
H A DBucketTests.java43 Palette.from(sample).generate();
50 Palette p = Palette.from(TestUtils.loadSampleBitmap()).generate();
62 Palette p = Palette.from(swatches);
123 final Palette palette = Palette.from(bitmap).generate();
138 final Palette palette = Palette.from(bitmap)
166 // Now generate a palette from the bitmap
167 final Palette palette = Palette.from(bitmap).generate();
/frameworks/support/samples/Support7Demos/src/main/java/com/example/android/supportv7/widget/touch/
H A DItemTouchHelperActivity.java45 * Sample activity from which ItemTouchHelper demo activities inherit.
79 return new ConfigViewHolder(LayoutInflater.from(parent.getContext())
213 LayoutInflater.from(parent.getContext())
275 public void move(int from, int to) { argument
276 String prev = mItems.remove(from);
277 mItems.add(to > from ? to - 1 : to, prev);
278 notifyItemMoved(from, to);
/frameworks/support/v7/appcompat/src/androidTest/java/androidx/appcompat/app/
H A DLayoutInflaterFactoryTestCase.java69 final LayoutInflater inflater = LayoutInflater.from(mActivityTestRule.getActivity());
77 final LayoutInflater inflater = LayoutInflater.from(mActivityTestRule.getActivity());
86 LayoutInflater inflater = LayoutInflater.from(mActivityTestRule.getActivity());
102 LayoutInflater inflater = LayoutInflater.from(activity)
198 LayoutInflater inflater = LayoutInflater.from(mActivityTestRule.getActivity());
206 LayoutInflater inflater = LayoutInflater.from(mActivityTestRule.getActivity());
/frameworks/support/emoji/core/src/main/java/androidx/emoji/text/
H A DEmojiCompat.java502 * Handles onKeyDown commands from a {@link KeyListener} and if {@code keyCode} is one of
504 * {@link EmojiSpan} from an {@link Editable}. Returns {@code true} if an {@link EmojiSpan} is
531 * Handles deleteSurroundingText commands from {@link InputConnection} and tries to delete an
532 * {@link EmojiSpan} from an {@link Editable}. Returns {@code true} if an {@link EmojiSpan} is
550 @IntRange(from = 0) final int beforeLength, @IntRange(from = 0) final int afterLength,
589 @IntRange(from = 0) final int metadataVersion) {
611 @IntRange(from = 0) final int length = charSequence == null ? 0 : charSequence.length();
643 @IntRange(from = 0) final int start, @IntRange(from
[all...]
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/
H A DNetworkDetail.java59 // True if the SSID is potentially from a hidden network
81 * 802.11 Standard (calculated from Capabilities and Supported Rates)
169 bssLoad.from(ie);
172 htOperation.from(ie);
175 vhtOperation.from(ie);
178 interworking.from(ie);
181 roamingConsortium.from(ie);
184 vsa.from(ie);
187 extendedCapabilities.from(ie);
190 trafficIndicationMap.from(i
[all...]
/frameworks/base/core/java/com/android/internal/util/
H A DNotificationColorUtil.java160 * @param context The context to load the drawable from.
293 * @param color the color to start searching from.
331 * @param color the color to start searching from.
363 * @param color the color to start searching from.
429 * @param color the color to start searching from
449 return String.format("from %.2f:1 to %.2f:1",
510 * @param amount the amount to lighten the color from 0 to 100. This corresponds to the L
580 * @param amount the amount from 1 to 100 how much to modify the color
627 * Framework copy of functions needed from android.support.v4.graphics.ColorUtils.
674 @FloatRange(from
[all...]
/frameworks/support/room/compiler/src/test/kotlin/androidx/room/processor/
H A DQueryMethodProcessorTest.kt106 @Query("SELECT * from User")
120 @Query("SELECT * from User where uid = :x")
138 @Query("SELECT * from User where uid in (:ids)")
157 @Query("SELECT uid from User where uid = :id")
172 @Query("SELECT uid from User where uid = :id")
188 @Query("SELECT uid from User where uid = :id OR uid = :id")
206 @Query("SELECT uid from User where uid = :id OR uid = :uid")
227 @Query("SELECT uid from User where name = :bar AND uid = :id OR uid = :uid")
250 @Query("SELECT uid from User where name = :bar")
267 @Query("select * from Use
[all...]
/frameworks/base/core/java/android/service/textclassifier/
H A DTextClassifierService.java102 TextSelection.Options.from(sessionId, request), mCancellationSignal,
136 TextClassification.Options.from(sessionId, request), mCancellationSignal,
167 request.getText(), TextLinks.Options.from(sessionId, request),
228 * associated confidence scores. The entity types are ordered from highest to lowest scoring.
245 @IntRange(from = 0) int selectionStartIndex,
246 @IntRange(from = 0) int selectionEndIndex,
279 @IntRange(from = 0) int startIndex,
280 @IntRange(from = 0) int endIndex,

Completed in 1054 milliseconds

1234567891011>>