Home
last modified time | relevance | path

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

/frameworks/compile/slang/
Dslang_rs_reflection_cpp.cpp61 static std::string GetTypeName(const RSExportType *ET, bool PreIdentifier = true) { in GetTypeName() argument
62 if((!PreIdentifier) && (ET->getClass() != RSExportType::ExportClassConstantArray)) { in GetTypeName()
66 switch (ET->getClass()) { in GetTypeName()
69 static_cast<const RSExportPrimitiveType *>(ET); in GetTypeName()
79 static_cast<const RSExportPointerType *>(ET)->getPointeeType(); in GetTypeName()
87 const RSExportVectorType *EVT = static_cast<const RSExportVectorType *>(ET); in GetTypeName()
94 return GetMatrixTypeName(static_cast<const RSExportMatrixType *>(ET)); in GetTypeName()
98 static_cast<const RSExportConstantArrayType *>(ET); in GetTypeName()
111 return ET->getElementName() + "." + kRsTypeItemClassName; in GetTypeName()
517 const RSExportType *ET = EV->getType(); in genExportVariablesGetterAndSetter() local
[all …]
Dslang_rs_reflection.cpp93 void genAddElement(const RSExportType *ET, const std::string &VarName,
193 std::string GetReduceResultTypeName(const RSExportType *ET) { in GetReduceResultTypeName() argument
194 switch (ET->getClass()) { in GetReduceResultTypeName()
196 … const RSExportConstantArrayType *const CAT = static_cast<const RSExportConstantArrayType *>(ET); in GetReduceResultTypeName()
206 ET, in GetReduceResultTypeName()
211 …RSReflectionJava::GetTypeName(ET, RSReflectionJava::TypeNameDefault | RSReflectionJava::TypeNameC); in GetReduceResultTypeName()
221 static const char *GetTypeNullValue(const RSExportType *ET) { in GetTypeNullValue() argument
222 switch (ET->getClass()) { in GetTypeNullValue()
225 static_cast<const RSExportPrimitiveType *>(ET); in GetTypeNullValue()
247 static std::string GetBuiltinElementConstruct(const RSExportType *ET) { in GetBuiltinElementConstruct() argument
[all …]
Dslang_rs_export_var.cpp31 const RSExportType *ET) in RSExportVar() argument
34 mET(ET), in RSExportVar()
42 switch (ET->getClass()) { in RSExportVar()
69 static_cast<const RSExportConstantArrayType*>(ET); in RSExportVar()
89 << mName << ET->getName(); in RSExportVar()
Dslang_rs_reflection_cpp.h118 void genInitExportVariable(const RSExportType *ET, const std::string &VarName,
142 void genPackVarOfType(const RSExportType *ET, const char *VarName,
146 void genTypeCheck(const RSExportType *ET, const char *VarName);
149 void genTypeInstanceFromPointer(const RSExportType *ET);
150 void genTypeInstance(const RSExportType *ET);
Dslang_rs_context.cpp83 RSExportType *ET = RSExportType::CreateFromDecl(this, VD); in processExportVar() local
84 if (!ET) in processExportVar()
87 RSExportVar *EV = new RSExportVar(this, VD, ET); in processExportVar()
187 RSExportType *ET = nullptr; in processExportType() local
212 ET = RSExportType::Create(this, T, NotLegacyKernelArgument); in processExportType()
215 return (ET != nullptr); in processExportType()
389 RSExportType *ET) { in insertExportType() argument
393 ET); in insertExportType()
Dslang_rs_export_func.cpp107 RSExportType *ET = in Create() local
110 if (ET == nullptr) { in Create()
117 slangAssert((ET->getClass() == RSExportType::ExportClassRecord) && in Create()
120 F->mParamPacketType = static_cast<RSExportRecordType *>(ET); in Create()
Dslang_rs_export_element.cpp77 RSExportType *ET = nullptr; in Create() local
100 ET = EPT; in Create()
117 ET = EVT; in Create()
128 return ET; in Create()
Dslang_rs_reflection.h206 static std::string GetTypeName(const RSExportType *ET, unsigned Style = TypeNameDefault);
218 void genInitExportVariable(const RSExportType *ET, const std::string &VarName,
245 void genTypeCheck(const RSExportType *ET, const char *VarName);
247 void genTypeInstanceFromPointer(const RSExportType *ET);
249 void genTypeInstance(const RSExportType *ET);
251 void genFieldPackerInstance(const RSExportType *ET);
Dslang_rs_export_type.cpp843 RSExportType *ET = nullptr; in Create() local
850 ET = RSExportRecordType::Create(Context, in Create()
857 ET = RSExportMatrixType::Create(Context, in Create()
865 ET = RSExportMatrixType::Create(Context, in Create()
873 ET = RSExportMatrixType::Create(Context, in Create()
881 ET = RSExportPrimitiveType::Create(Context, T, TypeName); in Create()
888 ET = RSExportPrimitiveType::Create(Context, T, TypeName); in Create()
892 ET = RSExportPointerType::Create(Context, in Create()
900 ET = RSExportVectorType::Create(Context, in Create()
906 ET = RSExportConstantArrayType::Create( in Create()
[all …]
Dslang_backend.cpp765 const RSExportType *ET = EV->getType(); in dumpExportVarInfo() local
773 switch (ET->getClass()) { in dumpExportVarInfo()
776 static_cast<const RSExportPrimitiveType*>(ET); in dumpExportVarInfo()
788 mLLVMContext, ("*" + static_cast<const RSExportPointerType*>(ET) in dumpExportVarInfo()
804 static_cast<const RSExportMatrixType*>(ET)->getDim() - 2))); in dumpExportVarInfo()
1149 const RSExportType *ET = I->getValue(); in dumpExportTypeInfo() local
1154 llvm::MDString::get(mLLVMContext, ET->getName().c_str())); in dumpExportTypeInfo()
1156 if (ET->getClass() == RSExportType::ExportClassRecord) { in dumpExportTypeInfo()
1158 static_cast<const RSExportRecordType*>(ET); in dumpExportTypeInfo()
1169 StructInfoMetadataName.append(ET->getName()); in dumpExportTypeInfo()
Dslang_rs_export_foreach.cpp372 RSExportType *ET = in Create() local
375 if (ET) { in Create()
376 slangAssert((ET->getClass() == RSExportType::ExportClassRecord) && in Create()
379 FE->mParamPacketType = static_cast<RSExportRecordType *>(ET); in Create()
Dslang_rs_export_var.h50 const RSExportType *ET);
Dslang.cpp481 RSExportType *ET = static_cast<RSExportType *>(RSE); in checkODR() local
482 if (ET->getClass() != RSExportType::ExportClassRecord) in checkODR()
485 RSExportRecordType *ERT = static_cast<RSExportRecordType *>(ET); in checkODR()
/frameworks/av/services/audiopolicy/engineconfigurable/tools/
DbuildPolicyCriterionTypes.py24 import xml.etree.ElementTree as ET namespace
86 criterion_types_in_tree = ET.parse(criterionTypesFile)
93 values_node = ET.SubElement(criterion_type, "values")
96 value_node = ET.SubElement(values_node, "value")
112 values_node = ET.SubElement(criterion_type, "values")
115 value_node = ET.SubElement(values_node, "value", literal=value)
119 xmlstr = ET.tostring(criterion_types_root, encoding='utf8', method='xml')
151 policy_in_tree = ET.parse(audiopolicyconfigurationfile)
DbuildStrategiesStructureFile.py23 import xml.etree.ElementTree as ET namespace
72 strategies_in_tree = ET.parse(strategy_structure_in_file)
80 ET.SubElement(strategy_components, "Component",
84 xmlstr = ET.tostring(strategies_root, encoding='utf8', method='xml')
111 policy_engine_in_tree = ET.parse(audiopolicyengineconfigurationfile)
DbuildCommonTypesStructureFile.py23 import xml.etree.ElementTree as ET namespace
66 component_types_in_tree = ET.parse(structureTypesFile)
77 value_node = ET.SubElement(bitparameters_node, "BitParameter")
86 value_node = ET.SubElement(enum_parameter_node, "ValuePair")
90 xmlstr = ET.tostring(component_types_root, encoding='utf8', method='xml')
DdomainGeneratorPolicy.py25 import xml.etree.ElementTree as ET namespace
114 criteria_tree = ET.parse(criteriaFile)
116 criterion_types_tree = ET.parse(criterionTypesFile)
/frameworks/base/tools/aapt2/tools/
Dpublic_attr_map.py4 import xml.etree.ElementTree as ET namespace
28 tree = ET.parse(f)
/frameworks/base/tools/stringslint/
Dstringslint.py34 import lxml.etree as ET namespace
103 …if not isinstance(tag, ET._Comment) and re.match("{.*xliff.*}g", tag.tag) and "example" in tag.att…
121 tree = ET.fromstring(raw)
127 if isinstance(child, ET._Comment):
/frameworks/rs/tests/lldb/
Drun_tests.py27 import xml.etree.ElementTree as ET namespace
665 results = ET.Element('testsuite')
676 testcase = ET.Element('testcase')
678 result_element = ET.Element(value)
696 state.results_file.write(ET.tostring(results, encoding='iso-8859-1'))
/frameworks/compile/libbcc/lib/
DRSKernelExpand.cpp242 llvm::Type *ET = PT->getElementType(); in getStepValue() local
243 uint64_t ETSize = DL->getTypeAllocSize(ET); in getStepValue()
/frameworks/base/config/
Dhiddenapi-greylist-max-o.txt27179 Landroid/icu/text/Bidi;->ET:B