Lines Matching refs:aP
60821 void replaceRawBuffer(T* aP, size_t aLength);
60824 __attribute__ ((warn_unused_result)) T* insert(T* aP, U&& aVal);
61295 Vector<T, N, AP>::insert(T* aP, U&& aVal)
61299 size_t pos = aP - begin();
61484 Vector<T, N, AP>::replaceRawBuffer(T* aP, size_t aLength)
61504 Impl::moveConstruct(mBegin, aP, aP + aLength);
61505 Impl::destroy(aP, aP + aLength);
61506 this->free_(aP);
61508 mBegin = aP;
97163 template<typename U> T* insert(T* aP, U&& aVal) {
97164 return vec().insert(aP, mozilla::Forward<U>(aVal));
107532 static Matrix4x4Typed Translation(const TargetPoint3D& aP)
107534 return Translation(aP.x, aP.y, aP.z);
107537 static Matrix4x4Typed Translation(const TargetPoint& aP)
107539 return Translation(aP.x, aP.y, 0);