Searched refs:basicType (Results 1 - 5 of 5) sorted by relevance

/dalvik/dexgen/src/com/android/dexgen/rop/type/
H A DType.java262 private final int basicType; field in class:Type
491 * @param basicType basic type corresponding to this type; one of the
495 private Type(String descriptor, int basicType, int newAt) { argument
500 if ((basicType < 0) || (basicType >= BT_COUNT)) {
501 throw new IllegalArgumentException("bad basicType");
509 this.basicType = basicType;
522 * @param basicType basic type corresponding to this type; one of the
525 private Type(String descriptor, int basicType) { argument
[all...]
/dalvik/dx/src/com/android/dx/rop/type/
H A DType.java247 private final int basicType; field in class:Type
425 * @param basicType basic type corresponding to this type; one of the
429 private Type(String descriptor, int basicType, int newAt) { argument
434 if ((basicType < 0) || (basicType >= BT_COUNT)) {
435 throw new IllegalArgumentException("bad basicType");
443 this.basicType = basicType;
456 * @param basicType basic type corresponding to this type; one of the
459 private Type(String descriptor, int basicType) { argument
[all...]
/dalvik/tools/hprof-conv/
H A DHprofConv.c308 static int computeBasicLen(HprofBasicType basicType) argument
313 assert(basicType >= 0);
314 if (basicType >= maxSize)
316 return sizes[basicType];
340 HprofBasicType basicType; local
343 basicType = buf[2];
344 basicLen = computeBasicLen(basicType);
346 DBUG("ERROR: invalid basicType %d\n", basicType);
361 HprofBasicType basicType; local
416 HprofBasicType basicType = origBuf[kIdentSize + 8]; local
[all...]
/dalvik/dexgen/src/com/android/dexgen/dex/code/
H A DRopToDop.java353 int basicType = ref.getBasicType();
354 switch (basicType) {
366 int basicType = ref.getBasicType();
367 switch (basicType) {
379 int basicType = ref.getBasicType();
380 switch (basicType) {
392 int basicType = ref.getBasicType();
393 switch (basicType) {
/dalvik/dx/src/com/android/dx/dex/code/
H A DRopToDop.java525 int basicType = ref.getBasicType();
526 switch (basicType) {
538 int basicType = ref.getBasicType();
539 switch (basicType) {
551 int basicType = ref.getBasicType();
552 switch (basicType) {
564 int basicType = ref.getBasicType();
565 switch (basicType) {

Completed in 501 milliseconds