Home | History | Annotate | Download | only in src

Lines Matching refs:PodArray

3236 PodArray<T>* PodArray<T>::cast(Object* object) {
3238 return reinterpret_cast<PodArray<T>*>(object);
3241 const PodArray<T>* PodArray<T>::cast(const Object* object) {
3243 return reinterpret_cast<const PodArray<T>*>(object);
3248 Handle<PodArray<T>> PodArray<T>::New(Isolate* isolate, int length,
3250 return Handle<PodArray<T>>::cast(
3295 DEFINE_DEOPT_ELEMENT_ACCESSORS(InliningPositions, PodArray<InliningPosition>)