Home
last modified time | relevance | path

Searched refs:interfaceType (Results 1 – 4 of 4) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/
DSystemUI.java42 public <T> T getComponent(Class<T> interfaceType) { in getComponent() argument
43 return (T) (mComponents != null ? mComponents.get(interfaceType) : null); in getComponent()
46 public <T, C extends T> void putComponent(Class<T> interfaceType, C component) { in putComponent() argument
48 mComponents.put(interfaceType, component); in putComponent()
DSystemUIApplication.java144 public <T> T getComponent(Class<T> interfaceType) { in getComponent() argument
145 return (T) mComponents.get(interfaceType); in getComponent()
/frameworks/base/tools/aidl/
Dgenerate_java_binder.cpp12 StubClass(Type* type, Type* interfaceType);
21 void make_as_interface(Type* interfaceType);
24 StubClass::StubClass(Type* type, Type* interfaceType) in StubClass() argument
32 this->interfaces.push_back(interfaceType); in StubClass()
37 descriptor->value = "\"" + interfaceType->QualifiedName() + "\""; in StubClass()
53 make_as_interface(interfaceType); in StubClass()
94 StubClass::make_as_interface(Type *interfaceType) in make_as_interface() argument
100 m->comment += interfaceType->QualifiedName(); in make_as_interface()
104 m->returnType = interfaceType; in make_as_interface()
130 new LiteralExpression(interfaceType->QualifiedName())); in make_as_interface()
[all …]
Dgenerate_java_rpc.cpp290 RpcProxyClass(const interface_type* iface, InterfaceType* interfaceType);
301 RpcProxyClass::RpcProxyClass(const interface_type* iface, InterfaceType* interfaceType) in RpcProxyClass() argument
307 this->type = interfaceType; in RpcProxyClass()
956 InterfaceType* interfaceType = static_cast<InterfaceType*>( in generate_rpc_interface_class() local
958 RpcProxyClass* proxy = new RpcProxyClass(iface, interfaceType); in generate_rpc_interface_class()