Home
last modified time | relevance | path

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

/test/vts/compilation_tools/vtsc/code_gen/profiler/
DProfilerCodeGenBase.cpp48 for (const auto& attribute : interface.attribute()) { in GenerateHeaderFile() local
49 GenerateProfilerMethodDeclForAttribute(out, attribute); in GenerateHeaderFile()
75 for (const auto& attribute : message.attribute()) { in GenerateHeaderFile() local
76 GenerateProfilerMethodDeclForAttribute(out, attribute); in GenerateHeaderFile()
95 for (const auto& attribute : interface.attribute()) { in GenerateSourceFile() local
96 GenerateProfilerMethodImplForAttribute(out, attribute); in GenerateSourceFile()
135 for (const auto& attribute : message.attribute()) { in GenerateSourceFile() local
136 GenerateProfilerMethodImplForAttribute(out, attribute); in GenerateSourceFile()
232 const VariableSpecificationMessage& attribute) { in GenerateProfilerMethodDeclForAttribute() argument
233 if (attribute.type() == TYPE_STRUCT || attribute.type() == TYPE_UNION || in GenerateProfilerMethodDeclForAttribute()
[all …]
DProfilerCodeGenBase.h173 const VariableSpecificationMessage& attribute);
177 const VariableSpecificationMessage& attribute);
/test/vts/utils/python/mirror/
Dnative_entity_mirror.py46 def __init__(self, attribute): argument
47 logging.debug(attribute)
48 for enumerator, scalar_value in zip(attribute.enum_value.enumerator,
49 attribute.enum_value.scalar_value):
51 getattr(scalar_value, attribute.enum_value.scalar_type))
115 if self._if_spec_msg.attribute:
116 for attribute in self._if_spec_msg.attribute:
117 if (not attribute.is_const and
118 (attribute.name == attribute_name
119 or attribute.name.endswith("::" + attribute_name))):
[all …]
/test/vts/compilation_tools/vtsc/code_gen/driver/
DHalHidlCodeGen.cpp432 for (const auto& attribute : message.interface().attribute()) { in GenerateClassHeader() local
433 GenerateAllFunctionDeclForAttribute(out, attribute); in GenerateClassHeader()
438 for (const auto& attribute : message.attribute()) { in GenerateClassHeader() local
439 GenerateAllFunctionDeclForAttribute(out, attribute); in GenerateClassHeader()
505 for (const auto& attribute : message.interface().attribute()) { in GenerateClassImpl() local
506 GenerateAllFunctionImplForAttribute(out, attribute); in GenerateClassImpl()
512 for (const auto& attribute : message.attribute()) { in GenerateClassImpl() local
513 GenerateAllFunctionImplForAttribute(out, attribute); in GenerateClassImpl()
594 const VariableSpecificationMessage& attribute) { in GenerateRandomFunctionDeclForAttribute() argument
595 if (attribute.type() == TYPE_ENUM) { in GenerateRandomFunctionDeclForAttribute()
[all …]
DHalCodeGen.cpp41 const VariableSpecificationMessage& attribute = message.interface().attribute(i); in GenerateCppBodyInterfaceImpl() local
42 if (attribute.type() != TYPE_FUNCTION_POINTER || !attribute.is_callback()) { in GenerateCppBodyInterfaceImpl()
46 "vts_callback_" + fuzzer_extended_class_name + "_" + attribute.name(); in GenerateCppBodyInterfaceImpl()
64 attribute.function_pointer()) { in GenerateCppBodyInterfaceImpl()
338 for (auto const& attribute : message.interface().attribute()) { in GenerateCppBodyFuzzFunction() local
339 if (attribute.type() == TYPE_FUNCTION_POINTER && in GenerateCppBodyFuzzFunction()
340 attribute.is_callback()) { in GenerateCppBodyFuzzFunction()
342 "_" + attribute.name(); in GenerateCppBodyFuzzFunction()
346 if (attribute.function_pointer_size() > 1) { in GenerateCppBodyFuzzFunction()
347 for (auto const& func_pt : attribute.function_pointer()) { in GenerateCppBodyFuzzFunction()
[all …]
DHalHidlCodeGen.h129 const VariableSpecificationMessage& attribute);
134 const VariableSpecificationMessage& attribute);
144 const VariableSpecificationMessage& attribute);
149 const VariableSpecificationMessage& attribute);
159 const VariableSpecificationMessage& attribute);
164 const VariableSpecificationMessage& attribute);
174 const VariableSpecificationMessage& attribute);
183 const VariableSpecificationMessage& attribute);
192 const VariableSpecificationMessage& attribute);
196 const VariableSpecificationMessage& attribute);
/test/app_compat/csuite/pylib/
DAndroid.bp21 // dependencies in the tools attribute when we should be using the 'srcs'
22 // attribute. Second, we're accessing jars using a path relative to a known
/test/vts-testcase/fuzz/iface_fuzzer/
DProtoFuzzerUtils.cpp175 for (const auto &var_spec : comp_spec.attribute()) { in ExtractPredefinedTypes()
178 for (const auto &var_spec : comp_spec.interface().attribute()) { in ExtractPredefinedTypes()
/test/app_compat/csuite/integration_tests/
DAndroid.bp21 // dependencies in the tools attribute when we should be using the 'srcs'
22 // attribute. Second, we're accessing jars using a path relative to a known
/test/vts/runners/host/tcp_client/
Dvts_tcp_client.py623 for attribute in imported_result.attribute:
624 imported_attribute = result.attribute.add()
625 imported_attribute.CopyFrom(attribute)
/test/vts/specification/kernel/
Dsyscalls-arm64.vts42 attribute {
/test/vti/dashboard/src/main/webapp/WEB-INF/jsp/
Dshow_gcs_log.jsp36 startingTop: '4%', // Starting top style attribute
37 endingTop: '10%', // Ending top style attribute
Dshow_plan_run.jsp42 startingTop: '4%', // Starting top style attribute
43 endingTop: '10%', // Ending top style attribute
Dshow_tree.jsp78 startingTop: '4%', // Starting top style attribute
79 endingTop: '10%', // Ending top style attribute
Dshow_coverage_overview.jsp68 startingTop: '4%', // Starting top style attribute
69 endingTop: '10%', // Ending top style attribute
/test/vts/proto/
DComponentSpecificationMessage.proto407 // To specify a function argument or an attribute in general.
532 repeated VariableSpecificationMessage attribute = 3001; field
545 repeated VariableSpecificationMessage attribute = 3001; field
592 repeated VariableSpecificationMessage attribute = 2101; field
DVtsDriverControlMessage.proto37 // To get the value of an attribute.
DAndroidSystemControlMessage.proto44 // To get the value of an attribute.
/test/app_compat/csuite/
Dpylintrc200 # Regular expression matching correct attribute names
206 # Regular expression matching correct class attribute names
207 class-attribute-rgx=^(_?[A-Z][A-Z0-9_]*|__[a-z0-9_]+__|_?[a-z][a-z0-9_]*)$