Lines Matching defs:structure
143 Object* structure,
147 // data structure used to store the callbacks. Eventually proxy
149 if (structure->IsProxy()) {
151 reinterpret_cast<AccessorDescriptor*>(Proxy::cast(structure)->proxy());
158 if (structure->IsAccessorInfo()) {
159 AccessorInfo* data = AccessorInfo::cast(structure);
181 if (structure->IsFixedArray()) {
182 Object* getter = FixedArray::cast(structure)->get(kGetterIndex);
1559 Object* JSObject::SetPropertyWithCallback(Object* structure,
1571 // data structure used to store the callbacks. Eventually proxy
1573 if (structure->IsProxy()) {
1575 reinterpret_cast<AccessorDescriptor*>(Proxy::cast(structure)->proxy());
1582 if (structure->IsAccessorInfo()) {
1584 AccessorInfo* data = AccessorInfo::cast(structure);
1603 if (structure->IsFixedArray()) {
1604 Object* setter = FixedArray::cast(structure)->get(kSetterIndex);
2784 Object* structure = Heap::AllocateFixedArray(2, TENURED);
2785 if (structure->IsFailure()) return structure;
2795 element_dictionary()->Set(index, structure, details);
2817 return SetNormalizedProperty(name, structure, details);
2820 return structure;
5733 FixedArray* structure = FixedArray::cast(element);
5734 if (structure->get(kSetterIndex)->IsJSFunction()) {
5735 JSFunction* setter = JSFunction::cast(structure->get(kSetterIndex));
5858 FixedArray* structure = FixedArray::cast(element);
5859 Object* getter = structure->get(kGetterIndex);
6015 FixedArray* structure = FixedArray::cast(element);
6016 Object* getter = structure->get(kGetterIndex);