Home | History | Annotate | Download | only in dexlayout

Lines Matching refs:static_data

409   const uint8_t* static_data = dex_file.GetEncodedStaticFieldValuesArray(disk_class_def);
411 CreateEncodedArrayItem(static_data, disk_class_def.static_values_off_);
437 EncodedArrayItem* Collections::CreateEncodedArrayItem(const uint8_t* static_data, uint32_t offset) {
438 if (static_data == nullptr) {
445 uint32_t size = DecodeUnsignedLeb128(&static_data);
448 values->push_back(std::unique_ptr<EncodedValue>(ReadEncodedValue(&static_data)));