/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/test/OpenMP/ |
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'}}
|
/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/chromium_org/third_party/win_toolchain/ |
README.chromium | 4 License: BSD 3-Clause License
|
/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
|
/external/clang/include/clang/AST/ |
StmtOpenMP.h | 29 /// \brief This is a basic class for representing single OpenMP clause. 32 /// \brief Starting location of the clause (the clause keyword). 34 /// \brief Ending location of the clause. 36 /// \brief Kind of the clause. 44 /// \brief Returns the starting location of the clause. 46 /// \brief Returns the ending location of the clause. 49 /// \brief Sets the starting location of the clause. 51 /// \brief Sets the ending location of the clause. 54 /// \brief Returns kind of OpenMP clause (private, shared, reduction, etc.) [all...] |
/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/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
|
/external/chromium_org/third_party/opus/src/ |
LICENSE_PLEASE_READ.txt | 7 under the Modified (2-clause or 3-clause) BSD License or the Clear BSD License.
|
/external/llvm/test/CodeGen/R600/ |
vtx-schedule.ll | 8 ; CHECK: Fetch clause 10 ; CHECK: Fetch clause
|
/external/mdnsresponder/ |
LICENSE | 8 licensed under the terms of the "Three-Clause BSD License". 12 Software Licence (which is substantially similar to the "Three-Clause
|
/frameworks/base/core/java/com/android/internal/content/ |
SelectionBuilder.java | 28 * appended clause is combined using {@code AND}. This class is <em>not</em> 47 * Append the given selection clause to the internal state. Each clause is 57 // Shortcut when clause is empty 96 * Execute query using the current internal state as {@code WHERE} clause. 104 * Execute query using the current internal state as {@code WHERE} clause. 113 * Execute update using the current internal state as {@code WHERE} clause. 120 * Execute delete using the current internal state as {@code WHERE} clause.
|
/external/clang/test/CXX/except/except.spec/ |
p11.cpp | 4 // This is the "let the user shoot himself in the foot" clause.
|
/external/clang/test/Rewriter/ |
rewrite-try-catch.m | 23 // no catch clause
|
/external/clang/test/Parser/ |
objc-try-catch-1.m | 42 @try { // expected-error {{@try statement without a @catch and @finally clause}} 50 @try {}// expected-error {{@try statement without a @catch and @finally clause}} 56 @try {}// expected-error {{@try statement without a @catch and @finally 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/javassist/src/main/javassist/expr/ |
Handler.java | 23 * A <code>catch</code> clause or a <code>finally</code> block. 41 * Returns the method or constructor containing the catch clause. 46 * Returns the source line number of the catch clause. 55 * Returns the source file containing the catch clause. 64 * Returns the list of exceptions that the catch clause may throw. 71 * Returns the type handled by the catch clause. 102 * Inserts bytecode at the beginning of the catch clause.
|