HomeSort by relevance Sort by last modified time
    Searched refs:internalTypeEnumeration (Results 1 - 7 of 7) sorted by null

  /external/proguard/src/proguard/optimize/
MethodDescriptorShrinker.java 173 InternalTypeEnumeration internalTypeEnumeration =
174 new InternalTypeEnumeration(descriptor);
176 while (internalTypeEnumeration.hasMoreTypes())
178 String type = internalTypeEnumeration.nextType();
216 InternalTypeEnumeration internalTypeEnumeration =
217 new InternalTypeEnumeration(descriptor);
221 newDescriptorBuffer.append(internalTypeEnumeration.formalTypeParameters());
224 while (internalTypeEnumeration.hasMoreTypes()
    [all...]
TailRecursionSimplifier.java 267 InternalTypeEnumeration internalTypeEnumeration =
268 new InternalTypeEnumeration(descriptor);
272 String parameterType = internalTypeEnumeration.nextType();
  /external/proguard/src/proguard/
FullyQualifiedClassNameChecker.java 118 InternalTypeEnumeration internalTypeEnumeration =
119 new InternalTypeEnumeration(descriptor);
121 checkType(internalTypeEnumeration.returnType());
123 while (internalTypeEnumeration.hasMoreTypes())
125 checkType(internalTypeEnumeration.nextType());
  /external/proguard/src/proguard/classfile/util/
ClassUtil.java 435 InternalTypeEnumeration internalTypeEnumeration =
436 new InternalTypeEnumeration(internalMethodDescriptor);
439 while (internalTypeEnumeration.hasMoreTypes())
441 internalTypeEnumeration.nextType();
500 InternalTypeEnumeration internalTypeEnumeration =
501 new InternalTypeEnumeration(internalMethodDescriptor);
504 while (internalTypeEnumeration.hasMoreTypes())
506 String internalType = internalTypeEnumeration.nextType()
    [all...]
  /external/proguard/src/proguard/evaluation/
BasicInvocationUnit.java 80 InternalTypeEnumeration internalTypeEnumeration =
81 new InternalTypeEnumeration(descriptor);
104 while (internalTypeEnumeration.hasMoreTypes())
106 String type = internalTypeEnumeration.nextType();
  /external/proguard/src/proguard/shrink/
ClassShrinker.java 240 InternalTypeEnumeration internalTypeEnumeration =
241 new InternalTypeEnumeration(signature);
248 while (internalTypeEnumeration.hasMoreTypes())
251 String type = internalTypeEnumeration.nextType();
  /external/proguard/src/proguard/optimize/peephole/
MethodInliner.java 230 InternalTypeEnumeration internalTypeEnumeration =
231 new InternalTypeEnumeration(descriptor);
235 String parameterType = internalTypeEnumeration.nextType();

Completed in 62 milliseconds