Searched refs:utf8Constant (Results 1 - 16 of 16) sorted by relevance

/external/proguard/src/proguard/shrink/
H A DInterfaceUsageMarker.java145 public void visitUtf8Constant(Clazz clazz, Utf8Constant utf8Constant) argument
147 if (!usageMarker.isUsed(utf8Constant))
149 usageMarker.markAsUsed(utf8Constant);
H A DInnerUsageMarker.java144 public void visitUtf8Constant(Clazz clazz, Utf8Constant utf8Constant) argument
146 usageMarker.markAsUsed(utf8Constant);
H A DUsageMarker.java409 public void visitUtf8Constant(Clazz clazz, Utf8Constant utf8Constant) argument
411 if (shouldBeMarkedAsUsed(utf8Constant))
413 markAsUsed(utf8Constant);
/external/proguard/src/proguard/classfile/util/
H A DStringSharer.java131 public void visitUtf8Constant(Clazz clazz, Utf8Constant utf8Constant) argument
137 if (name.equals(utf8Constant.getString()))
139 utf8Constant.setString(name);
H A DInstructionSequenceMatcher.java380 public void visitUtf8Constant(Clazz clazz, Utf8Constant utf8Constant) argument
385 matchingConstant = utf8Constant.getString().equals(
H A DSimplifiedVisitor.java154 public void visitUtf8Constant(Clazz clazz, Utf8Constant utf8Constant) argument
156 visitAnyConstant(clazz, utf8Constant);
/external/proguard/src/proguard/classfile/constant/visitor/
H A DConstantVisitor.java40 public void visitUtf8Constant( Clazz clazz, Utf8Constant utf8Constant); argument
/external/proguard/src/proguard/classfile/editor/
H A DConstantAdder.java124 public void visitUtf8Constant(Clazz clazz, Utf8Constant utf8Constant) argument
127 constantPoolEditor.addUtf8Constant(utf8Constant.getString());
H A DComparableConstant.java152 public void visitUtf8Constant(Clazz clazz, Utf8Constant utf8Constant) argument
154 result = utf8Constant.getString().compareTo(((Utf8Constant)otherConstant).getString());
H A DConstantPoolEditor.java615 Utf8Constant utf8Constant = (Utf8Constant)constant;
616 if (utf8Constant.getString().equals(string))
H A DConstantPoolRemapper.java177 public void visitUtf8Constant(Clazz clazz, Utf8Constant utf8Constant) argument
/external/proguard/src/proguard/classfile/io/
H A DLibraryClassReader.java269 public void visitUtf8Constant(Clazz clazz, Utf8Constant utf8Constant) argument
276 utf8Constant.setBytes(bytes);
H A DProgramClassWriter.java202 public void visitUtf8Constant(Clazz clazz, Utf8Constant utf8Constant) argument
204 byte[] bytes = utf8Constant.getBytes();
H A DProgramClassReader.java242 public void visitUtf8Constant(Clazz clazz, Utf8Constant utf8Constant) argument
249 utf8Constant.setBytes(bytes);
/external/proguard/src/proguard/classfile/instruction/
H A DConstantInstruction.java228 public void visitUtf8Constant(Clazz clazz, Utf8Constant utf8Constant) {} argument
/external/proguard/src/proguard/classfile/visitor/
H A DClassPrinter.java218 public void visitUtf8Constant(Clazz clazz, Utf8Constant utf8Constant) argument
220 println(visitorInfo(utf8Constant) + " Utf8 [" +
221 utf8Constant.getString() + "]");

Completed in 51 milliseconds