Home
last modified time | relevance | path

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

/test/vts/compilation_tools/vtsc/code_gen/profiler/
DProfilerCodeGenBase.h60 const std::string& arg_value) = 0;
65 const std::string& arg_value) = 0;
70 const std::string& arg_value) = 0;
75 const std::string& arg_value) = 0;
80 const std::string& arg_value) = 0;
85 const std::string& arg_value) = 0;
90 const std::string& arg_value) = 0;
95 const std::string& arg_name, const std::string& arg_value) = 0;
100 const std::string& arg_value) = 0;
105 const std::string& arg_value) = 0;
[all …]
DHalHidlProfilerCodeGen.h34 const std::string& arg_value) override;
38 const std::string& arg_value) override;
42 const std::string& arg_value) override;
46 const std::string& arg_value) override;
50 const std::string& arg_value) override;
54 const std::string& arg_value) override;
58 const std::string& arg_value) override;
62 const std::string& arg_name, const std::string& arg_value) override;
66 const std::string& arg_value) override;
70 const std::string& arg_value) override;
[all …]
DHalHidlProfilerCodeGen.cpp27 const std::string& arg_name, const std::string& arg_value) { in GenerateProfilerForScalarVariable() argument
30 << "(" << arg_value << ");\n"; in GenerateProfilerForScalarVariable()
35 const std::string& arg_name, const std::string& arg_value) { in GenerateProfilerForStringVariable() argument
38 << "(" << arg_value << ".c_str());\n"; in GenerateProfilerForStringVariable()
40 << "(" << arg_value << ".size());\n"; in GenerateProfilerForStringVariable()
45 const std::string& arg_name, const std::string& arg_value) { in GenerateProfilerForEnumVariable() argument
53 << arg_value << ");\n"; in GenerateProfilerForEnumVariable()
57 << "(static_cast<" << scalar_type << ">(" << arg_value << "));\n"; in GenerateProfilerForEnumVariable()
64 const std::string& arg_name, const std::string& arg_value) { in GenerateProfilerForVectorVariable() argument
66 out << arg_name << "->set_vector_size(" << arg_value << ".size());\n"; in GenerateProfilerForVectorVariable()
[all …]
DProfilerCodeGenBase.cpp145 const std::string& arg_value) { in GenerateProfilerForTypedVariable() argument
149 GenerateProfilerForScalarVariable(out, val, arg_name, arg_value); in GenerateProfilerForTypedVariable()
154 GenerateProfilerForStringVariable(out, val, arg_name, arg_value); in GenerateProfilerForTypedVariable()
159 GenerateProfilerForEnumVariable(out, val, arg_name, arg_value); in GenerateProfilerForTypedVariable()
164 GenerateProfilerForVectorVariable(out, val, arg_name, arg_value); in GenerateProfilerForTypedVariable()
169 GenerateProfilerForArrayVariable(out, val, arg_name, arg_value); in GenerateProfilerForTypedVariable()
174 GenerateProfilerForStructVariable(out, val, arg_name, arg_value); in GenerateProfilerForTypedVariable()
178 GenerateProfilerForUnionVariable(out, val, arg_name, arg_value); in GenerateProfilerForTypedVariable()
183 GenerateProfilerForHidlCallbackVariable(out, val, arg_name, arg_value); in GenerateProfilerForTypedVariable()
188 GenerateProfilerForHidlInterfaceVariable(out, val, arg_name, arg_value); in GenerateProfilerForTypedVariable()
[all …]