Searched refs:clause (Results 1 - 7 of 7) sorted by relevance

/packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
H A DStrSegmentClause.java20 * The container class of {@link StrSegment} which includes a clause information for Japanese IME.
26 public WnnClause clause; field in class:StrSegmentClause
31 * @param clause The clause
35 public StrSegmentClause(WnnClause clause, int from, int to) { argument
36 super(clause.candidate, from, to);
37 this.clause = clause;
H A DWnnSentence.java61 WnnClause clause = ci.next();
62 candidate.append(clause.candidate);
80 * @param clause The clauses of this sentence
82 public WnnSentence(String input, WnnClause clause) { argument
83 this.id = clause.id;
84 this.candidate = clause.candidate;
86 this.frequency = clause.frequency;
87 this.partOfSpeech = clause.partOfSpeech;
88 this.attribute = clause.attribute;
91 this.elements.add(clause);
100 WnnSentence(WnnSentence prev, WnnClause clause) argument
[all...]
H A DOpenWnnJAJP.java98 /** Highlight color style for the converted clause */
187 /** Definition for {@code EngineState.convertType} (consecutive clause conversion) */
239 * Returns whether current type of conversion is consecutive clause(RENBUNSETSU) conversion.
241 * @return {@code true} if current type of conversion is consecutive clause conversion.
361 /** Number of committed clauses on consecutive clause conversion */
1538 /* start consecutive clause conversion if Japanese mode */
1646 mCommitCount = 0; /* retry consecutive clause conversion if necessary. */
1683 mCommitCount = 0; /* retry consecutive clause conversion if necessary. */
2493 * Start consecutive clause conversion or EISU-KANA conversion mode.
2629 * Memory a clause whic
[all...]
/packages/providers/ContactsProvider/src/com/android/providers/contacts/util/
H A DDbQueryUtils.java33 /** Returns a WHERE clause asserting equality of a field to a value. */
38 /** Returns a WHERE clause asserting equality of a field to a value. */
43 /** Returns a WHERE clause asserting in-equality of a field to a value. */
49 StringBuilder clause = new StringBuilder();
50 clause.append("(");
51 clause.append(field);
52 clause.append(" ").append(operator).append(" ");
53 DatabaseUtils.appendEscapedSQLString(clause, value);
54 clause.append(")");
55 return clause
[all...]
H A DSelectionBuilder.java25 * Builds a selection clause by concatenating several clauses with AND.
42 * Adds a new clause to the selection. Nothing is added if the supplied clause
45 public SelectionBuilder addClause(String clause) { argument
46 if (!TextUtils.isEmpty(clause)) {
47 mWhereClauses.add(clause);
53 * Returns a combined selection clause with AND of all clauses added using
54 * {@link #addClause(String)}. Returns null if no clause has been added or
/packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/JAJP/
H A DOpenWnnClauseConverterJAJP.java43 /** connect matrix for generating a clause */
52 /** work area for consecutive clause conversion */
57 /** part of speech (end of clause/not end of sentence) */
59 /** part of speech (end of clause/any place) */
64 /** cost value of a clause */
118 * Kana-to-Kanji conversion (single clause).
120 * This method execute single clause conversion.
138 /* try single clause conversion */
146 * Consecutive clause conversion.
149 * @return The result of consecutive clause conversio
[all...]
H A DOpenWnnEngineJAJP.java105 * (0:prefix search from the dictionary, 1:single clause converter, 2:Kana converter)
112 /** Converter for single/consecutive clause conversion */
121 /** Whether displaying single clause candidates or not */
124 /** A result of consecutive clause conversion */
208 /* skip to single clause conversion if single clause conversion mode */
232 /* get candidates by single clause conversion */
240 /* end of candidates by single clause conversion */
454 WnnClause clause = (WnnClause)it.next();
455 int len = clause
[all...]

Completed in 233 milliseconds