Home
last modified time | relevance | path

Searched refs:matchedConstantIndex (Results 1 – 4 of 4) sorted by relevance

/external/proguard/src/proguard/optimize/peephole/
DInstructionSequenceReplacer.java284 matchedConstantIndex((ProgramClass)clazz, in visitConstantInstruction()
343 private int matchedConstantIndex(ProgramClass programClass, int constantIndex) in matchedConstantIndex() method in InstructionSequenceReplacer.MyReplacementInstructionFactory
357 int matchedConstantIndex = in matchedConstantIndex() local
358 instructionSequenceMatcher.matchedConstantIndex(constantIndex); in matchedConstantIndex()
361 if (matchedConstantIndex > 0) in matchedConstantIndex()
364 return matchedConstantIndex; in matchedConstantIndex()
384 …egerConstant)(programClass.getConstant(instructionSequenceMatcher.matchedConstantIndex(argument)))… in argumentAsString()
389 …egerConstant)(programClass.getConstant(instructionSequenceMatcher.matchedConstantIndex(argument)))… in argumentAsString()
394 …egerConstant)(programClass.getConstant(instructionSequenceMatcher.matchedConstantIndex(argument)))… in argumentAsString()
399 …LongConstant)(programClass.getConstant(instructionSequenceMatcher.matchedConstantIndex(argument)))… in argumentAsString()
[all …]
/external/proguard/src/proguard/classfile/util/
DDynamicClassReferenceInitializer.java253 clazz.constantPoolEntryAccept(classForNameCastMatcher.matchedConstantIndex(X), this); in visitAnyInstruction()
264 … clazz.constantPoolEntryAccept(constantClassForNameMatcher.matchedConstantIndex(X), this); in visitAnyInstruction()
276 isDotClassMethodref(clazz, dotClassJavacMatcher.matchedConstantIndex(0))) in visitAnyInstruction()
279 clazz.constantPoolEntryAccept(dotClassJavacMatcher.matchedConstantIndex(X), this); in visitAnyInstruction()
288 isDotClassMethodref(clazz, dotClassJikesMatcher.matchedConstantIndex(0))) in visitAnyInstruction()
291 clazz.constantPoolEntryAccept(dotClassJikesMatcher.matchedConstantIndex(X), this); in visitAnyInstruction()
DDynamicMemberReferenceInitializer.java714 int classIndex = constantSequenceMatcher.matchedConstantIndex(CLASS_INDEX); in initializeStringReference()
718 int typeClassIndex = constantSequenceMatcher.matchedConstantIndex(TYPE_CLASS_INDEX); in initializeStringReference()
723 int memberNameIndex = constantSequenceMatcher.matchedConstantIndex(MEMBER_NAME_INDEX); in initializeStringReference()
803 int memberNameIndex = noteSequenceMatcher.matchedConstantIndex(MEMBER_NAME_INDEX); in printDynamicInvocationNote()
818 int memberArgumentIndex = noteSequenceMatcher.matchedConstantIndex( in printDynamicInvocationNote()
866 …int memberArgumentIndex = noteSequenceMatcher.matchedConstantIndex(PARAMETER0_CLASS_INDEX + count); in printDynamicInvocationNote()
DInstructionSequenceMatcher.java182 public int matchedConstantIndex(int constantIndex) in matchedConstantIndex() method in InstructionSequenceMatcher