OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ControlScope
(Results
1 - 9
of
9
) sorted by null
/external/v8/src/interpreter/
bytecode-generator.h
32
class
ControlScope
;
111
inline
ControlScope
* execution_control() const { return execution_control_; }
112
inline void set_execution_control(
ControlScope
* scope) {
142
ControlScope
* execution_control_;
bytecode-generator.cc
80
// visitor. The pattern derives AstGraphBuilder::
ControlScope
.
81
class BytecodeGenerator::
ControlScope
BASE_EMBEDDED {
83
explicit
ControlScope
(BytecodeGenerator* generator)
87
virtual ~
ControlScope
() { generator_->set_execution_control(outer()); }
98
ControlScope
* outer() const { return outer_; }
102
ControlScope
* outer_;
104
DISALLOW_COPY_AND_ASSIGN(
ControlScope
);
110
: public BytecodeGenerator::
ControlScope
{
115
:
ControlScope
(generator),
141
: 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_;
134
ControlScope
* execution_control() const { return execution_control_; }
154
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_;
214
class AstGraphBuilder::
ControlScope
::DeferredCommands : public ZoneObject {
277
class AstGraphBuilder::ControlScopeForBreakable : public
ControlScope
{
281
:
ControlScope
(owner), target_(target), control_(control) {}
305
class AstGraphBuilder::ControlScopeForIteration : public
ControlScope
{
309
:
ControlScope
(owner), target_(target), control_(control) {}
335
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 847 milliseconds