Lines Matching refs:FixedArray
22 CAST_ACCESSOR(FixedArray) in CAST_ACCESSOR()
45 Object** FixedArray::GetFirstElementAddress() { in ACCESSORS()
49 bool FixedArray::ContainsOnlySmisOrHoles() { in ContainsOnlySmisOrHoles()
59 Object* FixedArray::get(int index) const { in get()
64 Handle<Object> FixedArray::get(FixedArray* array, int index, Isolate* isolate) { in get()
69 MaybeHandle<T> FixedArray::GetValue(Isolate* isolate, int index) const { in GetValue()
76 Handle<T> FixedArray::GetValueChecked(Isolate* isolate, int index) const { in GetValueChecked()
82 bool FixedArray::is_the_hole(Isolate* isolate, int index) { in is_the_hole()
86 void FixedArray::set(int index, Smi* value) { in set()
94 void FixedArray::set(int index, Object* value) { in set()
104 void FixedArray::set(int index, Object* value, WriteBarrierMode mode) { in set()
113 void FixedArray::NoWriteBarrierSet(FixedArray* array, int index, in NoWriteBarrierSet()
122 void FixedArray::set_undefined(int index) { in set_undefined()
126 void FixedArray::set_undefined(Isolate* isolate, int index) { in set_undefined()
130 void FixedArray::set_undefined(ReadOnlyRoots ro_roots, int index) { in set_undefined()
131 FixedArray::NoWriteBarrierSet(this, index, ro_roots.undefined_value()); in set_undefined()
134 void FixedArray::set_null(int index) { set_null(GetReadOnlyRoots(), index); } in set_null()
136 void FixedArray::set_null(Isolate* isolate, int index) { in set_null()
140 void FixedArray::set_null(ReadOnlyRoots ro_roots, int index) { in set_null()
141 FixedArray::NoWriteBarrierSet(this, index, ro_roots.null_value()); in set_null()
144 void FixedArray::set_the_hole(int index) { in set_the_hole()
148 void FixedArray::set_the_hole(Isolate* isolate, int index) { in set_the_hole()
152 void FixedArray::set_the_hole(ReadOnlyRoots ro_roots, int index) { in set_the_hole()
153 FixedArray::NoWriteBarrierSet(this, index, ro_roots.the_hole_value()); in set_the_hole()
156 void FixedArray::FillWithHoles(int from, int to) { in FillWithHoles()
162 Object** FixedArray::data_start() { in data_start()
166 Object** FixedArray::RawFieldOfElementAt(int index) { in RawFieldOfElementAt()
300 if (FixedArray::cast(this)->length() == 0) return 0; in Length()
301 return Smi::ToInt(FixedArray::cast(this)->get(kLengthIndex)); in Length()
305 return FixedArray::cast(this)->set(kLengthIndex, Smi::FromInt(length)); in SetLength()
309 return FixedArray::cast(this)->get(kFirstIndex + index); in Get()
317 FixedArray::cast(this)->set(kFirstIndex + index, obj, mode); in Set()
322 FixedArray::cast(this)->set(kFirstIndex + index, undefined, in Clear()
770 return Smi::ToInt(FixedArray::cast(this)->get(kLengthIndex)); in length()
774 return FixedArray::cast(this)->get(kFirstElementIndex + index); in get()
778 FixedArray::cast(this)->set(kFirstElementIndex + index, value); in set()