Home | History | Annotate | Download | only in bytecode

Lines Matching refs:utf8

57       case UTF8:
94 int utf8 = utf8(value);
95 if (classInfoPool.containsKey(utf8)) {
96 return classInfoPool.get(utf8);
98 int index = insert(new Entry(Kind.CLASS_INFO, new IntValue(utf8)));
99 classInfoPool.put(utf8, index);
104 int utf8(String value) {
109 int index = insert(new Entry(Kind.UTF8, new StringValue(value)));
152 int utf8 = utf8(value);
153 if (stringPool.containsKey(utf8)) {
154 return stringPool.get(utf8);
156 int index = insert(new Entry(Kind.STRING, new IntValue(utf8)));
157 stringPool.put(utf8, index);
179 UTF8(1);