Searched defs:clause (Results 1 - 3 of 3) 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...]
/packages/providers/ContactsProvider/src/com/android/providers/contacts/util/
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

Completed in 145 milliseconds