/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...] |
/external/chromium_org/v8/src/ |
prettyprinter.h | 76 void PrintCaseClause(CaseClause* clause); 104 void PrintCaseClause(CaseClause* clause);
|
rewriter.cc | 203 CaseClause* clause = clauses->at(i); local 204 Process(clause->statements()); 210 void Processor::VisitCaseClause(CaseClause* clause) {
|
prettyprinter.cc | 208 void PrettyPrinter::VisitCaseClause(CaseClause* clause) { 209 if (clause->is_default()) { 213 Visit(clause->label()); 216 PrintStatements(clause->statements()); 217 if (clause->statements()->length() > 0) 896 void AstPrinter::VisitCaseClause(CaseClause* clause) { 897 if (clause->is_default()) { 899 PrintStatements(clause->statements()); 902 Visit(clause->label()); 903 PrintStatements(clause->statements()) [all...] |
typing.cc | 159 CaseClause* clause = clauses->at(i); local 162 if (!clause->is_default()) { 163 Expression* label = clause->label(); 177 ZoneList<Statement*>* stmts = clause->statements(); 201 CaseClause* clause = clauses->at(i); local 202 if (!clause->is_default()) 203 clause->set_compare_type(oracle()->ClauseType(clause->CompareId())); 209 void AstTyper::VisitCaseClause(CaseClause* clause) {
|
/external/v8/src/ |
prettyprinter.h | 76 void PrintCaseClause(CaseClause* clause); 102 void PrintCaseClause(CaseClause* clause);
|
prettyprinter.cc | 598 void PrettyPrinter::PrintCaseClause(CaseClause* clause) { 599 if (clause->is_default()) { 603 Visit(clause->label()); 606 PrintStatements(clause->statements()); 607 if (clause->statements()->length() > 0) 748 void AstPrinter::PrintCaseClause(CaseClause* clause) { 749 if (clause->is_default()) { 751 PrintStatements(clause->statements()); 754 Visit(clause->label()); 755 PrintStatements(clause->statements()) [all...] |
rewriter.cc | 187 CaseClause* clause = clauses->at(i); local 188 Process(clause->statements());
|
/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...] |
/prebuilts/gcc/darwin-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/ |
langhooks.h | 206 /* Return true if DECL in private clause needs 207 OMP_CLAUSE_PRIVATE_OUTER_REF on the private clause. */ 211 response to CLAUSE. OUTER is corresponding outer region's 213 tree (*omp_clause_default_ctor) (tree clause, tree decl, tree outer); 216 tree (*omp_clause_copy_ctor) (tree clause, tree dst, tree src); 219 tree (*omp_clause_assign_op) (tree clause, tree dst, tree src); 223 tree (*omp_clause_dtor) (tree clause, tree decl); 225 /* Do language specific checking on an implicitly determined clause. */ 226 void (*omp_finish_clause) (tree clause);
|
/prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/ |
langhooks.h | 206 /* Return true if DECL in private clause needs 207 OMP_CLAUSE_PRIVATE_OUTER_REF on the private clause. */ 211 response to CLAUSE. OUTER is corresponding outer region's 213 tree (*omp_clause_default_ctor) (tree clause, tree decl, tree outer); 216 tree (*omp_clause_copy_ctor) (tree clause, tree dst, tree src); 219 tree (*omp_clause_assign_op) (tree clause, tree dst, tree src); 223 tree (*omp_clause_dtor) (tree clause, tree decl); 225 /* Do language specific checking on an implicitly determined clause. */ 226 void (*omp_finish_clause) (tree clause);
|
/prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/ |
langhooks.h | 206 /* Return true if DECL in private clause needs 207 OMP_CLAUSE_PRIVATE_OUTER_REF on the private clause. */ 211 response to CLAUSE. OUTER is corresponding outer region's 213 tree (*omp_clause_default_ctor) (tree clause, tree decl, tree outer); 216 tree (*omp_clause_copy_ctor) (tree clause, tree dst, tree src); 219 tree (*omp_clause_assign_op) (tree clause, tree dst, tree src); 223 tree (*omp_clause_dtor) (tree clause, tree decl); 225 /* Do language specific checking on an implicitly determined clause. */ 226 void (*omp_finish_clause) (tree clause);
|
/prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/ |
langhooks.h | 206 /* Return true if DECL in private clause needs 207 OMP_CLAUSE_PRIVATE_OUTER_REF on the private clause. */ 211 response to CLAUSE. OUTER is corresponding outer region's 213 tree (*omp_clause_default_ctor) (tree clause, tree decl, tree outer); 216 tree (*omp_clause_copy_ctor) (tree clause, tree dst, tree src); 219 tree (*omp_clause_assign_op) (tree clause, tree dst, tree src); 223 tree (*omp_clause_dtor) (tree clause, tree decl); 225 /* Do language specific checking on an implicitly determined clause. */ 226 void (*omp_finish_clause) (tree clause);
|
/external/chromium_org/third_party/devscripts/ |
licensecheck.pl.vanilla | 473 $license = "BSD (4 clause) $license"; 475 $license = "BSD (3 clause) $license"; 477 $license = "BSD (2 clause) $license";
|
licensecheck.pl | 507 $license = "BSD (4 clause) $license"; 509 $license = "BSD (3 clause) $license"; 511 $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/chromium_org/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
|
/external/v8/test/mjsunit/regress/ |
regress-1184.js | 28 // Test the case when finally clause throws another exception (stack overflow)
|