Searched refs:basicType (Results 1 – 5 of 5) sorted by relevance
/dalvik/dx/src/com/android/dx/rop/type/ |
D | Type.java | 246 private final int basicType; field in Type 428 private Type(String descriptor, int basicType, int newAt) { in Type() argument 433 if ((basicType < 0) || (basicType >= BT_COUNT)) { in Type() 442 this.basicType = basicType; in Type() 458 private Type(String descriptor, int basicType) { in Type() argument 459 this(descriptor, basicType, -1); in Type() 499 switch (basicType) { in toHuman() 528 switch (basicType) { in getFrameType() 543 return basicType; in getBasicType() 548 switch (basicType) { in getBasicFrameType() [all …]
|
/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/tools/hprof-conv/ |
D | HprofConv.c | 317 static int computeBasicLen(HprofBasicType basicType) in computeBasicLen() argument 322 assert(basicType >= 0); in computeBasicLen() 323 if (basicType >= maxSize) in computeBasicLen() 325 return sizes[basicType]; in computeBasicLen() 349 HprofBasicType basicType; in computeClassDumpLen() local 352 basicType = buf[2]; in computeClassDumpLen() 353 basicLen = computeBasicLen(basicType); in computeClassDumpLen() 355 DBUG("ERROR: invalid basicType %d\n", basicType); in computeClassDumpLen() 370 HprofBasicType basicType; in computeClassDumpLen() local 373 basicType = buf[kIdentSize]; in computeClassDumpLen() [all …]
|
/dalvik/dx/src/com/android/dx/dex/code/ |
D | RopToDop.java | 524 int basicType = ref.getBasicType(); in dopFor() local 525 switch (basicType) { in dopFor() 537 int basicType = ref.getBasicType(); in dopFor() local 538 switch (basicType) { in dopFor() 550 int basicType = ref.getBasicType(); in dopFor() local 551 switch (basicType) { in dopFor() 563 int basicType = ref.getBasicType(); in dopFor() local 564 switch (basicType) { in dopFor()
|
/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()
|