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

1 2

  /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 32 /** Returns a WHERE clause asserting equality of a field to a value. */
37 /** Returns a WHERE clause asserting equality of a field to a value. */
42 /** Returns a WHERE clause asserting in-equality of a field to a value. */
48 StringBuilder clause = new StringBuilder(); local
49 clause.append("(");
50 clause.append(field);
51 clause.append(" ").append(operator).append(" ");
52 DatabaseUtils.appendEscapedSQLString(clause, value);
53 clause.append(")");
54 return clause.toString()
58 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/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());
type-info.h 293 TypeInfo SwitchType(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...]
  /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);
  /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
  /external/webkit/Source/JavaScriptCore/parser/
NodeConstructors.h 837 inline ClauseListNode::ClauseListNode(JSGlobalData*, CaseClauseNode* clause)
838 : m_clause(clause)
843 inline ClauseListNode::ClauseListNode(JSGlobalData*, ClauseListNode* clauseList, CaseClauseNode* clause)
844 : m_clause(clause)
    [all...]
ASTBuilder.h 105 typedef CaseClauseNode* Clause;
293 ClauseListNode* createClauseList(CaseClauseNode* clause) { return new (m_globalData) ClauseListNode(m_globalData, clause); }
294 ClauseListNode* createClauseList(ClauseListNode* tail, CaseClauseNode* clause) { return new (m_globalData) ClauseListNode(m_globalData, tail, clause); }
    [all...]
  /external/v8/src/arm/
full-codegen-arm.cc 914 CaseClause* clause = clauses->at(i); local
915 clause->body_target()->Unuse();
918 if (clause->is_default()) {
919 default_clause = clause;
928 VisitForAccumulatorValue(clause->label());
942 __ b(clause->body_target());
947 SetSourcePosition(clause->position());
949 CallIC(ic, RelocInfo::CODE_TARGET, clause->CompareId());
955 __ b(clause->body_target());
971 CaseClause* clause = clauses->at(i); local
    [all...]
  /external/v8/src/ia32/
full-codegen-ia32.cc 882 CaseClause* clause = clauses->at(i); local
883 clause->body_target()->Unuse();
886 if (clause->is_default()) {
887 default_clause = clause;
896 VisitForAccumulatorValue(clause->label());
911 __ jmp(clause->body_target());
916 SetSourcePosition(clause->position());
918 CallIC(ic, RelocInfo::CODE_TARGET, clause->CompareId());
923 __ jmp(clause->body_target());
939 CaseClause* clause = clauses->at(i) local
    [all...]
  /external/v8/src/mips/
full-codegen-mips.cc 924 CaseClause* clause = clauses->at(i); local
925 clause->body_target()->Unuse();
928 if (clause->is_default()) {
929 default_clause = clause;
981 CaseClause* clause = clauses->at(i); local
    [all...]
  /external/v8/src/x64/
full-codegen-x64.cc 823 CaseClause* clause = clauses->at(i); local
824 clause->body_target()->Unuse();
827 if (clause->is_default()) {
828 default_clause = clause;
837 VisitForAccumulatorValue(clause->label());
852 __ jmp(clause->body_target());
857 SetSourcePosition(clause->position());
859 __ call(ic, RelocInfo::CODE_TARGET, clause->CompareId());
865 __ jmp(clause->body_target());
881 CaseClause* clause = clauses->at(i) local
    [all...]

Completed in 1340 milliseconds

1 2