Home
last modified time | relevance | path

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

/versionedparcelable/versionedparcelable-compiler/src/main/java/androidx/versionedparcelable/compiler/
DVersionedParcelProcessor.java188 TypeElement te = (TypeElement) mEnv.getTypeUtils().asElement( in process() local
190 while (te != null) { in process()
191 Set<Element> collection = fields.get(te.getQualifiedName().toString()); in process()
195 te = (TypeElement) mEnv.getTypeUtils().asElement(te.getSuperclass()); in process()
366 TypeElement te = (TypeElement) mEnv.getTypeUtils().asElement(type); in getMethod()
367 while (te != null) { in getMethod()
368 for (TypeMirror t: te.getInterfaces()) { in getMethod()
372 te = te.getSuperclass() != null ? (TypeElement) mEnv.getTypeUtils() in getMethod()
373 .asElement(te.getSuperclass()) : null; in getMethod()
454 TypeElement te = (TypeElement) mEnv.getTypeUtils().asElement( in checkClass() local
[all …]