OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ObjectLiteral
(Results
1 - 25
of
40
) sorted by null
1
2
/external/chromium_org/v8/src/
ast.cc
217
bool
ObjectLiteral
::Property::IsCompileTimeValue() {
224
void
ObjectLiteral
::Property::set_emit_store(bool emit_store) {
229
bool
ObjectLiteral
::Property::emit_store() {
234
void
ObjectLiteral
::CalculateEmitStore(Zone* zone) {
240
ObjectLiteral
::Property* property = properties()->at(i);
246
if ((property->kind() ==
ObjectLiteral
::Property::MATERIALIZED_LITERAL ||
247
property->kind() ==
ObjectLiteral
::Property::COMPUTED) &&
258
bool
ObjectLiteral
::IsBoilerplateProperty(
ObjectLiteral
::Property* property) {
260
property->kind() !=
ObjectLiteral
::Property::PROTOTYPE
[
all
...]
prettyprinter.cc
344
void PrettyPrinter::VisitObjectLiteral(
ObjectLiteral
* node) {
348
ObjectLiteral
::Property* property = node->properties()->at(i);
1011
void AstPrinter::VisitObjectLiteral(
ObjectLiteral
* node) {
1016
case
ObjectLiteral
::Property::CONSTANT:
1019
case
ObjectLiteral
::Property::COMPUTED:
1022
case
ObjectLiteral
::Property::MATERIALIZED_LITERAL:
1025
case
ObjectLiteral
::Property::PROTOTYPE:
1028
case
ObjectLiteral
::Property::GETTER:
1031
case
ObjectLiteral
::Property::SETTER:
typing.cc
357
void AstTyper::VisitObjectLiteral(
ObjectLiteral
* expr) {
358
ZoneList<
ObjectLiteral
::Property*>* properties = expr->properties();
360
ObjectLiteral
::Property* prop = properties->at(i);
363
if ((prop->kind() ==
ObjectLiteral
::Property::MATERIALIZED_LITERAL &&
365
prop->kind() ==
ObjectLiteral
::Property::COMPUTED) {
ast.h
105
V(
ObjectLiteral
) \
[
all
...]
full-codegen.h
859
ObjectLiteral
::Accessors,
863
TemplateHashMap<Literal,
ObjectLiteral
::Accessors,
870
if (it->second == NULL) it->second = new(zone_)
ObjectLiteral
::Accessors();
[
all
...]
/external/v8/src/
ast.cc
174
ObjectLiteral
::Property::Property(Literal* key,
194
ObjectLiteral
::Property::Property(bool is_getter, FunctionLiteral* value) {
201
bool
ObjectLiteral
::Property::IsCompileTimeValue() {
208
void
ObjectLiteral
::Property::set_emit_store(bool emit_store) {
213
bool
ObjectLiteral
::Property::emit_store() {
245
void
ObjectLiteral
::CalculateEmitStore() {
248
ObjectLiteral
::Property* property = properties()->at(i);
254
if (property->kind() ==
ObjectLiteral
::Property::COMPUTED &&
608
void
ObjectLiteral
::Property::RecordTypeFeedback(TypeFeedbackOracle* oracle) {
1019
INCREASE_NODE_COUNT(
ObjectLiteral
)
[
all
...]
prettyprinter.cc
311
void PrettyPrinter::VisitObjectLiteral(
ObjectLiteral
* node) {
315
ObjectLiteral
::Property* property = node->properties()->at(i);
971
void AstPrinter::VisitObjectLiteral(
ObjectLiteral
* node) {
976
case
ObjectLiteral
::Property::CONSTANT:
979
case
ObjectLiteral
::Property::COMPUTED:
982
case
ObjectLiteral
::Property::MATERIALIZED_LITERAL:
985
case
ObjectLiteral
::Property::PROTOTYPE:
988
case
ObjectLiteral
::Property::GETTER:
991
case
ObjectLiteral
::Property::SETTER:
type-info.h
248
bool ObjectLiteralStoreIsMonomorphic(
ObjectLiteral
::Property* prop);
278
Handle<Map> GetObjectLiteralStoreMap(
ObjectLiteral
::Property* prop);
ast.h
101
V(
ObjectLiteral
) \
[
all
...]
full-codegen.h
811
ObjectLiteral
::Accessors,
816
ObjectLiteral
::Accessors,
822
if (it->second == NULL) it->second = new(zone_)
ObjectLiteral
::Accessors();
parser.h
642
ObjectLiteral
::Property* ParseObjectLiteralGetSet(bool is_getter, bool* ok);
648
ZoneList<
ObjectLiteral
::Property*>* properties,
661
bool IsBoilerplateProperty(
ObjectLiteral
::Property* property);
parser.cc
[
all
...]
type-info.cc
169
ObjectLiteral
::Property* prop) {
290
ObjectLiteral
::Property* prop) {
/external/v8/test/cctest/
test-func-name-inference.cc
215
TEST(
ObjectLiteral
) {
/external/chromium_org/v8/test/cctest/
test-func-name-inference.cc
213
TEST(
ObjectLiteral
) {
/external/v8/src/arm/
full-codegen-arm.cc
[
all
...]
lithium-arm.h
140
V(
ObjectLiteral
) \
[
all
...]
/external/v8/src/ia32/
full-codegen-ia32.cc
[
all
...]
lithium-ia32.h
135
V(
ObjectLiteral
) \
[
all
...]
/external/v8/src/mips/
full-codegen-mips.cc
[
all
...]
/external/v8/src/x64/
full-codegen-x64.cc
[
all
...]
/external/chromium_org/v8/src/arm/
full-codegen-arm.cc
[
all
...]
/external/chromium_org/v8/src/ia32/
full-codegen-ia32.cc
[
all
...]
/external/chromium_org/v8/src/mips/
full-codegen-mips.cc
[
all
...]
/external/chromium_org/v8/src/x64/
full-codegen-x64.cc
[
all
...]
Completed in 352 milliseconds
1
2