/external/robolectric/src/main/java/com/xtremelabs/robolectric/util/ |
D | SQLite.java | 146 StringBuilder clause = new StringBuilder("("); in buildColumnValuesClause() local 152 clause.append(entry.getKey()); in buildColumnValuesClause() 154 clause.append(", "); in buildColumnValuesClause() 159 clause.append(") VALUES ("); in buildColumnValuesClause() 161 clause.append("?, "); in buildColumnValuesClause() 163 clause.append("?)"); in buildColumnValuesClause() 165 return new SQLStringAndBindings(clause.toString(), columnValues); in buildColumnValuesClause() 175 StringBuilder clause = new StringBuilder(); in buildColumnAssignmentsClause() local 181 clause.append(entry.getKey()); in buildColumnAssignmentsClause() 182 clause.append("=?"); in buildColumnAssignmentsClause() [all …]
|
/external/chromium_org/third_party/yasm/source/patched-yasm/ |
D | 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/sqlite/src/test/ |
D | 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}}
|
D | e_delete.test | 46 # EVIDENCE-OF: R-20205-17349 If the WHERE clause is not present, all 69 # EVIDENCE-OF: R-30203-16177 If a WHERE clause is supplied, then only 70 # those rows for which the result of evaluating the WHERE clause as a 253 the %s %s clause is not allowed on UPDATE or DELETE statements within triggers 320 # EVIDENCE-OF: R-44062-08550 If a DELETE statement has a LIMIT clause, 335 # clause cannot be losslessly converted to an integer value, it is an 358 # clause, then it is similarly evaluated and cast to an integer value. 374 # EVIDENCE-OF: R-64004-53814 If there is no OFFSET clause, or the 396 # clause, then all rows that would be deleted in the absence of the 397 # LIMIT clause are sorted according to the ORDER BY. The first M rows, [all …]
|
D | e_select.test | 105 # 0: No FROM clause 106 # 1: Has FROM clause 108 # 0: No WHERE clause 109 # 1: Has WHERE clause 111 # 0: No GROUP BY clause 112 # 1: Has GROUP BY clause 315 # The following tests focus on FROM clause (join) processing. 318 # EVIDENCE-OF: R-16074-54196 If the FROM clause is omitted from a simple 332 # join-source following the FROM clause, then the input data used by the 362 # data is coming from each of the three tables following the FROM clause [all …]
|
D | e_update.test | 133 # WHERE clause, all rows in the table are modified by the UPDATE. 150 # rows for which the result of evaluating the WHERE clause expression as 174 # EVIDENCE-OF: R-58129-20729 It is not an error if the WHERE clause does 268 # EVIDENCE-OF: R-12619-24112 The optional conflict-clause allows the 444 the %s %s clause is not allowed on UPDATE or DELETE statements within triggers 529 # EVIDENCE-OF: R-58862-44169 If an UPDATE statement has a LIMIT clause, 549 # non-negative value N and the UPDATE statement has an ORDER BY clause, 550 # then all rows that would be updated in the absence of the LIMIT clause 562 # clause, then it is similarly evaluated and cast to an integer value. 574 # clause, then all rows that would be updated in the absence of the [all …]
|
D | tkt3346.test | 53 # FROM levels in order to view tables in the FROM clause at the top level. 55 # But ticket #3530 shows us that a subquery in the FROM clause should not
|
D | tkt-31338dca7e.test | 14 # fixed. Ticket [31338dca7e] demonstrates problems with the OR-clause 15 # optimization in joins where the WHERE clause is of the form
|
/external/clang/test/Parser/ |
D | 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}}
|
/external/llvm/test/CodeGen/R600/ |
D | vtx-schedule.ll | 8 ; CHECK: Fetch clause 10 ; CHECK: Fetch clause
|
D | indirect-addressing.ll | 4 ; instruction clause. 8 ; CHECK-NOT: ALU clause 11 ; CHECK-NOT: ALU clause
|
D | fetch-limits.r600.ll | 5 ; R600 supports 8 fetches in a clause 7 ; CHECK: Fetch clause 8 ; CHECK: Fetch clause
|
D | local-memory.ll | 18 ; GROUP_BARRIER must be the last instruction in a clause 20 ; EG-CHECK-NEXT: ALU clause
|
D | local-memory-two-objects.ll | 18 ; GROUP_BARRIER must be the last instruction in a clause 20 ; CHECK-NEXT: ALU clause
|
D | fetch-limits.r700+.ll | 14 ; r700+ supports 16 fetches in a clause 16 ; CHECK: Fetch clause 17 ; CHECK: Fetch clause
|
/external/chromium_org/third_party/opus/src/ |
D | LICENSE_PLEASE_READ.txt | 7 under the Modified (2-clause or 3-clause) BSD License or the Clear BSD License.
|
/external/v8/src/ |
D | prettyprinter.h | 76 void PrintCaseClause(CaseClause* clause); 102 void PrintCaseClause(CaseClause* clause);
|
D | prettyprinter.cc | 598 void PrettyPrinter::PrintCaseClause(CaseClause* clause) { in PrintCaseClause() argument 599 if (clause->is_default()) { in PrintCaseClause() 603 Visit(clause->label()); in PrintCaseClause() 606 PrintStatements(clause->statements()); in PrintCaseClause() 607 if (clause->statements()->length() > 0) in PrintCaseClause() 748 void AstPrinter::PrintCaseClause(CaseClause* clause) { in PrintCaseClause() argument 749 if (clause->is_default()) { in PrintCaseClause() 751 PrintStatements(clause->statements()); in PrintCaseClause() 754 Visit(clause->label()); in PrintCaseClause() 755 PrintStatements(clause->statements()); in PrintCaseClause()
|
/external/chromium_org/v8/src/ |
D | prettyprinter.h | 76 void PrintCaseClause(CaseClause* clause); 104 void PrintCaseClause(CaseClause* clause);
|
D | typing.cc | 159 CaseClause* clause = clauses->at(i); in VisitSwitchStatement() local 162 if (!clause->is_default()) { in VisitSwitchStatement() 163 Expression* label = clause->label(); in VisitSwitchStatement() 177 ZoneList<Statement*>* stmts = clause->statements(); in VisitSwitchStatement() 201 CaseClause* clause = clauses->at(i); in VisitSwitchStatement() local 202 if (!clause->is_default()) in VisitSwitchStatement() 203 clause->set_compare_type(oracle()->ClauseType(clause->CompareId())); in VisitSwitchStatement() 209 void AstTyper::VisitCaseClause(CaseClause* clause) { in VisitCaseClause() argument
|
D | prettyprinter.cc | 208 void PrettyPrinter::VisitCaseClause(CaseClause* clause) { in VisitCaseClause() argument 209 if (clause->is_default()) { in VisitCaseClause() 213 Visit(clause->label()); in VisitCaseClause() 216 PrintStatements(clause->statements()); in VisitCaseClause() 217 if (clause->statements()->length() > 0) in VisitCaseClause() 896 void AstPrinter::VisitCaseClause(CaseClause* clause) { in VisitCaseClause() argument 897 if (clause->is_default()) { in VisitCaseClause() 899 PrintStatements(clause->statements()); in VisitCaseClause() 902 Visit(clause->label()); in VisitCaseClause() 903 PrintStatements(clause->statements()); in VisitCaseClause()
|
D | rewriter.cc | 203 CaseClause* clause = clauses->at(i); in VisitSwitchStatement() local 204 Process(clause->statements()); in VisitSwitchStatement() 210 void Processor::VisitCaseClause(CaseClause* clause) { in VisitCaseClause() argument
|
/external/libyuv/ |
D | BUILD | 10 licenses(['notice']) # 3-clause BSD
|
/external/clang/test/Rewriter/ |
D | rewrite-try-catch.m | 23 // no catch clause
|
/external/scrypt/lib/ |
D | README | 2 Tarsnap online backup system (and released under the 2-clause BSD license
|