Home
last modified time | relevance | path

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

/system/tools/aidl/
Dtype_namespace.h102 virtual bool MaybeAddContainerType(const AidlTypeSpecifier& aidl_type) = 0;
142 const T* Find(const AidlTypeSpecifier& aidl_type) const;
158 bool MaybeAddContainerType(const AidlTypeSpecifier& aidl_type) override;
175 virtual bool CanonicalizeContainerType(const AidlTypeSpecifier& aidl_type,
219 const T* LanguageTypeNamespace<T>::Find(const AidlTypeSpecifier& aidl_type) const { in Find() argument
225 string name = Trim(aidl_type.IsArray() ? aidl_type.GetName() : aidl_type.ToString()); in Find()
229 if (!CanonicalizeContainerType(aidl_type, &container_class, in Find()
264 bool LanguageTypeNamespace<T>::MaybeAddContainerType(const AidlTypeSpecifier& aidl_type) { in MaybeAddContainerType() argument
267 const std::string& type_name = aidl_type.ToString(); in MaybeAddContainerType()
274 if (!CanonicalizeContainerType(aidl_type, &container_class, in MaybeAddContainerType()
[all …]
Dtype_cpp.cpp106 PrimitiveType(const std::string& aidl_type, in PrimitiveType() argument
113 : Type(ValidatableType::KIND_BUILT_IN, kNoPackage, aidl_type, {header}, in PrimitiveType()
116 aidl_type, header, cpp_type, cpp_type,
347 const std::string& aidl_type, in Type() argument
356 : ValidatableType(kind, package, aidl_type, src_file_name, line), in Type()
358 aidl_type_(aidl_type), in Type()
Dtype_cpp.h36 const std::string& aidl_type,
/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(".", "/") + ";"