Home | History | Annotate | Download | only in mirror

Lines Matching defs:nullptr

43   DCHECK(dex_file != nullptr);
46 uint8_t* raw_arrays = nullptr;
60 StringDexCacheType* strings = (dex_file->NumStringIds() == 0u) ? nullptr :
62 TypeDexCacheType* types = (dex_file->NumTypeIds() == 0u) ? nullptr :
64 MethodDexCacheType* methods = (dex_file->NumMethodIds() == 0u) ? nullptr :
66 FieldDexCacheType* fields = (dex_file->NumFieldIds() == 0u) ? nullptr :
92 MethodTypeDexCacheType* method_types = nullptr;
107 ? nullptr
130 CHECK(GetNativePairPtrSize(methods, i, image_pointer_size).object == nullptr);
134 CHECK(GetNativePairPtrSize(fields, i, image_pointer_size).object == nullptr);
144 if (strings != nullptr) {
147 if (types != nullptr) {
150 if (fields != nullptr) {
153 if (methods != nullptr) {
156 if (method_types != nullptr) {
189 CHECK(dex_file != nullptr);
190 CHECK(location != nullptr);
191 CHECK_EQ(num_strings != 0u, strings != nullptr);
192 CHECK_EQ(num_resolved_types != 0u, resolved_types != nullptr);
193 CHECK_EQ(num_resolved_methods != 0u, resolved_methods != nullptr);
194 CHECK_EQ(num_resolved_fields != 0u, resolved_fields != nullptr);
195 CHECK_EQ(num_resolved_method_types != 0u, resolved_method_types != nullptr);
196 CHECK_EQ(num_resolved_call_sites != 0u, resolved_call_sites != nullptr);