Searched defs:ControlScope (Results 1 - 3 of 3) sorted by relevance

/external/clang/include/clang/Sema/
H A DScope.h60 ControlScope = 0x10, enumerator in enum:clang::Scope::ScopeFlags
/external/v8/src/interpreter/
H A Dbytecode-generator.cc91 // visitor. The pattern derives AstGraphBuilder::ControlScope.
92 class BytecodeGenerator::ControlScope BASE_EMBEDDED {
94 explicit ControlScope(BytecodeGenerator* generator) function in class:v8::internal::interpreter::BASE_EMBEDDED
99 virtual ~ControlScope() { generator_->set_execution_control(outer()); }
114 ControlScope* outer() const { return outer_; }
119 ControlScope* outer_;
122 DISALLOW_COPY_AND_ASSIGN(ControlScope);
129 class BytecodeGenerator::ControlScope::DeferredCommands final {
194 ControlScope* execution_control() { return generator_->execution_control(); }
205 : public BytecodeGenerator::ControlScope {
[all...]
/external/v8/src/compiler/
H A Dast-graph-builder.cc146 class AstGraphBuilder::ControlScope BASE_EMBEDDED {
148 explicit ControlScope(AstGraphBuilder* builder) function in class:v8::internal::compiler::BASE_EMBEDDED
156 virtual ~ControlScope() {
204 ControlScope* outer_;
213 class AstGraphBuilder::ControlScope::DeferredCommands : public ZoneObject {
299 class AstGraphBuilder::ControlScopeForBreakable : public ControlScope {
303 : ControlScope(owner), target_(target), control_(control) {}
327 class AstGraphBuilder::ControlScopeForIteration : public ControlScope {
331 : ControlScope(owner), target_(target), control_(control) {}
357 class AstGraphBuilder::ControlScopeForCatch : public ControlScope {
[all...]

Completed in 57 milliseconds