OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:CompatUtils
(Results
1 - 4
of
4
) sorted by null
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/compat/
TextViewCompatUtils.java
28
CompatUtils
.getMethod(TextView.class, "setCompoundDrawablesRelativeWithIntrinsicBounds",
41
CompatUtils
.invoke(textView, null, METHOD_setCompoundDrawablesRelativeWithIntrinsicBounds,
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
() {
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
...]
Completed in 442 milliseconds