Searched refs:from (Results 51 - 75 of 511) sorted by relevance

1234567891011>>

/frameworks/opt/telephony/src/java/com/google/android/mms/pdu/
H A DReadRecInd.java26 * @param from the from value
34 public ReadRecInd(EncodedStringValue from, argument
41 setFrom(from);
/frameworks/support/v17/preference-leanback/
H A Dbuild.gradle70 from variant.javaCompile.destinationDir
71 from 'LICENSE.txt'
81 from 'build/docs/javadoc'
86 from android.sourceSets.main.java.srcDirs
/frameworks/support/v7/appcompat/src/android/support/v7/widget/
H A DThemedSpinnerAdapter.java112 mInflater = LayoutInflater.from(context);
116 * Should be called from your adapter's
129 mDropDownInflater = LayoutInflater.from(context);
134 * Should be called from your adapter's {@link ThemedSpinnerAdapter#getDropDownViewTheme()},
135 * returning the value returned from this method.
144 * from your {@link SpinnerAdapter#getDropDownView(int, View, ViewGroup)}.
/frameworks/support/v7/preference/
H A Dbuild.gradle70 from variant.javaCompile.destinationDir
71 from 'LICENSE.txt'
81 from 'build/docs/javadoc'
86 from android.sourceSets.main.java.srcDirs
/frameworks/base/core/java/android/app/
H A DActionBar.java66 * object obtained from the Activity can be used to control either configuration transparently.</p>
70 * select items accessible directly from the action bar as "action items". You can also
86 * same space, the {@link android.view.ActionMode} APIs are distinct and independent from those for
683 * Remove a tab from the action bar. If the removed tab was selected it will be deselected
696 * Remove a tab from the action bar. If the removed tab was selected it will be deselected
709 * Remove all tabs from the action bar and deselect the current tab.
863 * <p>If you pass <code>null</code> to this method, the default drawable from the theme
883 * <p>If you pass <code>0</code> to this method, the default drawable from the theme
1001 * <p>The action bar's elevation is the distance it is placed from its parent surface. Higher
1016 * <p>The action bar's elevation is the distance it is placed from it
[all...]
/frameworks/base/core/java/android/print/
H A DPrintDocumentInfo.java119 private @IntRange(from = -1) int mPageCount;
133 * @param prototype from which to clone.
145 * @param parcel Data from which to initialize.
172 public @IntRange(from = -1) int getPageCount() {
194 public @IntRange(from = 0) long getDataSize() {
205 public void setDataSize(@IntRange(from = 0) long dataSize) {
324 public @NonNull Builder setPageCount(@IntRange(from = -1) int pageCount) {
/frameworks/data-binding/compiler/src/main/java/android/databinding/tool/reflection/
H A DModelMethod.java172 public static boolean isImplicitConversion(ModelClass from, ModelClass to) { argument
173 if (from != null && to != null && from.isPrimitive() && to.isPrimitive()) {
174 if (from.isBoolean() || to.isBoolean() || to.isChar()) {
177 int fromConversionLevel = getImplicitConversionLevel(from);
/frameworks/support/v7/palette/src/androidTest/java/android/support/v7/graphics/
H A DBucketTests.java44 Palette.from(sample).generate();
51 Palette p = Palette.from(loadSampleBitmap()).generate();
63 Palette p = Palette.from(swatches);
124 final Palette palette = Palette.from(bitmap).generate();
139 final Palette palette = Palette.from(bitmap)
H A DSwatchTests.java43 final Palette p = Palette.from(loadSampleBitmap()).generate();
53 final Palette p = Palette.from(loadSampleBitmap()).generate();
63 final Palette p = Palette.from(loadSampleBitmap()).generate();
H A DMaxColorsTest.java54 Palette newPalette = Palette.from(loadSampleBitmap())
/frameworks/base/core/java/com/android/internal/util/
H A DNotificationColorUtil.java157 * @param context The context to load the drawable from.
235 * @param color the color to start searching from.
295 return String.format("from %.2f:1 to %.2f:1",
344 * Framework copy of functions needed from android.support.v4.graphics.ColorUtils.
391 @FloatRange(from = 0.0, to = 1.0)
447 public static void RGBToLAB(@IntRange(from = 0x0, to = 0xFF) int r,
448 @IntRange(from = 0x0, to = 0xFF) int g, @IntRange(from = 0x0, to = 0xFF) int b,
493 public static void RGBToXYZ(@IntRange(from = 0x0, to = 0xFF) int r,
494 @IntRange(from
[all...]
/frameworks/base/media/java/android/media/session/
H A DPlaybackState.java123 * Indicates this session supports the play from media id command.
130 * Indicates this session supports the play from search command.
144 * Indicates this session supports the play from URI command.
158 * Indicates this session supports the prepare from media id command.
165 * Indicates this session supports the prepare from search command.
172 * Indicates this session supports the prepare from URI command.
390 * point that can be reached from the current position using only buffered
836 * Creates a builder with the same initial values as those in the from
839 * @param from The state to use for initializing the builder.
841 public Builder(PlaybackState from) { argument
[all...]
/frameworks/base/core/java/android/content/
H A DUndoManager.java690 int findPrevState(ArrayList<UndoState> states, UndoOwner[] owners, int from) { argument
693 if (from == -1) {
694 from = N-1;
696 if (from >= N) {
700 return from;
703 while (from >= 0) {
704 UndoState state = states.get(from);
706 return from;
708 from--;
714 int findNextState(ArrayList<UndoState> states, UndoOwner[] owners, int from) { argument
[all...]
/frameworks/data-binding/integration-tests/TestApp/app/src/androidTestApi7/java/android/databinding/testapp/
H A DObservableArrayListTest.java59 public void onItemRangeMoved(ObservableList sender, int from, int to, int count) {
60 mNotifications.add(new ListChange(MOVE, from, to, count));
74 this.from = 0;
79 public ListChange(int change, int from, int to, int count) { argument
80 this.from = from;
91 public final int from; field in class:ObservableArrayListTest.ListChange
/frameworks/rs/api/
H A Drs_convert.spec20 The functions below convert from a numerical vector type to another, or from one color
34 Converts a vector from one numerical type to another. The conversion are done entry per entry.
102 summary: Create a uchar4 RGBA from floats
148 summary: Create a float4 RGBA from uchar4
164 Converts a color from a YUV representation to RGBA.
/frameworks/av/media/libstagefright/rtsp/
H A DARTPAssembler.h47 static void CopyTimes(const sp<ABuffer> &to, const sp<ABuffer> &from);
/frameworks/base/core/java/android/speech/tts/
H A DSynthesisCallback.java75 @IntRange(from=1,to=2) int channelCount);
122 * @param errorCode Error code to pass to the client. One of the ERROR_ values from
133 * Useful for checking if a fallback from network request is possible.
143 * Useful for checking if a fallback from network request is possible.
H A DUtteranceProgressListener.java13 * The callbacks specified in this method can be called from multiple threads.
58 * @param errorCode one of the ERROR_* codes from {@link TextToSpeech}
65 * Called when an utterance has been stopped while in progress or flushed from the
130 static UtteranceProgressListener from( method in class:UtteranceProgressListener
/frameworks/data-binding/samples/BindingDemo/app/src/main/java/com/android/example/bindingdemo/
H A DDataBoundAdapter.java22 T binder = DataBindingUtil.inflate(LayoutInflater.from(viewGroup.getContext()), mLayoutId,
/frameworks/opt/bitmap/src/com/android/bitmap/
H A DResourceRequestKey.java25 * Simple RequestKey for decoding from a resource id.
36 public static ResourceRequestKey from(Resources res, int resId) { method in class:ResourceRequestKey
/frameworks/support/annotations/src/android/support/annotation/
H A DFloatRange.java33 * &#64;FloatRange(from=0.0,to=1.0)
44 double from() default Double.NEGATIVE_INFINITY;
49 /** Whether the from value is included in the range */
/frameworks/support/design/tests/src/android/support/design/widget/
H A DBottomSheetBehaviorActivity.java43 mBehavior = BottomSheetBehavior.from(mBottomSheet);
H A DTabLayoutTest.java45 LayoutInflater.from(mActivityTestRule.getActivity());
81 LayoutInflater.from(mActivityTestRule.getActivity());
102 LayoutInflater.from(mActivityTestRule.getActivity());
124 LayoutInflater.from(mActivityTestRule.getActivity());
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DDividerPresenter.java43 View headerView = LayoutInflater.from(parent.getContext())
H A DListRowView.java42 LayoutInflater inflater = LayoutInflater.from(context);

Completed in 610 milliseconds

1234567891011>>