Home
last modified time | relevance | path

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

/system/tools/aidl/build/
Daidl_to_jni.py37 def convert_type(aidl_type): argument
38 if aidl_type.endswith("[]"):
39 return "[" + convert_type(aidl_type[:-2])
40 if aidl_type in DEFAULT_TYPES_TO_JNI:
41 return DEFAULT_TYPES_TO_JNI[aidl_type]
42 elif aidl_type.startswith("List<") | aidl_type.startswith("java.util.List<"):
45 return "L" + aidl_type.replace(".", "/") + ";"