Searched refs:mMethodLookup (Results 1 – 1 of 1) sorted by relevance
| /versionedparcelable/versionedparcelable-compiler/src/main/java/androidx/versionedparcelable/compiler/ |
| D | VersionedParcelProcessor.java | 83 private Map<Pattern, String> mMethodLookup = new HashMap<>(); field in VersionedParcelProcessor 90 mMethodLookup.put(Pattern.compile("^boolean$"), "Boolean"); in init() 91 mMethodLookup.put(Pattern.compile("^int$"), "Int"); in init() 92 mMethodLookup.put(Pattern.compile("^long$"), "Long"); in init() 93 mMethodLookup.put(Pattern.compile("^float$"), "Float"); in init() 94 mMethodLookup.put(Pattern.compile("^double$"), "Double"); in init() 95 mMethodLookup.put(Pattern.compile("^java.lang.CharSequence$"), "CharSequence"); in init() 96 mMethodLookup.put(Pattern.compile("^java.lang.String$"), "String"); in init() 97 mMethodLookup.put(Pattern.compile("^android.os.IBinder$"), "StrongBinder"); in init() 98 mMethodLookup.put(Pattern.compile("^byte\\[\\]$"), "ByteArray"); in init() [all …]
|