OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:Breakable
(Results
1 - 5
of
5
) sorted by null
/external/v8/src/
full-codegen.h
44
// AST node visitor which can tell whether a given statement will be
breakable
109
class
Breakable
;
129
virtual
Breakable
* AsBreakable() { return NULL; }
161
class
Breakable
: public NestedStatement {
163
Breakable
(FullCodeGenerator* codegen,
167
virtual ~
Breakable
() {}
168
virtual
Breakable
* AsBreakable() { return this; }
177
DISALLOW_COPY_AND_ASSIGN(
Breakable
);
180
class Iteration : public
Breakable
{
184
:
Breakable
(codegen, iteration_statement) {
[
all
...]
full-codegen.cc
63
// Check if expression is
breakable
.
73
// If the condition is
breakable
the if statement is
breakable
.
88
// Return is
breakable
if the expression is.
105
// Switch statements
breakable
if the tag expression is.
111
// Mark do while as
breakable
to avoid adding a break slot in front of it.
117
// Mark while statements
breakable
if the condition expression is.
123
// Mark for statements
breakable
if the condition expression is.
131
// Mark for in statements
breakable
if the enumerable expression is.
138
// Mark try catch as
breakable
to avoid adding a break slot in front of it
[
all
...]
/external/v8/src/arm/
full-codegen-arm.cc
812
Breakable
nested_statement(this, stmt);
[
all
...]