Searched refs:from (Results 251 - 275 of 886) sorted by relevance

<<11121314151617181920>>

/frameworks/support/room/compiler/src/test/kotlin/androidx/room/solver/
H A DTypeAdapterStoreTest.kt91 assertThat(composite.intoStatementConverter?.from?.typeName(),
188 val adapter = store.findColumnTypeAdapter(binders[0].from, null)
203 val converter = store.findTypeConverter(binders[0].from,
215 val adapter = store.findColumnTypeAdapter(binders[0].from, null)
218 val stmtBinder = store.findStatementValueBinder(binders[0].from, null)
221 val converter = store.findTypeConverter(binders[0].from,
389 addStatement("$L = $T.toBoolean($L)", outputVarName, from, inputVarName)
/frameworks/base/core/java/android/widget/
H A DRelativeLayout.java200 * Used to indicate left/right/top/bottom should be inferred from constraints
840 // This is the default case. For RTL we start from the right and for LTR we start
841 // from the left. This will give LEFT/TOP for LTR and RIGHT/TOP for RTL.
1189 * To learn more about layout parameters and how they differ from typical view attributes,
1220 @ViewDebug.IntToString(from = ABOVE, to = "above"),
1221 @ViewDebug.IntToString(from = ALIGN_BASELINE, to = "alignBaseline"),
1222 @ViewDebug.IntToString(from = ALIGN_BOTTOM, to = "alignBottom"),
1223 @ViewDebug.IntToString(from = ALIGN_LEFT, to = "alignLeft"),
1224 @ViewDebug.IntToString(from = ALIGN_PARENT_BOTTOM, to = "alignParentBottom"),
1225 @ViewDebug.IntToString(from
[all...]
H A DTimePicker.java176 public void setHour(@IntRange(from = 0, to = 23) int hour) {
196 public void setMinute(@IntRange(from = 0, to = 59) int minute) {
366 void setHour(@IntRange(from = 0, to = 23) int hour);
369 void setMinute(@IntRange(from = 0, to = 59) int minute);
372 void setDate(@IntRange(from = 0, to = 23) int hour,
373 @IntRange(from = 0, to = 59) int minute);
H A DSimpleExpandableListAdapter.java32 * that defines the views used to display a group, and a mapping from keys in
64 * @param groupFrom A list of keys that will be fetched from the Map
80 * @param childFrom A list of keys that will be fetched from the Map
109 * @param groupFrom A list of keys that will be fetched from the Map
128 * @param childFrom A list of keys that will be fetched from the Map
158 * @param groupFrom A list of keys that will be fetched from the Map
177 * @param childFrom A list of keys that will be fetched from the Map
243 private void bindView(View view, Map<String, ?> data, String[] from, int[] to) { argument
249 v.setText((String)data.get(from[i]));
/frameworks/base/libs/hwui/utils/
H A DVectorDrawableUtils.cpp88 void VectorDrawableUtils::interpolatePaths(PathData* outData, const PathData& from, argument
90 outData->points.resize(from.points.size());
91 outData->verbSizes = from.verbSizes;
92 outData->verbs = from.verbs;
94 for (size_t i = 0; i < from.points.size(); i++) {
95 outData->points[i] = from.points[i] * (1 - fraction) + to.points[i] * fraction;
179 case 'l': // lineto - Draw a line from the current point (relative)
184 case 'L': // lineto - Draw a line from the current point
197 case 'v': // vertical lineto - Draws a vertical line from the current point (r)
201 case 'V': // vertical lineto - Draws a vertical line from th
[all...]
/frameworks/support/compat/src/main/java/androidx/core/text/
H A DPrecomputedTextCompat.java482 public @IntRange(from = 0) int getParagraphCount() {
493 public @IntRange(from = 0) int getParagraphStart(@IntRange(from = 0) int paraIndex) {
505 public @IntRange(from = 0) int getParagraphEnd(@IntRange(from = 0) int paraIndex) {
515 private int findParaIndex(@IntRange(from = 0) int pos) {
554 "MetricAffectingSpan can not be removed from PrecomputedText.");
/frameworks/support/jetifier/jetifier/processor/src/test/kotlin/com/android/tools/build/jetifier/processor/transform/resource/
H A DXmlResourcesTransformerTest.kt212 RewriteRule(from = "android/support/v21/(.*)", to = "ignore")),
243 from = "android/support/v7/preference",
269 from = "android/support/v7/preference",
/frameworks/base/core/java/android/text/
H A DDynamicLayout.java66 @IntRange(from = 0) int width) {
153 public Builder setLineSpacing(float spacingAdd, @FloatRange(from = 0.0) float spacingMult) {
176 * displaying the text (which is needed to avoid text from consecutive lines running into
194 * Set the width as used for ellipsizing purposes, if it differs from the normal layout
202 public Builder setEllipsizedWidth(@IntRange(from = 0) int ellipsizedWidth) {
310 @IntRange(from = 0) int width, @NonNull Alignment align,
311 @FloatRange(from = 0.0) float spacingmult, float spacingadd,
323 @IntRange(from = 0) int width, @NonNull Alignment align,
324 @FloatRange(from = 0.0) float spacingmult, float spacingadd,
336 @IntRange(from
[all...]
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/aware/
H A DWifiAwareNativeApi.java55 * Translates Wi-Fi Aware requests from the framework to the HAL (HIDL).
646 // TODO: b/69428593 remove correction factors once HAL converted from CM to MM
688 * @param messageId Arbitary integer from host (not sent to HAL - useful for
951 * Responds to a data request from a peer. Security is provided by either PMK or Passphrase (not
957 * @param ndpId The NDP (Aware data path) ID. Obtained from the request callback.
958 * @param interfaceName The interface on which the data path will be setup. Obtained from the
1112 * @param from The input byte[] to convert from.
1113 * @param to An optional ArrayList<> to fill in from 'from'
1117 convertNativeByteArrayToArrayList(byte[] from, ArrayList<Byte> to) argument
1133 copyArray(byte[] from, byte[] to) argument
[all...]
/frameworks/base/core/java/android/text/style/
H A DBulletSpan.java37 * BulletSpans must be attached from the first character to the last character of a single
116 public BulletSpan(int gapWidth, @ColorInt int color, @IntRange(from = 0) int bulletRadius) {
121 @IntRange(from = 0) int bulletRadius) {
129 * Creates a {@link BulletSpan} from a parcel.
/frameworks/base/core/java/android/view/textclassifier/
H A DTextClassification.java160 @IntRange(from = 0)
166 * Returns the entity at the specified index. Entities are ordered from high confidence
178 * Returns the confidence score for the specified entity. The value ranges from
182 @FloatRange(from = 0.0, to = 1.0)
199 * first {@link RemoteAction} (if one exists) when this object is read from a parcel.
213 * first {@link RemoteAction} (if one exists) when this object is read from a parcel.
227 * object is read from a parcel.
241 * {@link RemoteAction} (if one exists) when this object is read from a parcel.
377 * @param confidenceScore a value from 0 (low confidence) to 1 (high confidence).
384 @FloatRange(from
744 public static Options from(TextClassificationSessionId sessionId, Request request) { method in class:TextClassification.Options
[all...]
/frameworks/base/core/java/com/android/internal/inputmethod/
H A DLocaleUtils.java51 @IntRange(from=1, to=3)
116 @IntRange(from=-1, to=1)
138 * one best-match item from {@code source} to {@code dest}. For example, if
141 * French locale from {@code source} to {@code dest}. Here the best matching English locale
142 * will be searched from {@code source} based on matching score. For the score design, see
146 * @param extractor Type converter from the source items to {@link Locale} object.
/frameworks/base/core/java/com/android/internal/view/menu/
H A DBaseMenuPresenter.java57 mSystemInflater = LayoutInflater.from(context);
65 mInflater = LayoutInflater.from(mContext);
136 * @param parent Parent to filter from
166 * with data from the item parameter.
/frameworks/base/core/jni/
H A Dandroid_text_Hyphenator.cpp75 static void addHyphenatorAlias(const std::string& from, const std::string& to) { argument
76 minikin::addHyphenatorAlias(from, to);
130 // English locales that fall back to en-US. The data is from CLDR. It's all English locales,
131 // minus the locales whose parent is en-001 (from supplementalData.xml, under <parentLocales>).
132 // TODO: Figure out how to get this from ICU.
156 // Data is from CLDR's likelySubtags.xml.
/frameworks/base/core/tests/coretests/apks/install_jni_lib/
H A DAndroid.mk29 # from installing library to /system/lib
/frameworks/base/data/keyboards/
H A Dkeyboards.mk15 # Warning: this is actually a product definition, to be inherited from
/frameworks/base/tests/UsageStatsTest/src/com/android/tests/usagestats/
H A DUsageLogActivity.java127 convertView = LayoutInflater.from(UsageLogActivity.this)
131 convertView = LayoutInflater.from(UsageLogActivity.this)
/frameworks/opt/setupwizard/library/gingerbread/test/robotest/src/com/android/setupwizardlib/items/
H A DExpandableSwitchItemTest.java133 LayoutInflater.from(application).inflate(mItem.getLayoutResource(), null);
153 (ViewGroup) LayoutInflater.from(application)
/frameworks/opt/setupwizard/library/main/src/com/android/setupwizardlib/
H A DTemplateLayout.java42 * inflating this layout from XML, the {@code android:layout} and {@code suwContainer} attributes
113 * Get a {@link Mixin} from this template registered earlier in
139 final LayoutInflater inflater = LayoutInflater.from(getContext());
188 inflater = LayoutInflater.from(
205 * views retrieved from findViewById, or other view operations that need to be done in code.
/frameworks/opt/setupwizard/library/test/instrumentation/src/com/android/setupwizardlib/test/
H A DGlifLayoutTest.java60 LayoutInflater inflater = LayoutInflater.from(mContext);
69 LayoutInflater inflater = LayoutInflater.from(mContext);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/util/
H A DVoicemailNotificationSettingsUtil.java91 * Migrate voicemail settings from {@link #OLD_VIBRATE_WHEN_KEY} or
94 * TODO: Add helper which migrates settings from old version to new version.
99 TelephonyManager telephonyManager = TelephonyManager.from(context);
131 * Migrate voicemail settings from OLD_VOICEMAIL_NOTIFICATION_RINGTONE_SHARED_PREFS_KEY.
133 * TODO: Add helper which migrates settings from old version to new version.
138 TelephonyManager telephonyManager = TelephonyManager.from(context);
/frameworks/rs/script_api/
H A Drs_quaternion.spec71 summary: Get a rotation matrix from a quaternion
73 Computes a rotation matrix from the normalized quaternion.
132 Creates a quaternion from its four components or from another quaternion.
237 arg: rs_quaternion* q, "Result quaternion from the interpolation."
/frameworks/support/dynamic-animation/src/main/java/androidx/dynamicanimation/animation/
H A DSpringForce.java136 @FloatRange(from = 0.0, fromInclusive = false) float stiffness) {
170 public SpringForce setDampingRatio(@FloatRange(from = 0.0) float dampingRatio) {
/frameworks/support/frameworks/support/samples/SupportDesignDemos/src/main/java/com/example/android/support/design/widget/
H A DBottomSheetDynamicContent.java92 mBehavior = BottomSheetBehavior.from(list);
138 return new ViewHolder(LayoutInflater.from(parent.getContext()), parent);
/frameworks/support/leanback/src/main/java/androidx/leanback/widget/
H A DActionPresenterSelector.java96 View v = LayoutInflater.from(parent.getContext())
113 View v = LayoutInflater.from(parent.getContext())

Completed in 3962 milliseconds

<<11121314151617181920>>