Lines Matching defs:array
330 // native array, class StlContainerView<RawContainer> has the
358 // This specialization is used when RawContainer is a native array type.
364 // NativeArray<T> can represent a native array either by value or by
366 // can be used to reference a const native array. We cannot
371 static const_reference ConstReference(const Element (&array)[N]) {
374 return type(array, N, RelationToSourceReference());
376 static type Copy(const Element (&array)[N]) {
377 return type(array, N, RelationToSourceCopy());
381 // This specialization is used when RawContainer is a native array
393 const ::std::tuple<ElementPointer, Size>& array) {
394 return type(std::get<0>(array), std::get<1>(array),
397 static type Copy(const ::std::tuple<ElementPointer, Size>& array) {
398 return type(std::get<0>(array), std::get<1>(array), RelationToSourceCopy());