OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:interfaceType
(Results
1 - 4
of
4
) sorted by null
/external/guava/src/com/google/common/util/concurrent/
SimpleTimeLimiter.java
82
public <T> T newProxy(final T target, Class<T>
interfaceType
,
85
checkNotNull(
interfaceType
);
88
checkArgument(
interfaceType
.isInterface(),
89
"
interfaceType
must be an interface type");
92
= findInterruptibleMethods(
interfaceType
);
111
return newProxy(
interfaceType
, handler);
141
private static Set<Method> findInterruptibleMethods(Class<?>
interfaceType
) {
143
for (Method m :
interfaceType
.getMethods()) {
163
Class<T>
interfaceType
, InvocationHandler handler) {
165
interfaceType
.getClassLoader(), new Class<?>[] { interfaceType }, handler)
[
all
...]
/frameworks/base/tools/aidl/
generate_java.cpp
49
StubClass(Type* type, Type*
interfaceType
);
58
void make_as_interface(Type*
interfaceType
);
61
StubClass::StubClass(Type* type, Type*
interfaceType
)
69
this->interfaces.push_back(
interfaceType
);
74
descriptor->value = "\"" +
interfaceType
->QualifiedName() + "\"";
90
make_as_interface(
interfaceType
);
131
StubClass::make_as_interface(Type *
interfaceType
)
137
m->comment +=
interfaceType
->QualifiedName();
141
m->returnType =
interfaceType
;
164
// if (iin != null && iin instanceof <
interfaceType
>) return (<interfaceType>) iin
[
all
...]
/development/samples/NFCDemo/libs/
guava-10.0.1.jar
/prebuilt/common/ecj/
ecj.jar
Completed in 338 milliseconds