HomeSort by relevance Sort by last modified time
    Searched full:scope_type (Results 1 - 25 of 51) sorted by null

1 2 3

  /external/v8/src/parsing/
preparsed-scope-data.h 26 ScopeScope(PreParsedScopeData* data, ScopeType scope_type,
preparsed-scope-data.cc 32 ScopeType scope_type,
36 data->backing_store_.push_back(scope_type);
preparser.cc 91 DCHECK_EQ(FUNCTION_SCOPE, function_scope->scope_type());
parser-base.h 666 Scope* NewScope(ScopeType scope_type) const {
667 return NewScopeWithParent(scope(), scope_type);
673 Scope* NewScopeWithParent(Scope* parent, ScopeType scope_type) const {
676 DCHECK_NE(FUNCTION_SCOPE, scope_type);
677 DCHECK_NE(SCRIPT_SCOPE, scope_type);
678 DCHECK_NE(MODULE_SCOPE, scope_type);
680 return new (zone()) Scope(zone(), parent, scope_type);
    [all...]
  /external/selinux/libsepol/tests/
test-common.h 30 * scope_type what scope the role should have (eg., SCOPE_DECL or SCOPE_REQ)
37 extern void test_sym_presence(policydb_t * p, const char *id, int sym_type, unsigned int scope_type, unsigned int *decls, unsigned int len);
test-common.c 29 void test_sym_presence(policydb_t * p, const char *id, int sym_type, unsigned int scope_type, unsigned int *decls, unsigned int len)
42 CU_ASSERT(scope->scope == scope_type);
  /external/v8/src/builtins/
builtins-constructor.h 22 ScopeType scope_type);
builtins-constructor.cc 326 Node* function, Node* slots, Node* context, ScopeType scope_type) {
339 switch (scope_type) {
401 Handle<Code> Builtins::NewFunctionContext(ScopeType scope_type) {
402 switch (scope_type) {
builtins.h     [all...]
  /external/v8/src/debug/
debug-scopes.cc 80 if (scope_info->scope_type() == FUNCTION_SCOPE) {
91 if (scope_info->scope_type() != FUNCTION_SCOPE) {
95 if (scope_info->scope_type() == EVAL_SCOPE) {
103 } else if (scope_info->scope_type() == MODULE_SCOPE) {
106 DCHECK(scope_info->scope_type() == SCRIPT_SCOPE);
214 ScopeType scope_type = Type(); local
215 if (scope_type == ScopeTypeGlobal) {
219 } else if (scope_type == ScopeTypeScript) {
225 DCHECK_EQ(nested_scope_chain_.last().scope_info->scope_type(),
253 switch (scope_info->scope_type()) {
    [all...]
debug-evaluate.cc 151 ScopeIterator::ScopeType scope_type = it.Type(); local
152 if (scope_type == ScopeIterator::ScopeTypeLocal) {
153 DCHECK_EQ(FUNCTION_SCOPE, it.CurrentScopeInfo()->scope_type());
174 } else if (scope_type == ScopeIterator::ScopeTypeCatch ||
175 scope_type == ScopeIterator::ScopeTypeWith) {
182 } else if (scope_type == ScopeIterator::ScopeTypeBlock ||
183 scope_type == ScopeIterator::ScopeTypeEval) {
  /external/v8/src/objects/
scope-info.cc 162 ScopeTypeField::encode(scope->scope_type()) |
403 ScopeType ScopeInfo::scope_type() { function in class:v8::internal::ScopeInfo
437 scope_type() == WITH_SCOPE ||
438 (scope_type() == BLOCK_SCOPE && CallsSloppyEval() &&
440 (scope_type() == FUNCTION_SCOPE && CallsSloppyEval()) ||
441 (scope_type() == FUNCTION_SCOPE && IsAsmModule()) ||
442 scope_type() == MODULE_SCOPE;
497 DCHECK_EQ(scope_type(), WITH_SCOPE);
525 DCHECK(scope_type() == MODULE_SCOPE);
617 DCHECK_EQ(scope_type(), MODULE_SCOPE)
    [all...]
scope-info.h 38 ScopeType scope_type();
  /external/v8/src/ast/
scopes.cc 140 Scope::Scope(Zone* zone, Scope* outer_scope, ScopeType scope_type)
144 scope_type_(scope_type) {
145 DCHECK_NE(SCRIPT_SCOPE, scope_type);
175 ScopeType scope_type,
177 : Scope(zone, outer_scope, scope_type),
181 DCHECK_NE(scope_type, SCRIPT_SCOPE);
242 Scope::Scope(Zone* zone, ScopeType scope_type, Handle<ScopeInfo> scope_info)
247 scope_type_(scope_type) {
259 DeclarationScope::DeclarationScope(Zone* zone, ScopeType scope_type,
261 : Scope(zone, scope_type, scope_info)
    [all...]
scopes.h 94 Scope(Zone* zone, Scope* outer_scope, ScopeType scope_type);
346 ScopeType scope_type() const { return scope_type_; } function in class:v8::internal::Scope
616 DeclarationScope(Zone* zone, Scope* outer_scope, ScopeType scope_type,
618 DeclarationScope(Zone* zone, ScopeType scope_type,
    [all...]
  /external/v8/src/compiler/
js-operator.cc 247 int slot_count, ScopeType scope_type)
248 : slot_count_(slot_count), scope_type_(scope_type) {}
253 lhs.scope_type() == rhs.scope_type();
263 static_cast<int>(parameters.scope_type()));
268 return os << parameters.slot_count() << ", " << parameters.scope_type();
    [all...]
js-generic-lowering.cc 402 ScopeType scope_type = parameters.scope_type(); local
408 CodeFactory::FastNewFunctionContext(isolate(), scope_type);
412 node->InsertInput(zone(), 1, jsgraph()->SmiConstant(scope_type));
js-operator.h 310 CreateFunctionContextParameters(int slot_count, ScopeType scope_type);
313 ScopeType scope_type() const { return scope_type_; } function in class:v8::internal::compiler::final
704 const Operator* CreateFunctionContext(int slot_count, ScopeType scope_type);
js-create-lowering.cc 844 ScopeType scope_type = parameters.scope_type(); local
    [all...]
  /external/v8/src/
code-factory.cc 358 ScopeType scope_type) {
359 return Callable(isolate->builtins()->NewFunctionContext(scope_type),
code-factory.h 150 ScopeType scope_type);
factory.cc     [all...]
factory.h 305 ScopeType scope_type);
    [all...]
  /external/v8/src/runtime/
runtime-scopes.cc 744 CONVERT_SMI_ARG_CHECKED(scope_type, 1);
749 length, function, static_cast<ScopeType>(scope_type));
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/C/
C.stg 188 #undef SCOPE_TYPE
191 #define SCOPE_TYPE(scope) p<name>_##scope##_SCOPE
    [all...]

Completed in 3541 milliseconds

1 2 3