Lines Matching refs:aIdx
936 T &operator[] (size_t aIdx)
939 AssertReturn(aIdx < size(), *((T *)NULL));
941 return m.arr[aIdx];
944 return m.raw[aIdx];
951 const T operator[] (size_t aIdx) const
954 AssertReturn(aIdx < size(), *((T *)NULL));
956 return m.arr[aIdx];
959 return m.raw[aIdx];
1407 nsIDRef operator[] (size_t aIdx)
1410 Assert(aIdx < size());
1411 return nsIDRef(m.arr[aIdx]);
1417 const nsID &operator[] (size_t aIdx) const
1420 Assert(aIdx < size());
1421 return m.arr[aIdx] ? *m.arr[aIdx] : *nsIDRef::Empty;
1452 const nsID &operator[] (size_t aIdx) const
1455 AssertReturn(aIdx < size(), **((const nsID * *)NULL));
1456 return *m.arr[aIdx];