OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:composingtext
(Results
1 - 17
of
17
) sorted by null
/packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/JAJP/
OpenWnnEngineJAJP.java
26
import jp.co.omronsoft.openwnn.
ComposingText
;
311
* Set the search key and the search mode from {@link
ComposingText
}.
317
private int setSearchKey(
ComposingText
text, int maxLen) {
318
String input = text.toString(
ComposingText
.LAYER1);
333
mInputRomaji = text.toString(
ComposingText
.LAYER0);
378
public int predict(
ComposingText
text, int minLen, int maxLen) {
410
public int convert(
ComposingText
text) {
419
int cursor = text.getCursor(
ComposingText
.LAYER1);
424
input = text.toString(
ComposingText
.LAYER1, 0, cursor - 1);
432
input = text.toString(
ComposingText
.LAYER1, cursor, text.size(ComposingText.LAYER1) - 1)
[
all
...]
RomkanFullKatakana.java
20
import jp.co.omronsoft.openwnn.
ComposingText
;
155
public boolean convert(
ComposingText
text) {
166
public static boolean convert(
ComposingText
text, HashMap<String, String> table) {
196
text.replaceStrSegment(
ComposingText
.LAYER1, out, MAX_LENGTH - start);
Romkan.java
162
public boolean convert(
ComposingText
text) {
192
text.replaceStrSegment(
ComposingText
.LAYER1, out, MAX_LENGTH - start);
RomkanHalfKatakana.java
147
public boolean convert(
ComposingText
text) {
/packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
WnnEngine.java
61
public int predict(
ComposingText
text, int minLen, int maxLen);
70
* The result of conversion is set into the layer 2 in the {@link
ComposingText
}.
76
public int convert(
ComposingText
text);
97
* After {@link #predict(
ComposingText
, int, int)} or {@link #makeCandidateListOf(int)} or
100
* frequency order for {@link #predict(
ComposingText
, int, int)} and
182
* conversion({@link #convert(
ComposingText
)}).
OpenWnnJAJP.java
364
/** Target layer of the {@link
ComposingText
} */
467
mComposingText = new
ComposingText
();
633
if ((mComposingText.size(
ComposingText
.LAYER1) != 0)
648
if (isNotComposing && (mComposingText.size(
ComposingText
.LAYER1) != 0)) {
750
mComposingText.setCursor(
ComposingText
.LAYER1,
751
mComposingText.toString(
ComposingText
.LAYER1).length());
[
all
...]
LetterConverter.java
41
public boolean convert(
ComposingText
text);
StrSegment.java
23
* It is used to represent the layers of the composing text ({@link
ComposingText
}).
SymbolList.java
189
public int predict(
ComposingText
text, int minLen, int maxLen) {
202
public int convert(
ComposingText
text) {
ComposingText.java
34
public class
ComposingText
{
68
public
ComposingText
() {
82
Log.d("OpenWnn", "
ComposingText
["+i+"]");
OpenWnnEvent.java
44
* This event makes {@link OpenWnn} to display conversion candidates from {@link
ComposingText
}.
51
* This event makes {@link OpenWnn} to display prediction candidates from {@link
ComposingText
}.
OpenWnn.java
57
protected
ComposingText
mComposingText = null;
OpenWnnEN.java
167
mComposingText = new
ComposingText
();
450
updateComposingText(
ComposingText
.LAYER1);
[
all
...]
/packages/inputmethods/OpenWnn/res/xml/
debug_tool_engine.xml
21
<!-- For int predict(
ComposingText
text, int minLen, int maxLen) -->
81
<!-- For int predict(
ComposingText
text, int minLen, int maxLen) -->
/packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/EN/
OpenWnnEngineEN.java
252
public int predict(
ComposingText
text, int minLen, int maxLen) {
283
public int convert(
ComposingText
text) {
/frameworks/base/core/java/android/view/inputmethod/
BaseInputConnection.java
38
class
ComposingText
implements NoCopySpan {
51
static final Object COMPOSING = new
ComposingText
();
/frameworks/base/
preloaded-classes
[
all
...]
Completed in 189 milliseconds