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

1 2 3 4

  /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;
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...]
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/util/
DbQueryUtils.java 33 /** 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(); local
50 clause.append("(");
51 clause.append(field);
52 clause.append(" ").append(operator).append(" ");
53 DatabaseUtils.appendEscapedSQLString(clause, value);
54 clause.append(")");
55 return clause.toString()
59 StringBuilder clause = new StringBuilder(); local
    [all...]
SelectionBuilder.java 25 * 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) {
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
  /development/samples/VoicemailProviderDemo/src/com/example/android/voicemail/common/utils/
DbQueryUtils.java 30 /** Returns a WHERE clause assert equality of a field to a value for the specified table . */
35 /** Returns a WHERE clause assert equality of a field to a value. */
37 StringBuilder clause = new StringBuilder(); local
38 clause.append(field);
39 clause.append(" = ");
40 DatabaseUtils.appendEscapedSQLString(clause, value);
41 return clause.toString();
65 for (String clause : clauses) {
66 if (!TextUtils.isEmpty(clause)) {
71 builder.append(clause);
    [all...]
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/util/
SQLite.java 52 * @param whereClause SQL where clause fragment
83 * @param whereClause SQL where clause fragment
107 * Build a WHERE clause used in SELECT, UPDATE and DELETE statements.
109 * @param selection SQL where clause fragment
111 * @return where clause
139 * Build the '(columns...) VALUES (values...)' clause used in INSERT
146 StringBuilder clause = new StringBuilder("("); local
152 clause.append(entry.getKey());
154 clause.append(", ");
159 clause.append(") VALUES (")
175 StringBuilder clause = new StringBuilder(); local
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
langhooks.h 204 /* Return true if DECL in private clause needs
205 OMP_CLAUSE_PRIVATE_OUTER_REF on the private clause. */
209 response to CLAUSE. OUTER is corresponding outer region's
211 tree (*omp_clause_default_ctor) (tree clause, tree decl, tree outer);
214 tree (*omp_clause_copy_ctor) (tree clause, tree dst, tree src);
217 tree (*omp_clause_assign_op) (tree clause, tree dst, tree src);
221 tree (*omp_clause_dtor) (tree clause, tree decl);
223 /* Do language specific checking on an implicitly determined clause. */
224 void (*omp_finish_clause) (tree clause);
  /external/v8/src/
prettyprinter.h 54 void PrintCaseClause(CaseClause* clause);
83 void PrintCaseClause(CaseClause* clause);
prettyprinter.cc 186 void PrettyPrinter::VisitCaseClause(CaseClause* clause) {
187 if (clause->is_default()) {
191 Visit(clause->label());
194 PrintStatements(clause->statements());
195 if (clause->statements()->length() > 0)
905 void AstPrinter::VisitCaseClause(CaseClause* clause) {
906 if (clause->is_default()) {
908 PrintStatements(clause->statements());
911 Visit(clause->label());
912 PrintStatements(clause->statements())
    [all...]
rewriter.cc 182 CaseClause* clause = clauses->at(i); local
183 Process(clause->statements());
typing.cc 207 CaseClause* clause = clauses->at(i); local
211 if (!clause->is_default()) {
212 Expression* label = clause->label();
217 oracle()->CompareType(clause->CompareId(),
221 clause->set_compare_type(combined_type);
227 ZoneList<Statement*>* stmts = clause->statements();
245 void AstTyper::VisitCaseClause(CaseClause* 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 105 * (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(); local
455 int len = clause.stroke.length()
562 WnnClause clause = mConvertSentence.elements.get(clausePosition); local
    [all...]
  /external/v8/test/mjsunit/es6/
math-log1p.js 67 // final if-clause: k = 0
69 // final if-clause: k != 0
  /external/chromium-trace/trace-viewer/tracing/third_party/devscripts/
licensecheck.pl 522 $license = "BSD (4 clause) $license";
524 $license = "BSD (3 clause) $license";
526 $license = "BSD (2 clause) $license";
541 } elsif ($licensetext =~ /BSD 3-Clause license/) {
542 $license = "BSD (3 clause) $license";
646 $license = "FreeType (BSD like) with patent clause $license";
licensecheck.pl.vanilla 473 $license = "BSD (4 clause) $license";
475 $license = "BSD (3 clause) $license";
477 $license = "BSD (2 clause) $license";
  /frameworks/base/core/java/android/database/sqlite/
SQLiteQueryBuilder.java 86 * Append a chunk to the WHERE clause of the query. All chunks appended are surrounded
88 * WHERE clause looks like:
92 * @param inWhere the chunk of text to append to the WHERE clause.
105 * Append a chunk to the WHERE clause of the query. All chunks appended are surrounded
107 * WHERE clause looks like:
111 * @param inWhere the chunk of text to append to the WHERE clause. it will be escaped
184 * WHERE clause (excluding the WHERE itself). Passing null will
187 * GROUP BY clause (excluding the GROUP BY itself). Passing null
191 * clause (excluding the HAVING itself). Passing null will cause
194 * @param orderBy How to order the rows, formatted as an SQL ORDER BY clause
    [all...]
  /external/v8/test/mjsunit/regress/
regress-1184.js 28 // Test the case when finally clause throws another exception (stack overflow)
regress-69.js 28 // This tests a switch statement with only default clause leaves
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-bundles-external/0.20.0/eclipse/plugins/
org.sat4j.core_2.3.5.v201308161310.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/
org.sat4j.core_2.3.5.v20130525.jar 
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/pydoc_data/
topics.py     [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/pydoc_data/
topics.py     [all...]
  /prebuilts/tools/common/m2/repository/org/apache/felix/maven-bundle-plugin/2.3.6/
maven-bundle-plugin-2.3.6.jar 
  /external/v8/src/arm/
full-codegen-arm.cc 1024 CaseClause* clause = clauses->at(i); local
1092 CaseClause* clause = clauses->at(i); local
    [all...]

Completed in 853 milliseconds

1 2 3 4