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

  /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...]
OpenWnnJAJP.java 90 /** Highlight color style for the converted clause */
161 /** Definition for {@code EngineState.convertType} (consecutive clause conversion) */
213 * Returns whether current type of conversion is consecutive clause(RENBUNSETSU) conversion.
215 * @return {@code true} if current type of conversion is consecutive clause conversion.
335 /** Number of committed clauses on consecutive clause conversion */
    [all...]
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/lib/gcc/arm-eabi/4.4.0/plugin/include/
langhooks.h 200 /* Return true if DECL in private clause needs
201 OMP_CLAUSE_PRIVATE_OUTER_REF on the private clause. */
205 response to CLAUSE. OUTER is corresponding outer region's
207 tree (*omp_clause_default_ctor) (tree clause, tree decl, tree outer);
210 tree (*omp_clause_copy_ctor) (tree clause, tree dst, tree src);
213 tree (*omp_clause_assign_op) (tree clause, tree dst, tree src);
217 tree (*omp_clause_dtor) (tree clause, tree decl);
219 /* Do language specific checking on an implicitly determined clause. */
220 void (*omp_finish_clause) (tree 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...]
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/lib/gcc/arm-eabi/4.4.3/plugin/include/
langhooks.h 200 /* Return true if DECL in private clause needs
201 OMP_CLAUSE_PRIVATE_OUTER_REF on the private clause. */
205 response to CLAUSE. OUTER is corresponding outer region's
207 tree (*omp_clause_default_ctor) (tree clause, tree decl, tree outer);
210 tree (*omp_clause_copy_ctor) (tree clause, tree dst, tree src);
213 tree (*omp_clause_assign_op) (tree clause, tree dst, tree src);
217 tree (*omp_clause_dtor) (tree clause, tree decl);
219 /* Do language specific checking on an implicitly determined clause. */
220 void (*omp_finish_clause) (tree 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...]
  /external/v8/src/
prettyprinter.h 75 void PrintCaseClause(CaseClause* clause);
100 void PrintCaseClause(CaseClause* clause);
usage-analyzer.cc 154 CaseClause* clause = cases->at(i); local
155 if (!clause->is_default())
156 Read(clause->label());
157 VisitStatements(clause->statements());
rewriter.cc 156 CaseClause* clause = node->cases()->at(i); local
157 if (!clause->is_default()) {
158 Visit(clause->label());
160 Optimize(clause->statements());
668 CaseClause* clause = clauses->at(i); local
669 Process(clause->statements());
prettyprinter.cc 575 void PrettyPrinter::PrintCaseClause(CaseClause* clause) {
576 if (clause->is_default()) {
580 Visit(clause->label());
583 PrintStatements(clause->statements());
584 if (clause->statements()->length() > 0)
763 void AstPrinter::PrintCaseClause(CaseClause* clause) {
764 if (clause->is_default()) {
766 PrintStatements(clause->statements());
769 Visit(clause->label());
770 PrintStatements(clause->statements())
    [all...]
messages.js 144 multiple_defaults_in_switch: "More than one default clause in switch statement",
parser.cc 2493 CaseClause* clause = ParseCaseClause(&default_seen, CHECK_OK); local
    [all...]
  /external/v8/test/mjsunit/regress/
regress-69.js 28 // This tests a switch statement with only default clause leaves
  /external/webkit/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...]
  /external/webkit/JavaScriptCore/bytecompiler/
BytecodeGenerator.cpp 1942 UString::Rep* clause = static_cast<StringNode*>(node)->value().ustring().rep(); local
1972 UString::Rep* clause = static_cast<StringNode*>(nodes[i])->value().ustring().rep(); local
    [all...]
  /external/v8/src/x64/
codegen-x64.cc 1205 CaseClause* clause = cases->at(i); local
1261 CaseClause* clause = cases->at(i); local
    [all...]
  /external/v8/src/ia32/
codegen-ia32.cc 3029 CaseClause* clause = cases->at(i); local
3086 CaseClause* clause = cases->at(i); local
    [all...]
  /external/bison/doc/
refcard.tex 129 % make \bye not \outer so that the \def\bye in the \else clause below
  /external/v8/src/arm/
codegen-arm.cc 1487 CaseClause* clause = cases->at(i); local
    [all...]
  /prebuilt/common/ant/
ant.jar 
  /external/grub/docs/
texinfo.tex 356 \egroup % \vbox from first cropmarks clause
    [all...]

Completed in 2438 milliseconds