Lines Matching defs:array
1031 // equals elem. Element may be a native array type itself.
1040 // CopyArray() copies a k-dimensional native array using the elements'
1070 // native array it represents.
1076 // Adapts a native array to a read-only STL-style container. Instead
1082 // this requirement. Element can be an array type itself (hence
1092 // Constructs from a native array. References the source.
1093 NativeArray(const Element* array, size_t count, RelationToSourceReference) {
1094 InitRef(array, count);
1097 // Constructs from a native array. Copies the source.
1098 NativeArray(const Element* array, size_t count, RelationToSourceCopy) {
1099 InitCopy(array, count);
1125 void InitCopy(const Element* array, size_t a_size) {
1127 CopyArray(array, a_size, copy);
1134 void InitRef(const Element* array, size_t a_size) {
1135 array_ = array;