/external/robolectric/v1/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/python/cpython2/Doc/tutorial/ |
D | errors.rst | 98 * First, the *try clause* (the statement(s) between the :keyword:`try` and 101 * If no exception occurs, the *except clause* is skipped and execution of the 104 * If an exception occurs during execution of the try clause, the rest of the 105 clause is skipped. Then if its type matches the exception named after the 106 :keyword:`except` keyword, the except clause is executed, and then execution 110 clause, it is passed on to outer :keyword:`try` statements; if no handler is 114 A :keyword:`try` statement may have more than one except clause, to specify 116 Handlers only handle exceptions that occur in the corresponding try clause, not 117 in other handlers of the same :keyword:`try` statement. An except clause may 131 The last except clause may omit the exception name(s), to serve as a wildcard. [all …]
|
/external/llvm/test/CodeGen/X86/ |
D | wineh-coreclr.ll | 170 ; ^ offset of start of clause 172 ; ^ offset of end of clause 183 ; ^ offset of start of clause 185 ; ^ offset of end of clause 196 ; ^ offset of start of clause 198 ; ^ offset of end of clause 212 ; ^ offset of start of clause 214 ; ^ offset of end of clause 225 ; ^ offset of start of clause 227 ; ^ offset of end of clause [all …]
|
/external/swiftshader/third_party/LLVM/test/CodeGen/PTX/ |
D | bra.ll | 17 br i1 %p, label %clause.if, label %clause.else 18 clause.if: 21 clause.else:
|
/external/python/cpython2/Doc/reference/ |
D | compound_stmts.rst | 20 single: clause 23 Compound statements consist of one or more 'clauses.' A clause consists of a 24 header and a 'suite.' The clause headers of a particular compound statement are 25 all at the same indentation level. Each clause header begins with a uniquely 27 controlled by a clause. A suite can be one or more semicolon-separated simple 31 mostly because it wouldn't be clear to which :keyword:`if` clause a following 32 :keyword:`else` clause would belong: :: 68 The formatting of the grammar rules in the following sections places each clause 95 false, the suite of the :keyword:`else` clause, if present, is executed. 117 suite of the :keyword:`else` clause, if present, is executed and the loop [all …]
|
/external/llvm/test/CodeGen/AMDGPU/ |
D | lds-output-queue.ll | 4 ; the ALU clause. 8 ; CHECK-NOT: ALU clause 19 ; This will start a new clause for the vertex fetch 39 ; clause. The aliasing problem mentioned above causes problems when there is a 69 ; Alu clause: 71 ; VTX clause: 73 ; Alu clause: 89 ; CHECK-NOT: ALU clause
|
D | vtx-schedule.ll | 8 ; CHECK: Fetch clause 10 ; CHECK: Fetch clause
|
D | vtx-fetch-branch.ll | 5 ; for the ALU clause before the vetex fetch instead of emitting a POP instruction 6 ; after the fetch clause.
|
D | structurize.ll | 23 ; === Duplicated diamond_true block (There can be more than one ALU clause): 34 ; === diamond_true block (There can be more than one ALU clause):
|
D | fetch-limits.r600.ll | 5 ; R600 supports 8 fetches in a clause 7 ; CHECK: Fetch clause 8 ; CHECK: Fetch clause
|
/external/llvm/test/Transforms/Inline/ |
D | invoke-combine-clauses.ll | 45 ; Check that there isn't another "catch" clause: 79 ; Check that there isn't another "catch" clause: 85 ; include the "catch i8* @exception_outer" clause from the outer 87 ; reachable), but it's OK to include this clause. 116 ; Check that there isn't another "catch" clause:
|
/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/clang/include/clang/Basic/ |
D | OpenMPKinds.def | 296 // Static attributes for 'default' clause. 300 // Static attributes for 'proc_bind' clause. 305 // Static attributes for 'schedule' clause. 312 // Modifiers for 'schedule' clause. 317 // Static attributes for 'defaultmap' clause. 320 // Modifiers for 'defaultmap' clause. 323 // Static attributes for 'depend' clause. 330 // Modifiers for 'linear' clause. 495 // Map types and map type modifier for 'map' clause. 550 // Static attributes for 'dist_schedule' clause.
|
/external/libopus/ |
D | LICENSE_PLEASE_READ.txt | 7 under the Modified (2-clause or 3-clause) BSD License or the Clear BSD License.
|
/external/ltp/utils/ffsb-6.0-rc2/ |
D | README | 85 In the filesystem clause of the profile, one may set the starting 88 used for creating the files separately in the filesystem clause. 90 Also, if a filesystem is to be aged, a special threadgroup clause may 91 be embedded in a filesystem clause to specify the operation mixture 98 In this case, only the location is required in the filesystem clause. 107 To do this, specify "reuse=1" in the filesystem clause, and FFSB will 268 Filesystems are specified by a clause with a filesystem number like 280 The clause must always begin with [filesystemX] and end with [endX] 318 location from the previous filesystem clause if nothing is specified. 322 Full blown filesystem clause example: [all …]
|
/external/v8/src/ast/ |
D | prettyprinter.cc | 121 void CallPrinter::VisitCaseClause(CaseClause* clause) { in VisitCaseClause() argument 122 if (!clause->is_default()) { in VisitCaseClause() 123 Find(clause->label()); in VisitCaseClause() 125 FindStatements(clause->statements()); in VisitCaseClause() 790 void AstPrinter::VisitCaseClause(CaseClause* clause) { in VisitCaseClause() argument 791 if (clause->is_default()) { in VisitCaseClause() 792 IndentedScope indent(this, "DEFAULT", clause->position()); in VisitCaseClause() 793 PrintStatements(clause->statements()); in VisitCaseClause() 795 IndentedScope indent(this, "CASE", clause->position()); in VisitCaseClause() 796 Visit(clause->label()); in VisitCaseClause() [all …]
|
D | ast-traversal-visitor.h | 200 CaseClause* clause = clauses->at(i); in VisitSwitchStatement() local 201 if (!clause->is_default()) { in VisitSwitchStatement() 202 Expression* label = clause->label(); in VisitSwitchStatement() 205 ZoneList<Statement*>* stmts = clause->statements(); in VisitSwitchStatement() 211 void AstTraversalVisitor<Subclass>::VisitCaseClause(CaseClause* clause) { in VisitCaseClause() argument
|
/external/mesa3d/src/gallium/drivers/r600/sb/ |
D | sb_gcm.cpp | 332 container_node *clause = NULL; in bu_sched_bb() local 385 clause = NULL; in bu_sched_bb() 429 if (!clause || sampler_indexing) { in bu_sched_bb() 430 clause = sh.create_clause(sq == SQ_ALU ? in bu_sched_bb() 434 bb->push_front(clause); in bu_sched_bb() 437 clause = bb; in bu_sched_bb() 440 bu_schedule(clause, n); in bu_sched_bb()
|
/external/v8/src/crankshaft/ |
D | typing.cc | 201 CaseClause* clause = clauses->at(i); in VisitSwitchStatement() local 205 if (!clause->is_default()) { in VisitSwitchStatement() 206 Expression* label = clause->label(); in VisitSwitchStatement() 211 oracle()->CompareType(clause->CompareId(), in VisitSwitchStatement() 212 clause->CompareOperationFeedbackSlot(), &tag_type, in VisitSwitchStatement() 216 clause->set_compare_type(combined_type); in VisitSwitchStatement() 222 ZoneList<Statement*>* stmts = clause->statements(); in VisitSwitchStatement() 240 void AstTyper::VisitCaseClause(CaseClause* clause) { in VisitCaseClause() argument
|
/external/curl/docs/ |
D | LICENSE-MIXING.md | 16 announcement clause). You may still build your own copies that use them all, 22 not have the announcement clause that collides with GPL. 32 announcement clause that makes it "incompatible" with GPL. You are not 101 announcement clause.
|
/external/icu/icu4c/source/data/translit/ |
D | si_si_FONIPA.txt | 132 $c r { ə } $c → a; # clause (a) and (b) 133 $c r { a } h → a; # clause (d), exception 134 $c r { a } $c → ə; # clause (c)
|
/external/libchrome/sandbox/linux/bpf_dsl/ |
D | bpf_dsl.cc | 330 for (const Clause& clause : clause_list_) { in Else() local 331 expr = std::make_shared<IfThenResultExprImpl>(clause.first, clause.second, in Else()
|
/external/llvm/test/Assembler/ |
D | invalid-landingpad.ll | 3 ; CHECK: clause argument must be a constant
|
/external/libyuv/ |
D | BUILD | 10 licenses(['notice']) # 3-clause BSD
|
/external/clang/test/Rewriter/ |
D | rewrite-try-catch.m | 23 // no catch clause
|