Home
last modified time | relevance | path

Searched refs:isCastingUnchecked (Results 1 – 3 of 3) sorted by relevance

/external/auto/value/src/main/java/com/google/auto/value/processor/
DGwtSerialization.java108 private final boolean isCastingUnchecked; field in GwtSerialization.Property
112 this.isCastingUnchecked = TypeSimplifier.isCastingUnchecked(property.getTypeMirror()); in Property()
164 public boolean isCastingUnchecked() { in isCastingUnchecked() method in GwtSerialization.Property
165 return isCastingUnchecked; in isCastingUnchecked()
DTypeSimplifier.java325 static boolean isCastingUnchecked(TypeMirror type) { in isCastingUnchecked() method in TypeSimplifier
/external/auto/value/src/test/java/com/google/auto/value/processor/
DTypeSimplifierTest.java230 boolean actualUnchecked = TypeSimplifier.isCastingUnchecked(fieldType); in testIsCastingUnchecked()