Searched defs:enumerable (Results 1 - 7 of 7) sorted by relevance

/external/v8/src/
H A Dproperty-descriptor.cc19 // "enumerable", other properties are handled the same way.
24 // 4. Let hasEnumerable be HasProperty(Obj, "enumerable").
30 // 6a. Let enum be ToBoolean(Get(Obj, "enumerable")).
138 isolate->heap()->ToBoolean(enumerable()));
153 isolate->heap()->ToBoolean(enumerable()));
174 factory->ToBoolean(enumerable()));
205 // enumerable?
206 Handle<Object> enumerable; local
209 &enumerable)) {
213 if (!enumerable
[all...]
H A Dproperty-descriptor.h70 bool enumerable() const { return enumerable_; } function in class:v8::internal::PropertyDescriptor
71 void set_enumerable(bool enumerable) { argument
72 enumerable_ = enumerable;
108 (has_enumerable() && !enumerable() ? DONT_ENUM : NONE) |
H A Dapi.cc4248 void v8::PropertyDescriptor::set_enumerable(bool enumerable) { argument
4249 private_->desc.set_enumerable(enumerable);
4252 bool v8::PropertyDescriptor::enumerable() const { function in class:v8::v8::PropertyDescriptor
4254 return private_->desc.enumerable();
/external/v8/src/parsing/
H A Dparser-base.h5501 ExpressionT enumerable = impl()->EmptyExpression(); local
5504 enumerable = ParseAssignmentExpression(true, CHECK_OK);
5507 enumerable = ParseExpression(true, CHECK_OK);
5527 loop, each_variable, enumerable, body_block, each_keyword_pos);
5565 ExpressionT enumerable = impl()->EmptyExpression(); local
5568 enumerable = ParseAssignmentExpression(true, CHECK_OK);
5571 enumerable = ParseExpression(true, CHECK_OK);
5586 loop, expression, enumerable, body, each_keyword_pos);
/external/v8/src/ast/
H A Dast.h726 Expression* enumerable() const { function in class:v8::internal::final
/external/v8/src/crankshaft/
H A Dhydrogen-instructions.h6661 HValue* enumerable() const { return OperandAt(1); } function in class:final::final
6688 HValue* enumerable() const { return OperandAt(0); } function in class:final::final
6707 HForInCacheArray(HValue* enumerable, argument
6710 SetOperandAt(0, enumerable);
H A Dhydrogen.cc4812 CHECK_ALIVE(VisitForValue(stmt->enumerable()));
4813 HValue* enumerable = Top(); // Leave enumerable at the top. local
4817 enumerable, graph()->GetConstantUndefined());
4820 enumerable, graph()->GetConstantNull());
4823 BuildForInBody(stmt, each_var, enumerable);
4829 HValue* enumerable) {
4832 BuildCheckHeapObject(enumerable);
4833 Add<HCheckInstanceType>(enumerable, HCheckInstanceType::IS_JS_RECEIVER);
4836 HForInPrepareMap* map = Add<HForInPrepareMap>(enumerable);
4827 BuildForInBody(ForInStatement* stmt, Variable* each_var, HValue* enumerable) argument
[all...]

Completed in 291 milliseconds