/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
|
/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...] |
/external/clang/include/clang/AST/ |
OpenMPClause.h | 30 /// \brief This is a basic class for representing single OpenMP clause. 33 /// \brief Starting location of the clause (the clause keyword). 35 /// \brief Ending location of the clause. 37 /// \brief Kind of the clause. 45 /// \brief Returns the starting location of the clause. 47 /// \brief Returns the ending location of the clause. 50 /// \brief Sets the starting location of the clause. 52 /// \brief Sets the ending location of the clause. 55 /// \brief Returns kind of OpenMP clause (private, shared, reduction, etc.) [all...] |
/external/clang/test/OpenMP/ |
parallel_proc_bind_messages.cpp | 7 #pragma omp parallel proc_bind ( // expected-error {{expected 'master', 'close' or 'spread' in OpenMP clause 'proc_bind'}} expected-error {{expected ')'}} expected-note {{to match this '('}} 8 #pragma omp parallel proc_bind () // expected-error {{expected 'master', 'close' or 'spread' in OpenMP clause 'proc_bind'}} 10 #pragma omp parallel proc_bind (close), proc_bind(spread) // expected-error {{directive '#pragma omp parallel' cannot contain more than one 'proc_bind' clause}} 11 #pragma omp parallel proc_bind (x) // expected-error {{expected 'master', 'close' or 'spread' in OpenMP clause 'proc_bind'}}
|
parallel_default_messages.cpp | 7 #pragma omp parallel default ( // expected-error {{expected 'none' or 'shared' in OpenMP clause 'default'}} expected-error {{expected ')'}} expected-note {{to match this '('}} 8 #pragma omp parallel default () // expected-error {{expected 'none' or 'shared' in OpenMP clause 'default'}} 10 #pragma omp parallel default (shared), default(shared) // expected-error {{directive '#pragma omp parallel' cannot contain more than one 'default' clause}} 11 #pragma omp parallel default (x) // expected-error {{expected 'none' or 'shared' in OpenMP clause 'default'}}
|
parallel_for_proc_bind_messages.cpp | 10 #pragma omp parallel for proc_bind( // expected-error {{expected 'master', 'close' or 'spread' in OpenMP clause 'proc_bind'}} expected-error {{expected ')'}} expected-note {{to match this '('}} 13 #pragma omp parallel for proc_bind() // expected-error {{expected 'master', 'close' or 'spread' in OpenMP clause 'proc_bind'}} 19 #pragma omp parallel for proc_bind(close), proc_bind(spread) // expected-error {{directive '#pragma omp parallel for' cannot contain more than one 'proc_bind' clause}} 22 #pragma omp parallel for proc_bind(x) // expected-error {{expected 'master', 'close' or 'spread' in OpenMP clause 'proc_bind'}}
|
parallel_sections_default_messages.cpp | 8 #pragma omp parallel sections default( // expected-error {{expected 'none' or 'shared' in OpenMP clause 'default'}} expected-error {{expected ')'}} expected-note {{to match this '('}} 10 #pragma omp parallel sections default() // expected-error {{expected 'none' or 'shared' in OpenMP clause 'default'}} 14 #pragma omp parallel sections default(shared), default(shared) // expected-error {{directive '#pragma omp parallel sections' cannot contain more than one 'default' clause}} 16 #pragma omp parallel sections default(x) // expected-error {{expected 'none' or 'shared' in OpenMP clause 'default'}}
|
parallel_sections_proc_bind_messages.cpp | 8 #pragma omp parallel sections proc_bind( // expected-error {{expected 'master', 'close' or 'spread' in OpenMP clause 'proc_bind'}} expected-error {{expected ')'}} expected-note {{to match this '('}} 10 #pragma omp parallel sections proc_bind() // expected-error {{expected 'master', 'close' or 'spread' in OpenMP clause 'proc_bind'}} 14 #pragma omp parallel sections proc_bind(close), proc_bind(spread) // expected-error {{directive '#pragma omp parallel sections' cannot contain more than one 'proc_bind' clause}} 16 #pragma omp parallel sections proc_bind(x) // expected-error {{expected 'master', 'close' or 'spread' in OpenMP clause 'proc_bind'}}
|
/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/chromium_org/third_party/sqlite/src/test/ |
tkt3935.test | 37 } {1 {a JOIN clause is required before ON}} 40 } {1 {a JOIN clause is required before ON}} 43 } {1 {a JOIN clause is required before ON}} 46 } {1 {a JOIN clause is required before ON}} 49 } {1 {a JOIN clause is required before ON}} 52 } {1 {a JOIN clause is required before ON}} 55 } {1 {a JOIN clause is required before USING}}
|
/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/clang/include/clang/Basic/ |
OpenMPKinds.h | 41 /// \brief OpenMP attributes for 'default' clause. 49 /// \brief OpenMP attributes for 'proc_bind' clause. 57 /// \brief OpenMP attributes for 'schedule' clause. 102 /// \brief Checks if the specified clause is one of private clauses like 104 /// \param Kind Clause kind. 105 /// \return true - the clause is a private clause, otherwise - false. 108 /// \brief Checks if the specified clause is one of threadprivate clauses like 110 /// \param Kind Clause kind. 111 /// \return true - the clause is a threadprivate clause, otherwise - false [all...] |
/external/chromium_org/third_party/win_toolchain/ |
README.chromium | 4 License: BSD 3-Clause License
|
/external/libcxx/src/support/solaris/ |
README | 3 2-clause BSD license instead of the MIT/UUIC license that the rest of libc++ is
|
/external/libyuv/ |
BUILD | 10 licenses(['notice']) # 3-clause BSD
|
/external/scrypt/lib/ |
README | 2 Tarsnap online backup system (and released under the 2-clause BSD license
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/src/support/solaris/ |
README | 3 2-clause BSD license instead of the MIT/UUIC license that the rest of libc++ is
|
/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...] |
/external/clang/lib/Parse/ |
ParseOpenMP.cpp | 108 /// 'section' | 'single' | 'parallel for' | 'parallel sections' {clause} 164 OMPClause *Clause = 167 if (Clause) { 168 FirstClauses[CKind].setPointer(Clause); 169 Clauses.push_back(Clause); 292 /// clause: 293 /// if-clause | num_threads-clause | safelen-clause | default-clause | [all...] |
/external/chromium_org/third_party/yasm/source/patched-yasm/ |
COPYING | 24 The primary license of Yasm is the 2-clause BSD license. Please use this 33 Libyasm is 2-clause or 3-clause BSD licensed, with the exception of 37 terms of the 3-clause BSD license and Artistic license (as it applies to 43 The modules are 2-clause or 3-clause BSD licensed. 48 The frontends are 2-clause BSD licensed. 58 BSD.txt - 2-clause and 3-clause BSD licenses
|
/prebuilts/misc/darwin-x86/yasm/ |
COPYING | 24 The primary license of Yasm is the 2-clause BSD license. Please use this 33 Libyasm is 2-clause or 3-clause BSD licensed, with the exception of 37 terms of the 3-clause BSD license and Artistic license (as it applies to 43 The modules are 2-clause or 3-clause BSD licensed. 48 The frontends are 2-clause BSD licensed. 58 BSD.txt - 2-clause and 3-clause BSD licenses
|
/prebuilts/misc/linux-x86/yasm/ |
COPYING | 24 The primary license of Yasm is the 2-clause BSD license. Please use this 33 Libyasm is 2-clause or 3-clause BSD licensed, with the exception of 37 terms of the 3-clause BSD license and Artistic license (as it applies to 43 The modules are 2-clause or 3-clause BSD licensed. 48 The frontends are 2-clause BSD licensed. 58 BSD.txt - 2-clause and 3-clause BSD licenses
|