Home
last modified time | relevance | path

Searched refs:ControlScope (Results 1 – 10 of 10) sorted by relevance

/external/v8/src/interpreter/
Dbytecode-generator.h41 class ControlScope; variable
182 inline ControlScope* execution_control() const { return execution_control_; } in execution_control()
183 inline void set_execution_control(ControlScope* scope) { in set_execution_control()
222 ControlScope* execution_control_;
Dbytecode-generator.cc97 class BytecodeGenerator::ControlScope BASE_EMBEDDED {
99 explicit ControlScope(BytecodeGenerator* generator) in ControlScope() function in v8::internal::interpreter::BASE_EMBEDDED
104 virtual ~ControlScope() { generator_->set_execution_control(outer()); } in ~ControlScope()
126 ControlScope* outer() const { return outer_; } in outer()
131 ControlScope* outer_;
134 DISALLOW_COPY_AND_ASSIGN(ControlScope);
141 class BytecodeGenerator::ControlScope::DeferredCommands final {
206 ControlScope* execution_control() { return generator_->execution_control(); } in execution_control()
217 : public BytecodeGenerator::ControlScope {
220 : ControlScope(generator) {} in ControlScopeForTopLevel()
[all …]
/external/clang/lib/Sema/
DScope.cpp159 } else if (Flags & ControlScope) { in dumpImpl()
161 Flags &= ~ControlScope; in dumpImpl()
DIdentifierResolver.cpp122 if (S->getParent()->getFlags() & Scope::ControlScope) { in isDeclInScope()
DSemaExpr.cpp10103 Scope::ControlScope | Scope::ContinueScope | Scope::BreakScope; in DiagnoseCommaOperator()
10104 const unsigned ForInitFlags = Scope::ControlScope | Scope::DeclScope; in DiagnoseCommaOperator()
/external/v8/src/compiler/
Dast-graph-builder.h71 class ControlScope; variable
89 ControlScope* execution_control_;
130 ControlScope* execution_control() const { return execution_control_; } in execution_control()
150 void set_execution_control(ControlScope* ctrl) { execution_control_ = ctrl; } in set_execution_control()
Dast-graph-builder.cc149 class AstGraphBuilder::ControlScope BASE_EMBEDDED {
151 explicit ControlScope(AstGraphBuilder* builder) in ControlScope() function in v8::internal::compiler::BASE_EMBEDDED
159 virtual ~ControlScope() { in ~ControlScope()
205 ControlScope* outer_;
212 class AstGraphBuilder::ControlScopeForBreakable : public ControlScope {
216 : ControlScope(owner), target_(target), control_(control) {} in ControlScopeForBreakable()
240 class AstGraphBuilder::ControlScopeForIteration : public ControlScope {
244 : ControlScope(owner), target_(target), control_(control) {} in ControlScopeForIteration()
378 ControlScope control(this); in CreateGraph()
829 void AstGraphBuilder::ControlScope::PerformCommand(Command command, in PerformCommand()
[all …]
/external/clang/lib/Parse/
DParseStmt.cpp484 ParseScope ExpectScope(this, Scope::DeclScope | Scope::ControlScope | in ParseSEHExceptBlock()
1141 ParseScope IfScope(this, Scope::DeclScope | Scope::ControlScope, C99orCXX); in ParseIfStatement()
1281 ScopeFlags |= Scope::DeclScope | Scope::ControlScope; in ParseSwitchStatement()
1368 Scope::DeclScope | Scope::ControlScope; in ParseWhileStatement()
1549 ScopeFlags = Scope::DeclScope | Scope::ControlScope; in ParseForStatement()
2146 ParseScope CatchScope(this, Scope::DeclScope | Scope::ControlScope | in ParseCXXCatchBlock()
DParseDecl.cpp2750 = (getCurScope()->getFlags() & (Scope::ControlScope | in ParseDeclarationSpecifiers()
/external/clang/include/clang/Sema/
DScope.h61 ControlScope = 0x10, enumerator