Searched refs:returnType (Results 1 - 10 of 10) sorted by relevance

/frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/
H A DTransformClassAdapter.java111 String returnType = t.getInternalName();
112 if (returnType != null) {
113 if (mDeleteReturns.contains(returnType)) {
149 return new StubMethodAdapter(mw, name, returnType(desc), invokeSignature,
173 Type returnType(String desc) { method in class:TransformClassAdapter
H A DDelegateMethodAdapter2.java254 Type returnType = Type.getReturnType(mDesc);
255 mDelWriter.visitInsn(returnType.getOpcode(Opcodes.IRETURN));
H A DStubMethodAdapter.java51 public StubMethodAdapter(MethodVisitor mv, String methodName, Type returnType, argument
55 mReturnType = returnType;
/frameworks/base/tools/aidl/
H A Dgenerate_java_binder.cpp58 asBinder->returnType = IBINDER_TYPE;
71 onTransact->returnType = BOOLEAN_TYPE;
104 m->returnType = interfaceType;
185 asBinder->returnType = IBINDER_TYPE;
275 decl->returnType = NAMES.Search(method->type.type.data);
346 _result = new Variable(decl->returnType, "_result",
358 generate_write_to_parcel(decl->returnType, c->statements, _result,
388 proxy->returnType = NAMES.Search(method->type.type.data);
416 _result = new Variable(proxy->returnType, "_result",
470 generate_create_from_parcel(proxy->returnType,
[all...]
H A Dgenerate_java_rpc.cpp126 this->processMethod->returnType = BYTE_TYPE;
210 Type* returnType = NAMES.Search(method->type.type.data); local
211 if (returnType == EVENT_FAKE_TYPE) {
212 returnType = VOID_TYPE;
218 if (returnType == VOID_TYPE) {
221 _result = new Variable(returnType, "_result",
233 generate_write_to_data(returnType, block,
347 get->returnType = RPC_ENDPOINT_INFO_TYPE;
560 this->onResultMethod->returnType = VOID_TYPE;
578 m->returnType
[all...]
H A DAST.cpp700 returnType(NULL), // (NULL means constructor)
715 if (this->returnType) {
716 types->insert(this->returnType);
741 if (this->returnType != NULL) {
746 fprintf(to, "%s%s ", this->returnType->QualifiedName().c_str(),
H A Daidl.cpp410 Type* returnType = NAMES.Search(m->type.type.data); local
411 if (returnType == NULL) {
418 if (returnType == EVENT_FAKE_TYPE) {
425 if (!(kind == INTERFACE_TYPE_BINDER ? returnType->CanWriteToParcel()
426 : returnType->CanWriteToRpcData())) {
433 if (m->type.dimension > 0 && !returnType->CanBeArray()) {
478 if (returnType == EVENT_FAKE_TYPE
H A DAST.h321 Type* returnType; member in struct:Method
/frameworks/native/opengl/tools/glgen/src/
H A DJniCodeEmitter.java295 CType returnType = cfunc.getType();
296 boolean isVoid = returnType.isVoid();
301 if (returnType.getBaseType().startsWith("EGL")) {
302 return "(" + returnType.getDeclaration() + ") 0";
871 CType returnType = cfunc.getType();
872 boolean isVoid = returnType.isVoid();
954 out.println(indent + returnType.getDeclaration() +
957 out.println(indent + returnType.getDeclaration() +
960 out.println(indent + returnType.getDeclaration() +
/frameworks/base/core/java/android/view/
H A DViewDebug.java951 final Class<?> returnType = method.getReturnType();
956 if (returnType == int.class) {
989 } else if (returnType == int[].class) {
998 } else if (!returnType.isPrimitive()) {
1273 final Class<?> returnType = method.getReturnType();
1278 sb.append(capturedViewExportMethods(methodValue, returnType, method.getName() + "#"));

Completed in 79 milliseconds