Home
last modified time | relevance | path

Searched refs:Utf8Info (Results 1 – 2 of 2) sorted by relevance

/external/javassist/src/main/javassist/bytecode/
DConstPool.java112 public static final int CONST_Utf8 = Utf8Info.tag;
592 Utf8Info utf = (Utf8Info)getItem(index); in getUtf8Info()
963 Utf8Info info = (Utf8Info)strings.get(utf8); in addUtf8Info()
967 info = new Utf8Info(utf8, numOfItems); in addUtf8Info()
1054 case Utf8Info.tag : // 1 in readOne()
1055 info = new Utf8Info(in, numOfItems); in readOne()
1056 strings.put(((Utf8Info)info).string, info); in readOne()
1541 class Utf8Info extends ConstInfo { class
1546 public Utf8Info(String utf8, int i) { in Utf8Info() method in Utf8Info
1551 public Utf8Info(DataInputStream in, int i) throws IOException { in Utf8Info() method in Utf8Info
DClassFileWriter.java719 output.write(Utf8Info.tag); in addUtf8Info()