HomeSort by relevance Sort by last modified time
    Searched defs:codeSize (Results 51 - 75 of 233) sorted by null

1 23 4 5 6 7 8 910

  /dalvik/dx/src/com/android/dx/dex/code/form/
Form21h.java 66 public int codeSize() {
Form21s.java 62 public int codeSize() {
Form22b.java 63 public int codeSize() {
Form22s.java 63 public int codeSize() {
Form31c.java 66 public int codeSize() {
Form3rc.java 64 public int codeSize() {
Form4rcc.java 63 public int codeSize() {
Form35c.java 70 public int codeSize() {
  /frameworks/base/core/java/android/content/pm/
PackageStats.java 43 public long codeSize;
95 if (codeSize != 0) {
97 sb.append(codeSize);
145 codeSize = source.readLong();
158 codeSize = pStats.codeSize;
175 dest.writeLong(codeSize);
194 && codeSize == otherStats.codeSize
206 return Objects.hash(packageName, userHandle, codeSize, dataSize
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/dex/code/
ArrayData.java 102 public int codeSize() {
DalvInsn.java 353 return getAddress() + codeSize();
361 public abstract int codeSize();
DalvInsnList.java 107 public int codeSize() {
133 int codeBytes = insn.codeSize() * 2;
163 if (written != codeSize()) {
165 codeSize() + " but actually wrote " + written);
233 if ((insn.codeSize() != 0) || verbose) {
InsnFormat.java 102 public abstract int codeSize();
SwitchData.java 94 public int codeSize() {
103 int defaultTarget = Dops.PACKED_SWITCH.getFormat().codeSize();
  /dalvik/dexgen/src/com/android/dexgen/dex/code/form/
Form35c.java 68 public int codeSize() {
Form3rc.java 97 public int codeSize() {
Form45cc.java 68 public int codeSize() {
Form4rcc.java 97 public int codeSize() {
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
DebugInfoItem.java 178 int codeSize = insns.codeSize();
183 file, codeSize, regSize, isStatic, ref);
  /dalvik/dx/src/com/android/dx/dex/code/
ArrayData.java 104 public int codeSize() {
DalvInsn.java 381 return getAddress() + codeSize();
400 public abstract int codeSize();
DalvInsnList.java 111 public int codeSize() {
137 int codeBytes = insn.codeSize() * 2;
167 if (written != codeSize()) {
169 codeSize() + " but actually wrote " + written);
251 if ((insn.codeSize() != 0) || verbose) {
InsnFormat.java 110 public abstract int codeSize();
  /dalvik/dx/src/com/android/dx/dex/file/
DebugInfoItem.java 175 int codeSize = insns.codeSize();
180 file, codeSize, regSize, isStatic, ref);
  /packages/apps/Settings/src/com/android/settings/applications/
AppStorageSizesController.java 72 long codeSize = mLastResult.getCodeBytes();
75 if (mLastCodeSize != codeSize) {
76 mLastCodeSize = codeSize;
77 mAppSize.setSummary(getSizeStr(context, codeSize));
89 long totalSize = codeSize + dataSize + cacheSize;

Completed in 322 milliseconds

1 23 4 5 6 7 8 910