/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/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()
|
D | rewriter.cc | 187 CaseClause* clause = clauses->at(i); in VisitSwitchStatement() local 188 Process(clause->statements()); in VisitSwitchStatement()
|
D | type-info.h | 293 TypeInfo SwitchType(CaseClause* clause);
|
/external/libyuv/ |
D | BUILD | 10 licenses(['notice']) # 3-clause BSD
|
/external/clang/test/Rewriter/ |
D | rewrite-try-catch.m | 23 // no catch clause
|
D | rewrite-modern-throw.m | 34 // no catch clause
|
/external/llvm/docs/HistoricalNotes/ |
D | 2001-05-19-ExceptionResponse.txt | 10 > The finally clause in Java may need more thought. The code for this clause
|
/external/v8/ |
D | LICENSE | 13 Apple Computer, Inc. and released under a 3-clause BSD license. 21 under a 3-clause BSD license.
|
/external/wpa_supplicant_8/ |
D | COPYING | 15 license option (the one with advertisement clause removed) is compatible
|
D | README | 8 advertisement clause removed).
|
/external/chromium/testing/gmock/ |
D | CHANGES | 60 * New feature: the .After() clause for specifying expectation order. 61 * New feature: the .With() clause for for specifying inter-argument
|
/external/wpa_supplicant_8/wpa_supplicant/doc/docbook/ |
D | wpa_passphrase.sgml | 71 advertisement clause removed).</para>
|
D | wpa_gui.sgml | 83 advertisement clause removed).</para>
|
/external/eigen/cmake/ |
D | FindEigen3.cmake | 16 # Redistribution and use is allowed according to the terms of the 2-clause BSD license.
|
D | FindStandardMathLibrary.cmake | 13 # Redistribution and use is allowed according to the terms of the 2-clause BSD license.
|
/external/liblzf/ |
D | Changes | 37 - switched to 2-clause bsd with "GPL v2 or any later version" option. 52 - switched to a 2-clause bsd license with GPL exception.
|
/external/libpng/contrib/gregbook/ |
D | LICENSE | 15 LICENSE 1 ("BSD-like with advertising clause"):
|
/external/webkit/Source/JavaScriptCore/parser/ |
D | NodeConstructors.h | 837 inline ClauseListNode::ClauseListNode(JSGlobalData*, CaseClauseNode* clause) in ClauseListNode() argument 838 : m_clause(clause) in ClauseListNode() 843 …e ClauseListNode::ClauseListNode(JSGlobalData*, ClauseListNode* clauseList, CaseClauseNode* clause) in ClauseListNode() argument 844 : m_clause(clause) in ClauseListNode()
|
/external/quake/quake/src/ |
D | readme.txt | 23 commercial exploitation, but have no clause forcing sharing of source code.
|
/external/antlr/antlr-3.4/runtime/Python/tests/ |
D | t042ast.g | 156 -> // yield nothing as else-clause
|
/external/v8/src/arm/ |
D | full-codegen-arm.cc | 914 CaseClause* clause = clauses->at(i); in VisitSwitchStatement() local 915 clause->body_target()->Unuse(); in VisitSwitchStatement() 918 if (clause->is_default()) { in VisitSwitchStatement() 919 default_clause = clause; in VisitSwitchStatement() 928 VisitForAccumulatorValue(clause->label()); in VisitSwitchStatement() 942 __ b(clause->body_target()); in VisitSwitchStatement() 947 SetSourcePosition(clause->position()); in VisitSwitchStatement() 949 CallIC(ic, RelocInfo::CODE_TARGET, clause->CompareId()); in VisitSwitchStatement() 955 __ b(clause->body_target()); in VisitSwitchStatement() 971 CaseClause* clause = clauses->at(i); in VisitSwitchStatement() local [all …]
|
/external/v8/src/x64/ |
D | full-codegen-x64.cc | 823 CaseClause* clause = clauses->at(i); in VisitSwitchStatement() local 824 clause->body_target()->Unuse(); in VisitSwitchStatement() 827 if (clause->is_default()) { in VisitSwitchStatement() 828 default_clause = clause; in VisitSwitchStatement() 837 VisitForAccumulatorValue(clause->label()); in VisitSwitchStatement() 852 __ jmp(clause->body_target()); in VisitSwitchStatement() 857 SetSourcePosition(clause->position()); in VisitSwitchStatement() 859 __ call(ic, RelocInfo::CODE_TARGET, clause->CompareId()); in VisitSwitchStatement() 865 __ jmp(clause->body_target()); in VisitSwitchStatement() 881 CaseClause* clause = clauses->at(i); in VisitSwitchStatement() local [all …]
|
/external/v8/src/ia32/ |
D | full-codegen-ia32.cc | 882 CaseClause* clause = clauses->at(i); in VisitSwitchStatement() local 883 clause->body_target()->Unuse(); in VisitSwitchStatement() 886 if (clause->is_default()) { in VisitSwitchStatement() 887 default_clause = clause; in VisitSwitchStatement() 896 VisitForAccumulatorValue(clause->label()); in VisitSwitchStatement() 911 __ jmp(clause->body_target()); in VisitSwitchStatement() 916 SetSourcePosition(clause->position()); in VisitSwitchStatement() 918 CallIC(ic, RelocInfo::CODE_TARGET, clause->CompareId()); in VisitSwitchStatement() 923 __ jmp(clause->body_target()); in VisitSwitchStatement() 939 CaseClause* clause = clauses->at(i); in VisitSwitchStatement() local [all …]
|