OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:CompatUtils
(Results
1 - 15
of
15
) sorted by null
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/compat/
ViewCompatUtils.java
26
public static final int LAYOUT_DIRECTION_LTR = (Integer)
CompatUtils
.getFieldValue(null, 0x0,
27
CompatUtils
.getField(View.class, "LAYOUT_DIRECTION_LTR"));
28
public static final int LAYOUT_DIRECTION_RTL = (Integer)
CompatUtils
.getFieldValue(null, 0x1,
29
CompatUtils
.getField(View.class, "LAYOUT_DIRECTION_RTL"));
34
private static final Method METHOD_getPaddingEnd =
CompatUtils
.getMethod(
36
private static final Method METHOD_setPaddingRelative =
CompatUtils
.getMethod(
39
private static final Method METHOD_getLayoutDirection =
CompatUtils
.getMethod(
50
return (Integer)
CompatUtils
.invoke(view, 0, METHOD_getPaddingEnd);
59
CompatUtils
.invoke(view, null, METHOD_setPaddingRelative, start, top, end, bottom);
66
return (Integer)
CompatUtils
.invoke(view, 0, METHOD_getLayoutDirection)
[
all
...]
ConnectivityManagerCompatUtils.java
26
private static final Method METHOD_isActiveNetworkMetered =
CompatUtils
.getMethod(
30
return (Boolean)
CompatUtils
.invoke(manager,
InputMethodServiceCompatUtils.java
27
CompatUtils
.getMethod(InputMethodService.class, "enableHardwareAcceleration");
34
return (Boolean)
CompatUtils
.invoke(ims, false /* defaultValue */,
IntentCompatUtils.java
25
(String)
CompatUtils
.getFieldValue(null /* receiver */, null /* defaultValue */,
26
CompatUtils
.getField(Intent.class, "ACTION_USER_INITIALIZE"));
SettingsSecureCompatUtils.java
24
private static final Field FIELD_ACCESSIBILITY_SPEAK_PASSWORD =
CompatUtils
.getField(
34
public static final String ACCESSIBILITY_SPEAK_PASSWORD = (String)
CompatUtils
.getFieldValue(
DownloadManagerCompatUtils.java
26
private static final Method METHOD_setAllowedOverMetered =
CompatUtils
.getMethod(
31
return (DownloadManager.Request)
CompatUtils
.invoke(request,
SuggestionsInfoCompatUtils.java
27
CompatUtils
.getField(SuggestionsInfo.class, "RESULT_ATTR_HAS_RECOMMENDED_SUGGESTIONS");
29
(Integer)
CompatUtils
.getFieldValue(null /* receiver */, null /* defaultValue */,
ActivityManagerCompatUtils.java
27
private static final Method METHOD_isLowRamDevice =
CompatUtils
.getMethod(
40
sBoolean = (Boolean)
CompatUtils
.invoke(am, false, METHOD_isLowRamDevice);
InputMethodManagerCompatWrapper.java
28
private static final Method METHOD_switchToNextInputMethod =
CompatUtils
.getMethod(
38
return (Boolean)
CompatUtils
.invoke(mImm, false /* defaultValue */,
TextViewCompatUtils.java
28
CompatUtils
.getMethod(TextView.class, "setCompoundDrawablesRelativeWithIntrinsicBounds",
41
CompatUtils
.invoke(textView, null, METHOD_setCompoundDrawablesRelativeWithIntrinsicBounds,
EditorInfoCompatUtils.java
26
private static final Field FIELD_IME_FLAG_FORCE_ASCII =
CompatUtils
.getField(
28
private static final Integer OBJ_IME_FLAG_FORCE_ASCII = (Integer)
CompatUtils
.getFieldValue(
InputMethodSubtypeCompatUtils.java
30
CompatUtils
.getConstructor(InputMethodSubtype.class,
52
return (InputMethodSubtype)
CompatUtils
.newInstance(CONSTRUCTOR_INPUT_METHOD_SUBTYPE,
UserDictionaryCompatUtils.java
28
private static final Method METHOD_addWord =
CompatUtils
.getMethod(Words.class, "addWord",
35
CompatUtils
.invoke(Words.class, null, METHOD_addWord, context, word, freq, shortcut,
CompatUtils.java
26
public final class
CompatUtils
{
27
private static final String TAG =
CompatUtils
.class.getSimpleName();
29
private
CompatUtils
() {
SuggestionSpanUtils.java
37
public static final Field FIELD_FLAG_AUTO_CORRECTION =
CompatUtils
.getField(
39
public static final Integer OBJ_FLAG_AUTO_CORRECTION = (Integer)
CompatUtils
.getFieldValue(
Completed in 215 milliseconds