Lines Matching refs:NativeArray
7907 // The relation between an NativeArray object (see below) and the
7910 kReference, // The NativeArray references the native array.
7911 kCopy // The NativeArray makes a copy of the native array and
7924 class NativeArray {
7932 NativeArray(const Element* array, size_t count, RelationToSource relation) {
7937 NativeArray(const NativeArray& rhs) {
7941 ~NativeArray() {
7942 // Ensures that the user doesn't instantiate NativeArray with a
7954 bool operator==(const NativeArray& rhs) const {
7978 GTEST_DISALLOW_ASSIGN_(NativeArray);