OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:is_function_scope
(Results
1 - 9
of
9
) sorted by null
/external/v8/src/
scopes.cc
337
if (
is_function_scope
()) {
444
ASSERT(
is_function_scope
());
800
if (
is_function_scope
()) {
923
if (*binding_kind == BOUND && (
is_function_scope
() || is_with_scope())) {
[
all
...]
scopes.h
133
ASSERT(
is_function_scope
() && function_ == NULL);
269
bool
is_function_scope
() const { return type_ == FUNCTION_SCOPE; }
function in class:v8::internal::Scope
276
return is_eval_scope() ||
is_function_scope
() || is_global_scope();
318
ASSERT(
is_function_scope
());
325
ASSERT(
is_function_scope
());
scopeinfo.cc
55
if (scope->
is_function_scope
() && scope->function() != NULL) {
parser.cc
[
all
...]
hydrogen.cc
[
all
...]
/external/v8/src/arm/
full-codegen-arm.cc
277
if (scope()->
is_function_scope
() && scope()->function() != NULL) {
[
all
...]
/external/v8/src/ia32/
full-codegen-ia32.cc
271
if (scope()->
is_function_scope
() && scope()->function() != NULL) {
[
all
...]
/external/v8/src/mips/
full-codegen-mips.cc
284
if (scope()->
is_function_scope
() && scope()->function() != NULL) {
[
all
...]
/external/v8/src/x64/
full-codegen-x64.cc
284
if (scope()->
is_function_scope
() && scope()->function() != NULL) {
[
all
...]
Completed in 594 milliseconds