Searched defs:interfaceType (Results 1 - 3 of 3) sorted by last modified time

/frameworks/base/tools/aidl/
H A Dgenerate_java_binder.cpp12 StubClass(Type* type, Type* interfaceType);
21 void make_as_interface(Type* interfaceType);
24 StubClass::StubClass(Type* type, Type* interfaceType) argument
32 this->interfaces.push_back(interfaceType);
37 descriptor->value = "\"" + interfaceType->QualifiedName() + "\"";
53 make_as_interface(interfaceType);
94 StubClass::make_as_interface(Type *interfaceType) argument
100 m->comment += interfaceType->QualifiedName();
104 m->returnType = interfaceType;
127 // if (iin != null && iin instanceof <interfaceType>) retur
159 ProxyClass(Type* type, InterfaceType* interfaceType) argument
519 InterfaceType* interfaceType = static_cast<InterfaceType*>( local
[all...]
H A Dgenerate_java_rpc.cpp290 RpcProxyClass(const interface_type* iface, InterfaceType* interfaceType);
301 RpcProxyClass::RpcProxyClass(const interface_type* iface, InterfaceType* interfaceType) argument
307 this->type = interfaceType;
956 InterfaceType* interfaceType = static_cast<InterfaceType*>( local
958 RpcProxyClass* proxy = new RpcProxyClass(iface, interfaceType);
/frameworks/base/packages/SystemUI/src/com/android/systemui/
H A DSystemUI.java39 public <T> T getComponent(Class<T> interfaceType) { argument
40 return (T) (mComponents != null ? mComponents.get(interfaceType) : null);
43 public <T, C extends T> void putComponent(Class<T> interfaceType, C component) { argument
45 mComponents.put(interfaceType, component);

Completed in 214 milliseconds