Searched refs:CstString (Results 1 - 15 of 15) sorted by relevance

/dalvik/dx/src/com/android/dx/rop/cst/
H A DCstString.java24 public final class CstString class in inherits:TypedConstant
34 public CstString(CstUtf8 string) { method in class:CstString
47 public CstString(String string) { method in class:CstString
54 if (!(other instanceof CstString)) {
58 return string.equals(((CstString) other).string);
70 return string.compareTo(((CstString) other).string);
/dalvik/dx/src/com/android/dx/cf/attrib/
H A DAttConstantValue.java23 import com.android.dx.rop.cst.CstString;
40 * be an instance of one of: {@code CstString},
47 if (!((constantValue instanceof CstString) ||
68 * is an instance of one of: {@code CstString},
/dalvik/dx/src/com/android/dx/dex/file/
H A DStringIdsSection.java21 import com.android.dx.rop.cst.CstString;
66 if (cst instanceof CstString) {
67 cst = ((CstString) cst).getString();
114 * @param string {@code non-null;} the string to intern, as a {@link CstString}
117 public StringIdItem intern(CstString string) {
196 public int indexOf(CstString string) {
H A DDexFile.java23 import com.android.dx.rop.cst.CstString;
424 if (cst instanceof CstString) {
425 stringIds.intern((CstString) cst);
455 if (cst instanceof CstString) {
H A DAnnotationUtils.java27 import com.android.dx.rop.cst.CstString;
138 (name != null) ? new CstString(name) : CstKnownNull.THE_ONE;
213 list.set(i, new CstString(pieces.get(i)));
H A DValueEncoder.java37 import com.android.dx.rop.cst.CstString;
158 int index = file.getStringIds().indexOf((CstString) cst);
235 } else if (cst instanceof CstString) {
/dalvik/dx/src/com/android/dx/dex/code/form/
H A DForm31c.java26 import com.android.dx.rop.cst.CstString;
109 (cst instanceof CstString));
H A DForm21c.java26 import com.android.dx.rop.cst.CstString;
114 (cst instanceof CstString);
H A DForm22c.java25 import com.android.dx.rop.cst.CstString;
/dalvik/dx/src/com/android/dx/rop/annotation/
H A DNameValuePair.java20 import com.android.dx.rop.cst.CstString;
/dalvik/dx/src/com/android/dx/cf/direct/
H A DAnnotationParser.java41 import com.android.dx.rop.cst.CstString;
363 CstString value = new CstString((CstUtf8) parseConstant());
/dalvik/dx/src/com/android/dx/ssa/
H A DConstCollector.java21 import com.android.dx.rop.cst.CstString;
182 if (!(cst instanceof CstString) || !COLLECT_STRINGS) {
/dalvik/dx/src/com/android/dx/cf/code/
H A DBasicBlocker.java21 import com.android.dx.rop.cst.CstString;
203 (cst instanceof CstString)) {
/dalvik/dx/src/com/android/dx/cf/cst/
H A DConstantPoolParser.java30 import com.android.dx.rop.cst.CstString;
264 cst = new CstString(string);
/dalvik/dx/src/com/android/dx/dex/code/
H A DRopToDop.java27 import com.android.dx.rop.cst.CstString;
406 } else if (cst instanceof CstString) {

Completed in 731 milliseconds