HomeSort by relevance Sort by last modified time
    Searched full:clause (Results 1 - 25 of 330) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
StrSegmentClause.java 20 * The container class of {@link StrSegment} which includes a clause information for Japanese IME.
25 /** Clause information */
26 public WnnClause clause; field in class:StrSegmentClause
31 * @param clause The clause
35 public StrSegmentClause(WnnClause clause, int from, int to) {
36 super(clause.candidate, from, to);
37 this.clause = clause;
WnnClause.java 20 * The container class of a clause.
29 * @param candidate The string of the clause
30 * @param stroke The reading of the clause
31 * @param posTag The part of speech of the clause
32 * @param frequency The frequency of the clause
44 * @param stroke The reading of the clause
45 * @param stem The independent word part of the clause
59 * @param stroke The reading of the clause
60 * @param stem The independent word part of the clause
61 * @param fzk The ancillary word part of the clause
    [all...]
WnnSentence.java 61 WnnClause clause = ci.next(); local
62 candidate.append(clause.candidate);
80 * @param clause The clauses of this sentence
82 public WnnSentence(String input, WnnClause clause) {
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);
    [all...]
WnnEngine.java 66 * This method is used to consecutive/single clause convert in
71 * To get other candidates of each clause, call {@link #makeCandidateListOf(int)}.
181 * the clause which is in the result of consecutive clause
185 * @param clausePosition The position of a clause
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/JAJP/
OpenWnnClauseConverterJAJP.java 23 * The penWnn Clause Converter class for Japanese IME.
43 /** 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
323 WnnClause clause = null; local
    [all...]
OpenWnnEngineJAJP.java 102 * (0:prefix search from the dictionary, 1:single clause converter, 2:Kana converter)
109 /** Converter for single/consecutive clause conversion */
118 /** Whether displaying single clause candidates or not */
121 /** A result of consecutive clause conversion */
205 /* skip to single clause conversion if single clause conversion mode */
229 /* get candidates by single clause conversion */
237 /* end of candidates by single clause conversion */
451 WnnClause clause = (WnnClause)it.next(); local
452 int len = clause.stroke.length()
559 WnnClause clause = mConvertSentence.elements.get(clausePosition); local
    [all...]
  /frameworks/base/core/java/com/android/internal/content/
SelectionBuilder.java 28 * appended clause is combined using {@code AND}. This class is <em>not</em>
47 * Append the given selection clause to the internal state. Each clause is
57 // Shortcut when clause is empty
96 * Execute query using the current internal state as {@code WHERE} clause.
104 * Execute query using the current internal state as {@code WHERE} clause.
113 * Execute update using the current internal state as {@code WHERE} clause.
120 * Execute delete using the current internal state as {@code WHERE} clause.
  /frameworks/base/core/java/android/database/sqlite/
SQLiteQueryBuilder.java 84 * Append a chunk to the WHERE clause of the query. All chunks appended are surrounded
86 * WHERE clause looks like:
90 * @param inWhere the chunk of text to append to the WHERE clause.
103 * Append a chunk to the WHERE clause of the query. All chunks appended are surrounded
105 * WHERE clause looks like:
109 * @param inWhere the chunk of text to append to the WHERE clause. it will be escaped
163 * WHERE clause (excluding the WHERE itself). Passing null will
166 * GROUP BY clause (excluding the GROUP BY itself). Passing null
170 * clause (excluding the HAVING itself). Passing null will cause
173 * @param orderBy How to order the rows, formatted as an SQL ORDER BY clause
    [all...]
SQLiteAbortException.java 22 * or as the result of using the ABORT conflict clause.
  /external/libpng/contrib/visupng/
cexcept.h 127 the else clause is optional, the Catch clause is required. The
133 executed within the Try clause (typically within a function called
134 by the Try clause), and the exception is not caught by a nested
136 to the expression, and control will jump to the Catch clause. If no
138 the Catch clause is not executed.
146 IMPORTANT: Jumping into or out of a Try clause (for example via
149 into or out of a Catch clause is okay, and so is jumping around
150 inside a Try clause. In many cases where one is tempted to return
151 from a Try clause, it will suffice to use Throw, and then retur
    [all...]
  /cts/tools/signature-tools/src/signature/model/
IWildcardType.java 28 * extends clause. If no upper bounds are explicitly specified then
37 * clause. If no lower bounds are explicitly specified then null is returned
ITypeVariableDefinition.java 28 * extends clause. If no upper bounds are explicitly specified then
  /packages/apps/IM/src/com/android/im/app/
ContactsPickerActivity.java 118 StringBuilder clause = new StringBuilder(); local
119 clause.append(Imps.Contacts.USERNAME);
120 clause.append(" NOT IN (");
123 DatabaseUtils.appendValueToSql(clause, excluded[i]);
124 clause.append(',');
126 DatabaseUtils.appendValueToSql(clause, excluded[len - 1]);
127 clause.append(')');
128 return clause.toString();
  /dalvik/libcore/security/src/main/java/org/apache/harmony/security/
DefaultPolicyScanner.java 106 * the clause and collects result to the passed collection.
150 * Tries to read <i>keystore </i> clause fields. The expected syntax is
182 * Tries to read <i>grant </i> clause. <br>
185 * readPermissionEntries() method to read the permissions of this clause.
398 * Compound token representing <i>keystore </i> clause. See policy format
407 * The URL part of keystore clause.
412 * The typename part of keystore clause.
418 * Compound token representing <i>grant </i> clause. See policy format
427 * The signers part of grant clause. This is a comma-separated list of
433 * The codebase part of grant clause. This is an URL from which cod
    [all...]
  /dalvik/dx/tests/112-dex-return-jsr-result/
run 32 # Note: This has to be done before the test clause below.
45 # Note: This has to be done after the test clause above.
  /cts/tests/tests/text/src/android/text/cts/
SpannedStringTest.java 35 @ToBeFixed(bug = "1417734", explanation = "should add @throws clause into javadoc of " +
53 @ToBeFixed(bug = "1417734", explanation = "should add @throws clause into javadoc of " +
76 @ToBeFixed(bug = "1417734", explanation = "should add @throws clause into javadoc of " +
SpannableStringTest.java 35 @ToBeFixed(bug="1695243", explanation="should add @throws clause into javadoc of "
52 @ToBeFixed(bug="1695243", explanation="should add @throws clause into javadoc of "
75 @ToBeFixed(bug="1695243", explanation="should add @throws clause into javadoc of "
140 @ToBeFixed(bug="1695243", explanation="should add @throws clause into javadoc of "
StaticLayoutTest.java 103 @ToBeFixed(bug = "1695243", explanation = "should add @throws clause into javadoc "
165 @ToBeFixed(bug = "1695243", explanation = "should add @throws clause into javadoc "
194 @ToBeFixed(bug = "1695243", explanation = "should add @throws clause into javadoc "
222 @ToBeFixed(bug = "1695243", explanation = "should add @throws clause into javadoc "
251 @ToBeFixed(bug = "1695243", explanation = "should add @throws clause into javadoc "
278 @ToBeFixed(bug = "1695243", explanation = "should add @throws clause into javadoc "
309 @ToBeFixed(bug = "1695243", explanation = "should add @throws clause into javadoc "
362 @ToBeFixed(bug = "1695243", explanation = "should add @throws clause into javadoc "
392 @ToBeFixed(bug = "1695243", explanation = "should add @throws clause into javadoc "
TextPaintTest.java 53 @ToBeFixed(bug="1417734", explanation="should add @throws clause for" +
71 @ToBeFixed(bug="1417734", explanation="should add @throws clause for" +
Spannable_FactoryTest.java 36 @ToBeFixed(bug="1695243", explanation="should add @throws clause into javadoc of "
  /packages/inputmethods/OpenWnn/
README.txt 45 Index 4: Japanese dictionary for clause conversion (single Kanji)
46 Index 5: Japanese dictionary for clause conversion (basic words)
47 Index 6: Japanese dictionary for clause conversion (ancillary words)
  /external/webkit/JavaScriptCore/tests/mozilla/js1_5/Exceptions/
catchguard-002-n.js 43 reportFailure ("var in catch clause should have caused an error.");
  /frameworks/base/core/tests/coretests/src/android/provider/
SettingsProviderTest.java 74 // Query with a specific URI and no WHERE clause succeeds.
85 // Query with a specific URI and a WHERE clause fails.
90 if (!e.toString().contains("WHERE clause")) throw e;
93 // Query with a tablewide URI and a WHERE clause succeeds.
  /external/v8/
LICENSE 13 Apple Computer, Inc. and released under a 3-clause BSD license.
22 under a 3-clause BSD license.
  /cts/tests/tests/text/src/android/text/style/cts/
ClickableSpanTest.java 39 @ToBeFixed(bug = "1695243", explanation = "should add @throws clause into javadoc of " +

Completed in 92 milliseconds

1 2 3 4 5 6 7 8 91011>>