HomeSort by relevance Sort by last modified time
    Searched refs:ObjectLiteral (Results 1 - 21 of 21) sorted by null

  /external/v8/src/
ast.cc 171 ObjectLiteral::Property::Property(Literal* key, Expression* value) {
188 ObjectLiteral::Property::Property(bool is_getter, FunctionLiteral* value) {
196 bool ObjectLiteral::Property::IsCompileTimeValue() {
203 void ObjectLiteral::Property::set_emit_store(bool emit_store) {
208 bool ObjectLiteral::Property::emit_store() {
240 void ObjectLiteral::CalculateEmitStore() {
244 ObjectLiteral::Property* property = this->properties()->at(i);
283 if (property->kind() == ObjectLiteral::Property::COMPUTED) {
prettyprinter.cc 261 void PrettyPrinter::VisitObjectLiteral(ObjectLiteral* node) {
265 ObjectLiteral::Property* property = node->properties()->at(i);
918 void AstPrinter::VisitObjectLiteral(ObjectLiteral* node) {
923 case ObjectLiteral::Property::CONSTANT:
926 case ObjectLiteral::Property::COMPUTED:
929 case ObjectLiteral::Property::MATERIALIZED_LITERAL:
932 case ObjectLiteral::Property::PROTOTYPE:
935 case ObjectLiteral::Property::GETTER:
938 case ObjectLiteral::Property::SETTER:
    [all...]
parser.h 530 ObjectLiteral::Property* ParseObjectLiteralGetSet(bool is_getter, bool* ok);
541 ZoneList<ObjectLiteral::Property*>* properties,
554 bool IsBoilerplateProperty(ObjectLiteral::Property* property);
rewriter.cc 249 void Processor::VisitObjectLiteral(ObjectLiteral* node) {
parser.cc     [all...]
ast.h 80 V(ObjectLiteral) \
917 class ObjectLiteral: public MaterializedLiteral {
951 ObjectLiteral(Handle<FixedArray> constant_properties,
964 DECLARE_NODE_TYPE(ObjectLiteral)
    [all...]
data-flow.cc 364 void AssignedVariablesAnalyzer::VisitObjectLiteral(ObjectLiteral* expr) {
hydrogen.cc     [all...]
hydrogen-instructions.h 137 V(ObjectLiteral) \
    [all...]
full-codegen.cc 182 void BreakableStatementChecker::VisitObjectLiteral(ObjectLiteral* expr) {
    [all...]
runtime.cc 503 bool should_have_fast_elements = (flags & ObjectLiteral::kFastElements) != 0;
504 bool has_function_literal = (flags & ObjectLiteral::kHasFunction) != 0;
529 bool should_have_fast_elements = (flags & ObjectLiteral::kFastElements) != 0;
530 bool has_function_literal = (flags & ObjectLiteral::kHasFunction) != 0;
    [all...]
  /external/v8/test/cctest/
test-func-name-inference.cc 215 TEST(ObjectLiteral) {
  /external/v8/src/arm/
full-codegen-arm.cc     [all...]
lithium-arm.h 135 V(ObjectLiteral) \
    [all...]
  /external/v8/src/x64/
full-codegen-x64.cc     [all...]
lithium-x64.h 135 V(ObjectLiteral) \
    [all...]
  /external/v8/src/ia32/
full-codegen-ia32.cc     [all...]
lithium-ia32.h 137 V(ObjectLiteral) \
    [all...]
lithium-codegen-ia32.cc     [all...]
  /external/v8/src/mips/
full-codegen-mips.cc 346 void FullCodeGenerator::VisitObjectLiteral(ObjectLiteral* expr) {
codegen-mips.cc 579 void CodeGenerator::VisitObjectLiteral(ObjectLiteral* node) {

Completed in 196 milliseconds