Searched refs:basicType (Results 1 – 5 of 5) sorted by relevance
/dalvik/dexgen/src/com/android/dexgen/rop/type/ |
D | Type.java | 262 private final int basicType; field in Type 495 private Type(String descriptor, int basicType, int newAt) { in Type() argument 500 if ((basicType < 0) || (basicType >= BT_COUNT)) { in Type() 509 this.basicType = basicType; in Type() 525 private Type(String descriptor, int basicType) { in Type() argument 526 this(descriptor, basicType, -1); in Type() 566 switch (basicType) { in toHuman() 595 switch (basicType) { in getFrameType() 610 return basicType; in getBasicType() 615 switch (basicType) { in getBasicFrameType() [all …]
|
/dalvik/dx/src/com/android/dx/rop/type/ |
D | Type.java | 295 private final int basicType; field in Type 475 private Type(String descriptor, int basicType, int newAt) { in Type() argument 480 if ((basicType < 0) || (basicType >= BT_COUNT)) { in Type() 489 this.basicType = basicType; in Type() 505 private Type(String descriptor, int basicType) { in Type() argument 506 this(descriptor, basicType, -1); in Type() 548 switch (basicType) { in toHuman() 579 switch (basicType) { in getFrameType() 595 return basicType; in getBasicType() 601 switch (basicType) { in getBasicFrameType() [all …]
|
/dalvik/tools/hprof-conv/ |
D | HprofConv.c | 322 static int computeBasicLen(HprofBasicType basicType) in computeBasicLen() argument 327 assert(basicType >= 0); in computeBasicLen() 328 if (basicType >= maxSize) in computeBasicLen() 330 return sizes[basicType]; in computeBasicLen() 354 HprofBasicType basicType; in computeClassDumpLen() local 357 basicType = buf[2]; in computeClassDumpLen() 358 basicLen = computeBasicLen(basicType); in computeClassDumpLen() 360 DBUG("ERROR: invalid basicType %d\n", basicType); in computeClassDumpLen() 375 HprofBasicType basicType; in computeClassDumpLen() local 378 basicType = buf[kIdentSize]; in computeClassDumpLen() [all …]
|
/dalvik/dexgen/src/com/android/dexgen/dex/code/ |
D | RopToDop.java | 353 int basicType = ref.getBasicType(); in dopFor() local 354 switch (basicType) { in dopFor() 366 int basicType = ref.getBasicType(); in dopFor() local 367 switch (basicType) { in dopFor() 379 int basicType = ref.getBasicType(); in dopFor() local 380 switch (basicType) { in dopFor() 392 int basicType = ref.getBasicType(); in dopFor() local 393 switch (basicType) { in dopFor()
|
/dalvik/dx/src/com/android/dx/dex/code/ |
D | RopToDop.java | 532 int basicType = ref.getBasicType(); in dopFor() local 533 switch (basicType) { in dopFor() 545 int basicType = ref.getBasicType(); in dopFor() local 546 switch (basicType) { in dopFor() 558 int basicType = ref.getBasicType(); in dopFor() local 559 switch (basicType) { in dopFor() 571 int basicType = ref.getBasicType(); in dopFor() local 572 switch (basicType) { in dopFor()
|