Searched refs:ET (Results 1 - 16 of 16) sorted by relevance

/frameworks/webview/chromium/tools/
H A Dgenerate_local_manifest.py15 import xml.etree.ElementTree as ET namespace
18 manifest_tree = ET.parse(manifest_path)
19 local_manifest_root = ET.Element('manifest')
31 remove_project = ET.SubElement(local_manifest_root, 'remove-project')
34 local_manifest_tree = ET.ElementTree(local_manifest_root)
/frameworks/compile/slang/
H A Dslang_rs_reflection_cpp.h73 void genInitExportVariable(const RSExportType *ET,
100 void genPackVarOfType(const RSExportType *ET,
105 void genTypeCheck(const RSExportType *ET, const char *VarName);
108 void genTypeInstanceFromPointer(const RSExportType *ET);
109 void genTypeInstance(const RSExportType *ET);
H A Dslang_rs_export_var.cpp44 const RSExportType *ET)
47 mET(ET),
55 switch (ET->getClass()) {
82 static_cast<const RSExportConstantArrayType*>(ET);
102 << ET->getName();
42 RSExportVar(RSContext *Context, const clang::VarDecl *VD, const RSExportType *ET) argument
H A Dslang_rs_reflection_cpp.cpp64 static std::string GetTypeName(const RSExportType *ET, bool Brackets = true) { argument
65 switch (ET->getClass()) {
68 static_cast<const RSExportPrimitiveType*>(ET))->c_name;
72 static_cast<const RSExportPointerType*>(ET)->getPointeeType();
81 static_cast<const RSExportVectorType*>(ET);
88 return GetMatrixTypeName(static_cast<const RSExportMatrixType*>(ET));
93 static_cast<const RSExportConstantArrayType*>(ET);
102 return ET->getElementName() + "." RS_TYPE_ITEM_CLASS_NAME;
483 const RSExportType *ET = EV->getType(); local
485 switch (ET
543 const RSExportType *ET = EV->getType(); local
675 genCreateFieldPacker(const RSExportType *ET, const char *FieldPackerName) argument
690 genPackVarOfType(const RSExportType *ET, const char *VarName, const char *FieldPackerName) argument
792 genTypeCheck(const RSExportType *ET, const char *VarName) argument
836 genTypeInstanceFromPointer(const RSExportType *ET) argument
848 genTypeInstance(const RSExportType *ET) argument
864 genInitExportVariable(const RSExportType *ET, const std::string &VarName, const clang::APValue &Val) argument
[all...]
H A Dslang_rs_reflection.cpp162 static std::string GetTypeName(const RSExportType *ET, bool Brackets = true) { argument
163 switch (ET->getClass()) {
166 static_cast<const RSExportPrimitiveType*>(ET))->java_name;
170 static_cast<const RSExportPointerType*>(ET)->getPointeeType();
179 static_cast<const RSExportVectorType*>(ET);
186 return GetMatrixTypeName(static_cast<const RSExportMatrixType*>(ET));
190 static_cast<const RSExportConstantArrayType*>(ET);
198 return ET->getElementName() + "."RS_TYPE_ITEM_CLASS_NAME;
208 static const char *GetTypeNullValue(const RSExportType *ET) { argument
209 switch (ET
236 GetBuiltinElementConstruct(const RSExportType *ET) argument
374 const RSExportType *ET = ECAT->getElementType(); local
451 genInitExportVariable(Context &C, const RSExportType *ET, const std::string &VarName, const clang::APValue &Val) argument
562 const RSExportType *ET = EV->getType(); local
797 genTypeInstanceFromPointer(Context &C, const RSExportType *ET) argument
810 genTypeInstance(Context &C, const RSExportType *ET) argument
838 genFieldPackerInstance(Context &C, const RSExportType *ET) argument
855 genTypeCheck(Context &C, const RSExportType *ET, const char *VarName) argument
965 const RSExportType *ET = EV->getType(); local
1023 const RSExportType *ET = EV->getType(); local
1099 const RSExportType *ET = EV->getType(); local
1162 genCreateFieldPacker(Context &C, const RSExportType *ET, const char *FieldPackerName) argument
1174 genPackVarOfType(Context &C, const RSExportType *ET, const char *VarName, const char *FieldPackerName) argument
1862 genAddElementToElementBuilder(Context &C, const RSExportType *ET, const std::string &VarName, const char *ElementBuilderName, const char *RenderScriptVar, unsigned ArraySize) argument
2089 const RSExportType *ET = TI->getValue(); local
[all...]
H A Dslang_rs_context.cpp92 RSExportType *ET = RSExportType::CreateFromDecl(this, VD); local
93 if (!ET)
96 RSExportVar *EV = new RSExportVar(this, VD, ET);
155 RSExportType *ET = NULL; local
180 ET = RSExportType::Create(this, T);
183 return (ET != NULL);
271 RSExportType *ET) {
276 ET);
270 insertExportType(const llvm::StringRef &TypeName, RSExportType *ET) argument
H A Dslang_rs_export_element.cpp65 RSExportType *ET = NULL; local
88 ET = EPT;
105 ET = EVT;
116 return ET;
H A Dslang_rs_export_func.cpp110 RSExportType *ET = local
113 if (ET == NULL) {
120 slangAssert((ET->getClass() == RSExportType::ExportClassRecord) &&
123 F->mParamPacketType = static_cast<RSExportRecordType *>(ET);
H A Dslang_rs_export_var.h50 const RSExportType *ET);
H A Dslang_rs_backend.cpp205 const RSExportType *ET = EV->getType(); local
213 switch (ET->getClass()) {
216 static_cast<const RSExportPrimitiveType*>(ET);
228 mLLVMContext, ("*" + static_cast<const RSExportPointerType*>(ET)
237 static_cast<const RSExportMatrixType*>(ET)->getDim() - 2)));
442 const RSExportType *ET = I->getValue(); local
447 llvm::MDString::get(mLLVMContext, ET->getName().c_str()));
449 if (ET->getClass() == RSExportType::ExportClassRecord) {
451 static_cast<const RSExportRecordType*>(ET);
462 StructInfoMetadataName.append(ET
[all...]
H A Dslang_rs_reflection.h242 const RSExportType *ET,
271 const RSExportType *ET,
275 const RSExportType *ET);
278 const RSExportType *ET);
281 const RSExportType *ET);
H A Dslang_rs_export_type.cpp701 RSExportType *ET = NULL;
709 ET = RSExportRecordType::Create(Context,
716 ET = RSExportMatrixType::Create(Context,
724 ET = RSExportMatrixType::Create(Context,
732 ET = RSExportMatrixType::Create(Context,
740 ET = RSExportPrimitiveType::Create(Context, T, TypeName);
747 ET = RSExportPrimitiveType::Create(Context, T, TypeName);
751 ET = RSExportPointerType::Create(Context,
758 ET = RSExportVectorType::Create(Context,
763 ET
795 GetTypeStoreSize(const RSExportType *ET) argument
800 GetTypeAllocSize(const RSExportType *ET) argument
1463 RSExportType *ET = RSExportElement::CreateFromDecl(Context, FD); local
[all...]
H A Dslang_rs.cpp106 RSExportType *ET = static_cast<RSExportType *>(RSE); local
107 if (ET->getClass() != RSExportType::ExportClassRecord)
110 RSExportRecordType *ERT = static_cast<RSExportRecordType *>(ET);
H A Dslang_rs_export_foreach.cpp448 RSExportType *ET = RSExportType::Create(Context, T.getTypePtr()); local
450 if (ET == NULL) {
457 slangAssert((ET->getClass() == RSExportType::ExportClassRecord) &&
460 FE->mParamPacketType = static_cast<RSExportRecordType *>(ET);
H A Dslang_rs_export_type.h197 static size_t GetTypeStoreSize(const RSExportType *ET);
200 static size_t GetTypeAllocSize(const RSExportType *ET);
/frameworks/compile/libbcc/lib/Renderscript/
H A DRSForEachExpand.cpp128 llvm::Type *ET = PT->getElementType(); local
129 uint64_t ETSize = DL->getTypeAllocSize(ET);

Completed in 1080 milliseconds