OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:gettertype
(Results
1 - 2
of
2
) sorted by null
/frameworks/base/core/java/android/util/
ReflectiveProperty.java
76
Class
getterType
= mGetter.getReturnType();
78
if (!typesMatch(valueType,
getterType
)) {
79
throw new NoSuchPropertyException("Underlying type (" +
getterType
+ ") " +
84
mSetter = propertyHolder.getMethod(setterName,
getterType
);
97
private boolean typesMatch(Class<V> valueType, Class
getterType
) {
98
if (
getterType
!= valueType) {
99
if (
getterType
.isPrimitive()) {
100
return (
getterType
== float.class && valueType == Float.class) ||
101
(
getterType
== int.class && valueType == Integer.class) ||
102
(
getterType
== boolean.class && valueType == Boolean.class) |
[
all
...]
/external/clang/lib/Sema/
SemaObjCProperty.cpp
[
all
...]
Completed in 121 milliseconds