HomeSort by relevance Sort by last modified time
    Searched refs:ControlScope (Results 1 - 9 of 9) sorted by null

  /external/v8/src/interpreter/
bytecode-generator.h 38 class ControlScope;
182 inline ControlScope* execution_control() const { return execution_control_; }
183 inline void set_execution_control(ControlScope* scope) {
212 ControlScope* execution_control_;
bytecode-generator.cc 91 // visitor. The pattern derives AstGraphBuilder::ControlScope.
92 class BytecodeGenerator::ControlScope BASE_EMBEDDED {
94 explicit ControlScope(BytecodeGenerator* generator)
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/clang/lib/Sema/
Scope.cpp 155 } else if (Flags & ControlScope) {
156 OS << "ControlScope";
157 Flags &= ~ControlScope;
IdentifierResolver.cpp 122 if (S->getParent()->getFlags() & Scope::ControlScope) {
  /external/v8/src/compiler/
ast-graph-builder.h 68 class ControlScope;
88 ControlScope* execution_control_;
137 ControlScope* execution_control() const { return execution_control_; }
157 void set_execution_control(ControlScope* ctrl) { execution_control_ = ctrl; }
ast-graph-builder.cc 146 class AstGraphBuilder::ControlScope BASE_EMBEDDED {
148 explicit ControlScope(AstGraphBuilder* builder)
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...]
  /external/clang/include/clang/Sema/
Scope.h 60 ControlScope = 0x10,
  /external/clang/lib/Parse/
ParseStmt.cpp 472 ParseScope ExpectScope(this, Scope::DeclScope | Scope::ControlScope |
    [all...]
ParseDecl.cpp     [all...]

Completed in 212 milliseconds