Home
last modified time | relevance | path

Searched refs:declarations_ (Results 1 – 5 of 5) sorted by relevance

/external/v8/src/torque/
Dtype-oracle.h21 : declarations_(declarations) {} in TypeOracle()
100 return Get().declarations_->TryLookupMacro(name, {from}) != nullptr; in IsImplicitlyConvertableFrom()
105 return declarations_->LookupGlobalType(name); in GetBuiltinType()
108 Declarations* declarations_; variable
Dfile-visitor.h24 declarations_(global_context.declarations()), in FileVisitor()
89 Declarations* declarations_; variable
Ddeclarations.h206 : declarations_(declarations) { in ScopedGenericSpecializationKey()
210 declarations_->current_generic_specialization_ = nullptr; in ~ScopedGenericSpecializationKey()
214 Declarations* declarations_;
Dglobal-context.h99 Declarations* declarations() { return &declarations_; } in declarations()
105 Declarations declarations_; variable
/external/v8/src/interpreter/
Dbytecode-generator.cc696 : declarations_(0, zone), in GlobalDeclarationsBuilder()
704 declarations_.push_back(Declaration(name, slot, literal_slot, func)); in AddFunctionDeclaration()
709 declarations_.push_back(Declaration(name, slot, nullptr)); in AddUndefinedDeclaration()
718 static_cast<int>(declarations_.size() * 4), TENURED); in AllocateDeclarations()
719 for (const Declaration& declaration : declarations_) { in AllocateDeclarations()
759 bool empty() { return declarations_.empty(); } in empty()
779 ZoneVector<Declaration> declarations_; member in v8::internal::interpreter::BytecodeGenerator::GlobalDeclarationsBuilder