OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mTextsSet
(Results
1 - 9
of
9
) sorted by null
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
KeyStyle.java
25
private final KeyboardTextsSet
mTextsSet
;
33
mTextsSet
= textsSet;
39
return
mTextsSet
.resolveTextReference(a.getString(index));
47
final String text =
mTextsSet
.resolveTextReference(a.getString(index));
KeyboardParams.java
76
public final KeyboardTextsSet
mTextsSet
= new KeyboardTextsSet();
78
public final KeyStylesSet mKeyStyles = new KeyStylesSet(
mTextsSet
);
KeyStylesSet.java
43
private final KeyboardTextsSet
mTextsSet
;
50
mTextsSet
= textsSet;
212
final DeclaredKeyStyle style = new DeclaredKeyStyle(parentStyleName,
mTextsSet
, mStyles);
KeyboardBuilder.java
284
params.
mTextsSet
.setLocale(params.mId.getLocale(), mContext);
[
all
...]
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/internal/
MoreKeySpecStringReferenceTests.java
32
private final KeyboardTextsSet
mTextsSet
= new KeyboardTextsSet();
42
mTextsSet
.setLocale(TEST_LOCALE, testRes, testPackageName);
47
final String resolvedActual =
mTextsSet
.resolveTextReference(value);
64
mTextsSet
.resolveTextReference(null), null);
69
mTextsSet
.resolveTextReference("!string/empty_string"), null);
MoreKeySpecSplitTests.java
32
private final KeyboardTextsSet
mTextsSet
= new KeyboardTextsSet();
42
mTextsSet
.setLocale(TEST_LOCALE, targetRes, targetPackageName);
69
final String resolvedActual =
mTextsSet
.resolveTextReference(value);
KeySpecParserTests.java
32
final String keySpecResolved =
mTextsSet
.resolveTextReference(keySpec);
KeySpecParserTestsBase.java
31
protected final KeyboardTextsSet
mTextsSet
= new KeyboardTextsSet();
50
mTextsSet
.setLocale(TEST_LOCALE, getContext());
MoreKeySpecTests.java
35
final String labelResolved =
mTextsSet
.resolveTextReference(moreKeySpec);
Completed in 1275 milliseconds