Lines Matching refs:new_index
855 dex::u4 new_index = MapStringIndex(ReadU4(idx)); in WriteInstructions() local
856 SLICER_CHECK(new_index != dex::kNoIndex); in WriteInstructions()
857 WriteU4(idx, new_index); in WriteInstructions()
860 dex::u4 new_index = MapStringIndex(*idx); in WriteInstructions() local
861 SLICER_CHECK(new_index != dex::kNoIndex); in WriteInstructions()
862 SLICER_CHECK(dex::u2(new_index) == new_index); in WriteInstructions()
863 *idx = dex::u2(new_index); in WriteInstructions()
869 dex::u4 new_index = MapTypeIndex(*idx); in WriteInstructions() local
870 SLICER_CHECK(new_index != dex::kNoIndex); in WriteInstructions()
871 SLICER_CHECK(dex::u2(new_index) == new_index); in WriteInstructions()
872 *idx = dex::u2(new_index); in WriteInstructions()
877 dex::u4 new_index = MapFieldIndex(*idx); in WriteInstructions() local
878 SLICER_CHECK(new_index != dex::kNoIndex); in WriteInstructions()
879 SLICER_CHECK(dex::u2(new_index) == new_index); in WriteInstructions()
880 *idx = dex::u2(new_index); in WriteInstructions()
885 dex::u4 new_index = MapMethodIndex(*idx); in WriteInstructions() local
886 SLICER_CHECK(new_index != dex::kNoIndex); in WriteInstructions()
887 SLICER_CHECK(dex::u2(new_index) == new_index); in WriteInstructions()
888 *idx = dex::u2(new_index); in WriteInstructions()