OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:is_script_scope
(Results
1 - 25
of
28
) sorted by null
1
2
/external/v8/src/ast/
variables.cc
62
scope_ != NULL && scope_->
is_script_scope
() && !is_this();
70
scope_ != NULL && scope_->
is_script_scope
() && !is_this();
scopes.cc
176
is_module_scope() ||
is_script_scope
();
292
while (!top->
is_script_scope
() &&
451
(
is_script_scope
() && IsDeclaredVariableMode(mode) &&
548
DCHECK(
is_script_scope
());
826
while (!scope->
is_script_scope
() &&
884
while (!top->
is_script_scope
() && !top->outer_scope()->already_resolved()) {
[
all
...]
scopes.h
332
bool
is_script_scope
() const { return scope_type_ == SCRIPT_SCOPE; }
function in class:v8::internal::Scope
[
all
...]
/external/v8/src/parsing/
rewriter.cc
342
if (!scope->
is_script_scope
() && !scope->is_eval_scope()) return true;
pattern-rewriter.cc
220
if (initialization_scope->
is_script_scope
() &&
parser.h
407
if (scope->DeclarationScope()->
is_script_scope
() &&
[
all
...]
preparser.cc
[
all
...]
parser.cc
879
if (!scope->
is_script_scope
() || is_strict(info->language_mode())) {
[
all
...]
/external/v8/src/interpreter/
bytecode-generator.cc
[
all
...]
/external/v8/src/compiler/
ast-graph-builder.cc
466
if (closure_scope->
is_script_scope
() ||
[
all
...]
/external/v8/src/full-codegen/arm64/
full-codegen-arm64.cc
184
if (info->scope()->
is_script_scope
()) {
[
all
...]
/external/v8/src/full-codegen/ia32/
full-codegen-ia32.cc
173
if (info->scope()->
is_script_scope
()) {
[
all
...]
/external/v8/src/full-codegen/ppc/
full-codegen-ppc.cc
186
if (info->scope()->
is_script_scope
()) {
[
all
...]
/external/v8/src/full-codegen/x64/
full-codegen-x64.cc
171
if (info->scope()->
is_script_scope
()) {
[
all
...]
/external/v8/src/full-codegen/x87/
full-codegen-x87.cc
173
if (info->scope()->
is_script_scope
()) {
[
all
...]
/external/v8/test/cctest/
test-parsing.cc
[
all
...]
/external/v8/src/full-codegen/arm/
full-codegen-arm.cc
181
if (info->scope()->
is_script_scope
()) {
[
all
...]
/external/v8/src/full-codegen/mips/
full-codegen-mips.cc
191
if (info->scope()->
is_script_scope
()) {
[
all
...]
/external/v8/src/full-codegen/mips64/
full-codegen-mips64.cc
190
if (info->scope()->
is_script_scope
()) {
[
all
...]
/external/v8/src/crankshaft/arm/
lithium-codegen-arm.cc
169
if (info()->scope()->
is_script_scope
()) {
[
all
...]
/external/v8/src/crankshaft/arm64/
lithium-codegen-arm64.cc
651
if (info()->scope()->
is_script_scope
()) {
[
all
...]
/external/v8/src/crankshaft/ia32/
lithium-codegen-ia32.cc
245
if (info()->scope()->
is_script_scope
()) {
[
all
...]
/external/v8/src/crankshaft/mips/
lithium-codegen-mips.cc
189
if (info()->scope()->
is_script_scope
()) {
[
all
...]
/external/v8/src/crankshaft/mips64/
lithium-codegen-mips64.cc
164
if (info()->scope()->
is_script_scope
()) {
[
all
...]
/external/v8/src/crankshaft/ppc/
lithium-codegen-ppc.cc
175
if (info()->scope()->
is_script_scope
()) {
[
all
...]
Completed in 1760 milliseconds
1
2