Home
last modified time | relevance | path

Searched refs:newType (Results 1 – 5 of 5) sorted by relevance

/frameworks/base/telephony/java/com/android/internal/telephony/
DIccCardApplication.java113 AppType newType; in AppTypeFromRILInt() local
116 case 0: newType = AppType.APPTYPE_UNKNOWN; break; in AppTypeFromRILInt()
117 case 1: newType = AppType.APPTYPE_SIM; break; in AppTypeFromRILInt()
118 case 2: newType = AppType.APPTYPE_USIM; break; in AppTypeFromRILInt()
119 case 3: newType = AppType.APPTYPE_RUIM; break; in AppTypeFromRILInt()
120 case 4: newType = AppType.APPTYPE_CSIM; break; in AppTypeFromRILInt()
121 case 5: newType = AppType.APPTYPE_ISIM; break; in AppTypeFromRILInt()
126 return newType; in AppTypeFromRILInt()
/frameworks/base/libs/rs/driver/
DrsdAllocation.cpp285 const Type *newType, bool zeroNew) { in rsdAllocationResize() argument
288 drv->mallocPtr = (uint8_t *)realloc(drv->mallocPtr, newType->getSizeBytes()); in rsdAllocationResize()
294 const uint32_t dimX = newType->getDimX(); in rsdAllocationResize()
DrsdAllocation.h64 const android::renderscript::Type *newType, bool zeroNew);
/frameworks/base/libs/rs/
Drs_hal.h113 void (*resize)(const Context *rsc, const Allocation *alloc, const Type *newType,
/frameworks/base/graphics/java/android/renderscript/
DMesh.java317 Type newType(Element e, int size) { in newType() method in Mesh.Builder