Home
last modified time | relevance | path

Searched refs:clause (Results 1 – 25 of 115) sorted by relevance

12345

/external/clang/test/Parser/
Dobjc-try-catch-1.m42 @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/
Dprettyprinter.h76 void PrintCaseClause(CaseClause* clause);
102 void PrintCaseClause(CaseClause* clause);
Dprettyprinter.cc598 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()
Drewriter.cc187 CaseClause* clause = clauses->at(i); in VisitSwitchStatement() local
188 Process(clause->statements()); in VisitSwitchStatement()
Dtype-info.h293 TypeInfo SwitchType(CaseClause* clause);
/external/libyuv/
DBUILD10 licenses(['notice']) # 3-clause BSD
/external/clang/test/Rewriter/
Drewrite-try-catch.m23 // no catch clause
Drewrite-modern-throw.m34 // no catch clause
/external/llvm/docs/HistoricalNotes/
D2001-05-19-ExceptionResponse.txt10 > The finally clause in Java may need more thought. The code for this clause
/external/v8/
DLICENSE13 Apple Computer, Inc. and released under a 3-clause BSD license.
21 under a 3-clause BSD license.
/external/wpa_supplicant_8/
DCOPYING15 license option (the one with advertisement clause removed) is compatible
DREADME8 advertisement clause removed).
/external/chromium/testing/gmock/
DCHANGES60 * 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/
Dwpa_passphrase.sgml71 advertisement clause removed).</para>
Dwpa_gui.sgml83 advertisement clause removed).</para>
/external/eigen/cmake/
DFindEigen3.cmake16 # Redistribution and use is allowed according to the terms of the 2-clause BSD license.
DFindStandardMathLibrary.cmake13 # Redistribution and use is allowed according to the terms of the 2-clause BSD license.
/external/liblzf/
DChanges37 - 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/
DLICENSE15 LICENSE 1 ("BSD-like with advertising clause"):
/external/webkit/Source/JavaScriptCore/parser/
DNodeConstructors.h837 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/
Dreadme.txt23 commercial exploitation, but have no clause forcing sharing of source code.
/external/antlr/antlr-3.4/runtime/Python/tests/
Dt042ast.g156 -> // yield nothing as else-clause
/external/v8/src/arm/
Dfull-codegen-arm.cc914 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/
Dfull-codegen-x64.cc823 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/
Dfull-codegen-ia32.cc882 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 …]

12345