Lines Matching defs:NativeArray
947 // The relation between an NativeArray object (see below) and the
950 kReference, // The NativeArray references the native array.
951 kCopy // The NativeArray makes a copy of the native array and
964 class NativeArray {
972 NativeArray(const Element* array, size_t count, RelationToSource relation) {
977 NativeArray(const NativeArray& rhs) {
981 ~NativeArray() {
982 // Ensures that the user doesn't instantiate NativeArray with a
994 bool operator==(const NativeArray& rhs) const {
1018 GTEST_DISALLOW_ASSIGN_(NativeArray);