Home
last modified time | relevance | path

Searched refs:clauses (Results 1 – 25 of 97) sorted by relevance

1234

/external/owasp/sanitizer/tools/findbugs/doc/
DFilterFile.txt24 Types of Match clauses:
40 <Or> combines Match clauses as disjuncts. I.e., you can put two
47 Match clauses can only match information that is actually contained in the
54 Only the FIRST (primary) class is matched against Match clauses.
57 two Match clauses:
68 you can put Method clauses in the Match element and they should work
/external/clang/include/clang/Basic/
DOpenMPKinds.def1 //===--- OpenMPKinds.def - OpenMP directives and clauses list ---*- C++ -*-===//
11 /// clauses.
186 // OpenMP clauses.
413 // TODO More clauses for 'target data' directive.
434 // TODO: add target clauses 'is_device_ptr'
450 // TODO: add target clauses 'is_device_ptr'
471 // TODO More clauses for 'target update' directive.
480 // TODO More clauses for 'teams' directive.
490 // TODO More clauses for 'ordered' directive.
600 // TODO: add target clauses 'is_device_ptr'
/external/swiftshader/third_party/llvm-7.0/llvm/utils/lit/tests/Inputs/shtest-format/
Drequires-present.txt1 # REQUIRES with only true clauses. Test should run.
Dxfail-expr-false.txt1 # XFAIL with only false clauses. Test should run.
Dunsupported-expr-false.txt1 # UNSUPPORTED with only false clauses. Test should run.
/external/v8/src/parsing/
Drewriter.cc285 ZonePtrList<CaseClause>* clauses = node->cases(); in VisitSwitchStatement() local
286 for (int i = clauses->length() - 1; i >= 0; --i) { in VisitSwitchStatement()
287 CaseClause* clause = clauses->at(i); in VisitSwitchStatement()
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/AMDGPU/
Dvtx-fetch-branch.ll3 ; This tests for a bug where vertex fetch clauses right before an ENDIF
Dlds-output-queue.ll78 ; different ALU clauses.
/external/llvm/test/CodeGen/AMDGPU/
Dvtx-fetch-branch.ll3 ; This tests for a bug where vertex fetch clauses right before an ENDIF
Dlds-output-queue.ll78 ; different ALU clauses.
/external/python/cpython2/Doc/library/
Dthread.rst78 **Caveat:** code in pending :keyword:`finally` clauses, in this thread
171 :keyword:`finally` clauses or executing object destructors.
174 that :keyword:`try` ... :keyword:`finally` clauses are honored), and the
/external/python/cpython3/Doc/library/
D_thread.rst70 **Caveat:** code in pending :keyword:`finally` clauses, in this thread
183 :keyword:`try` ... :keyword:`finally` clauses or executing object
187 that :keyword:`try` ... :keyword:`finally` clauses are honored), and the
/external/v8/src/ast/
Dast-traversal-visitor.h201 ZonePtrList<CaseClause>* clauses = stmt->cases(); in VisitSwitchStatement() local
202 for (int i = 0; i < clauses->length(); ++i) { in VisitSwitchStatement()
203 CaseClause* clause = clauses->at(i); in VisitSwitchStatement()
/external/doclava/res/assets/templates-sdk/assets/js/
Ddocs.js4920 var clauses = expressions[i];
4923 var resources = getResourcesForClause(clauses.shift());
4926 …results = results.concat(resources.map(filterResources(clauses, i > 0, instanceMap)).filter(filter…
4951 function filterResources(clauses, removeDuplicates, map) { argument
4969 if (clauses.length > 0) {
4970 resourceIsAllowed = resourceIsAllowed && doesResourceMatchClauses(resource, clauses);
5026 function doesResourceMatchClauses(resource, clauses) { argument
5027 for (var i = 0; i < clauses.length; i++) {
5029 switch (clauses[i].attr) {
5031 map = METADATA.hasType[clauses[i].value];
[all …]
/external/python/cpython2/Doc/reference/
Dcompound_stmts.rst23 Compound statements consist of one or more 'clauses.' A clause consists of a
63 ``DEDENT``. Also note that optional continuation clauses always begin with a
235 handler is started. This search inspects the except clauses in turn until one
253 executed. All except clauses must have an executable block. When the end of
286 clause are not handled by the preceding :keyword:`except` clauses.
292 :keyword:`else` clauses. If an exception occurs in any of the clauses and is
/external/minijail/tools/
Dparser.py352 clauses = []
354 clauses.append(self._parse_clause(tokens))
360 return clauses
/external/python/cpython3/Doc/reference/
Dcompound_stmts.rst26 A compound statement consists of one or more 'clauses.' A clause consists of a
68 ``DEDENT``. Also note that optional continuation clauses always begin with a
250 handler is started. This search inspects the except clauses in turn until one
270 the except clause's suite is executed. All except clauses must have an
317 clauses.
323 :keyword:`!else` clauses. If an exception occurs in any of the clauses and is
Dexpressions.rst188 :keyword:`!for` clause and zero or more :keyword:`!for` or :keyword:`!if` clauses.
190 by considering each of the :keyword:`!for` or :keyword:`!if` clauses a block,
200 nested scope. Subsequent :keyword:`!for` clauses and any filter condition in the
218 clauses, and may also use :keyword:`await` expressions.
219 If a comprehension contains either :keyword:`!async for` clauses
328 expressions separated with a colon followed by the usual "for" and "if" clauses.
367 Subsequent :keyword:`!for` clauses and any filter condition in the leftmost
382 clauses or :keyword:`await` expressions it is called an
470 allowing any pending :keyword:`finally` clauses to execute.
647 clauses. In this case, it is the responsibility of the event loop or
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/docs/HistoricalNotes/
D2001-05-18-ExceptionHandling.txt104 handling is *very* impractical. Also, the "with" clauses describe the
133 d->~D(); // destruct D as it goes out of scope when entering catch clauses
/external/swiftshader/third_party/LLVM/docs/HistoricalNotes/
D2001-05-18-ExceptionHandling.txt104 handling is *very* impractical. Also, the "with" clauses describe the
133 d->~D(); // destruct D as it goes out of scope when entering catch clauses
/external/llvm/docs/HistoricalNotes/
D2001-05-18-ExceptionHandling.txt104 handling is *very* impractical. Also, the "with" clauses describe the
133 d->~D(); // destruct D as it goes out of scope when entering catch clauses
/external/clang/include/clang/AST/
DStmtOpenMP.h139 return getClausesOfKind<SpecificClause>(clauses()); in getClausesOfKind()
190 OMPClause *getClause(unsigned i) const { return clauses()[i]; } in getClause()
215 ArrayRef<OMPClause *> clauses() { return getClauses(); } in clauses() function
217 ArrayRef<OMPClause *> clauses() const { in clauses() function
/external/python/cpython2/Objects/
Dlnotab_notes.txt107 would break jumps around loops without else clauses.
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/X86/
Dwineh-coreclr.ll165 ; ^ number of EH clauses
341 ; ^ number of EH clauses
554 ; ^ number of EH clauses
/external/llvm/test/CodeGen/X86/
Dwineh-coreclr.ll165 ; ^ number of EH clauses
340 ; ^ number of EH clauses
553 ; ^ number of EH clauses

1234