Home
last modified time | relevance | path

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

/test/vts/utils/python/mirror/
Dnative_entity_mirror.py105 def GetAttribute(self, attribute_name): argument
118 (attribute.name == attribute_name
119 or attribute.name.endswith("::" + attribute_name))):
125 (attribute.name == attribute_name
126 or attribute.name.endswith("::" + attribute_name))):
160 def Py2Pb(self, attribute_name, py_values): argument
170 attribute_spec = self.GetAttribute(attribute_name)
177 logging.error("Can not find attribute: %s", attribute_name)
/test/vts/compilation_tools/vtsc/code_gen/profiler/
DProfilerCodeGenBase.cpp246 std::string attribute_name = attribute.name(); in GenerateProfilerMethodDeclForAttribute() local
247 ReplaceSubString(attribute_name, "::", "__"); in GenerateProfilerMethodDeclForAttribute()
248 out << "void profile__" << attribute_name in GenerateProfilerMethodDeclForAttribute()
268 std::string attribute_name = attribute.name(); in GenerateProfilerMethodImplForAttribute() local
269 ReplaceSubString(attribute_name, "::", "__"); in GenerateProfilerMethodImplForAttribute()
270 out << "void profile__" << attribute_name in GenerateProfilerMethodImplForAttribute()
/test/vts/compilation_tools/vtsc/code_gen/driver/
DHalHidlCodeGen.cpp599 string attribute_name = ClearStringWithNameSpaceAccess(attribute.name()); in GenerateRandomFunctionDeclForAttribute() local
601 << "Random" << attribute_name << "();\n"; in GenerateRandomFunctionDeclForAttribute()
613 string attribute_name = ClearStringWithNameSpaceAccess(attribute.name()); in GenerateRandomFunctionImplForAttribute() local
614 out << attribute.enum_value().scalar_type() << " Random" << attribute_name in GenerateRandomFunctionImplForAttribute()