Lines Matching refs:index
29 Object PropertyArray::get(int index) const {
31 return get(cage_base, index);
34 Object PropertyArray::get(PtrComprCageBase cage_base, int index) const {
35 DCHECK_LT(static_cast<unsigned>(index),
38 OffsetOfElementAt(index));
41 Object PropertyArray::get(int index, SeqCstAccessTag tag) const {
43 return get(cage_base, index, tag);
46 Object PropertyArray::get(PtrComprCageBase cage_base, int index,
48 DCHECK_LT(static_cast<unsigned>(index),
51 OffsetOfElementAt(index));
54 void PropertyArray::set(int index, Object value) {
56 DCHECK_LT(static_cast<unsigned>(index),
58 int offset = OffsetOfElementAt(index);
63 void PropertyArray::set(int index, Object value, WriteBarrierMode mode) {
64 DCHECK_LT(static_cast<unsigned>(index),
66 int offset = OffsetOfElementAt(index);
71 void PropertyArray::set(int index, Object value, SeqCstAccessTag tag) {
73 DCHECK_LT(static_cast<unsigned>(index),
76 int offset = OffsetOfElementAt(index);
84 Object PropertyArray::Swap(int index, Object value, SeqCstAccessTag tag) {
86 return Swap(cage_base, index, value, tag);
89 Object PropertyArray::Swap(PtrComprCageBase cage_base, int index, Object value,
92 DCHECK_LT(static_cast<unsigned>(index),
96 OffsetOfElementAt(index), value);