Searched defs:ET (Results 1 - 12 of 12) 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_export_var.cpp31 const RSExportType *ET)
34 mET(ET),
42 switch (ET->getClass()) {
69 static_cast<const RSExportConstantArrayType*>(ET);
89 << mName << ET->getName();
29 RSExportVar(RSContext *Context, const clang::VarDecl *VD, const RSExportType *ET) argument
H A Dslang_rs_export_element.cpp77 RSExportType *ET = NULL; local
99 ET = EPT;
116 ET = EVT;
127 return ET;
H A Dslang_rs_export_func.cpp107 RSExportType *ET = local
110 if (ET == NULL) {
117 slangAssert((ET->getClass() == RSExportType::ExportClassRecord) &&
120 F->mParamPacketType = static_cast<RSExportRecordType *>(ET);
H A Dslang_rs_context.cpp75 RSExportType *ET = RSExportType::CreateFromDecl(this, VD); local
76 if (!ET)
79 RSExportVar *EV = new RSExportVar(this, VD, ET);
136 RSExportType *ET = NULL; local
161 ET = RSExportType::Create(this, T);
164 return (ET != NULL);
252 RSExportType *ET) {
256 ET);
251 insertExportType(const llvm::StringRef &TypeName, RSExportType *ET) argument
H A Dslang_rs_export_foreach.cpp394 RSExportType *ET = RSExportType::Create(Context, T.getTypePtr()); local
396 if (ET == NULL) {
403 slangAssert((ET->getClass() == RSExportType::ExportClassRecord) &&
406 FE->mParamPacketType = static_cast<RSExportRecordType *>(ET);
H A Dslang_rs_backend.cpp198 const RSExportType *ET = EV->getType(); local
206 switch (ET->getClass()) {
209 static_cast<const RSExportPrimitiveType*>(ET);
221 mLLVMContext, ("*" + static_cast<const RSExportPointerType*>(ET)
237 static_cast<const RSExportMatrixType*>(ET)->getDim() - 2)));
453 const RSExportType *ET = I->getValue(); local
458 llvm::MDString::get(mLLVMContext, ET->getName().c_str()));
460 if (ET->getClass() == RSExportType::ExportClassRecord) {
462 static_cast<const RSExportRecordType*>(ET);
473 StructInfoMetadataName.append(ET
[all...]
H A Dslang_rs.cpp105 RSExportType *ET = static_cast<RSExportType *>(RSE); local
106 if (ET->getClass() != RSExportType::ExportClassRecord)
109 RSExportRecordType *ERT = static_cast<RSExportRecordType *>(ET);
H A Dslang_rs_export_type.cpp771 RSExportType *ET = NULL; local
778 ET = RSExportRecordType::Create(Context,
785 ET = RSExportMatrixType::Create(Context,
793 ET = RSExportMatrixType::Create(Context,
801 ET = RSExportMatrixType::Create(Context,
809 ET = RSExportPrimitiveType::Create(Context, T, TypeName);
816 ET = RSExportPrimitiveType::Create(Context, T, TypeName);
820 ET = RSExportPointerType::Create(Context,
828 ET = RSExportVectorType::Create(Context,
834 ET
1443 RSExportType *ET = RSExportElement::CreateFromDecl(Context, FD); local
[all...]
H A Dslang_rs_reflection_cpp.cpp62 static std::string GetTypeName(const RSExportType *ET, bool Brackets = true) { argument
63 switch (ET->getClass()) {
66 static_cast<const RSExportPrimitiveType *>(ET);
76 static_cast<const RSExportPointerType *>(ET)->getPointeeType();
84 const RSExportVectorType *EVT = static_cast<const RSExportVectorType *>(ET);
91 return GetMatrixTypeName(static_cast<const RSExportMatrixType *>(ET));
96 static_cast<const RSExportConstantArrayType *>(ET);
105 return ET->getElementName() + "." RS_TYPE_ITEM_CLASS_NAME;
504 const RSExportType *ET = EV->getType(); local
506 switch (ET
573 const RSExportType *ET = EV->getType(); local
699 genCreateFieldPacker(const RSExportType *ET, const char *FieldPackerName) argument
712 genPackVarOfType(const RSExportType *ET, const char *VarName, const char *FieldPackerName) argument
802 genTypeCheck(const RSExportType *ET, const char *VarName) argument
837 genTypeInstanceFromPointer(const RSExportType *ET) argument
849 genTypeInstance(const RSExportType *ET) argument
865 genInitExportVariable(const RSExportType *ET, const std::string &VarName, const clang::APValue &Val) argument
[all...]
H A Dslang_rs_reflection.cpp86 void genAddElement(const RSExportType *ET, const std::string &VarName,
176 static std::string GetTypeName(const RSExportType *ET, bool Brackets = true) { argument
177 switch (ET->getClass()) {
180 static_cast<const RSExportPrimitiveType *>(ET))->java_name;
184 static_cast<const RSExportPointerType *>(ET)->getPointeeType();
192 const RSExportVectorType *EVT = static_cast<const RSExportVectorType *>(ET);
199 return GetMatrixTypeName(static_cast<const RSExportMatrixType *>(ET));
203 static_cast<const RSExportConstantArrayType *>(ET);
211 return ET->getElementName() + "." RS_TYPE_ITEM_CLASS_NAME;
219 static const char *GetTypeNullValue(const RSExportType *ET) { argument
245 GetBuiltinElementConstruct(const RSExportType *ET) argument
405 const RSExportType *ET = ECAT->getElementType(); local
475 genInitExportVariable(const RSExportType *ET, const std::string &VarName, const clang::APValue &Val) argument
579 const RSExportType *ET = EV->getType(); local
847 genTypeInstanceFromPointer(const RSExportType *ET) argument
859 genTypeInstance(const RSExportType *ET) argument
886 genFieldPackerInstance(const RSExportType *ET) argument
902 genTypeCheck(const RSExportType *ET, const char *VarName) argument
1043 const RSExportType *ET = EV->getType(); local
1093 const RSExportType *ET = EV->getType(); local
1157 const RSExportType *ET = EV->getType(); local
1207 genCreateFieldPacker(const RSExportType *ET, const char *FieldPackerName) argument
1218 genPackVarOfType(const RSExportType *ET, const char *VarName, const char *FieldPackerName) argument
1764 genAddElement(const RSExportType *ET, const std::string &VarName, unsigned ArraySize) argument
1954 const RSExportType *ET = TI->getValue(); local
[all...]
/frameworks/compile/libbcc/lib/Renderscript/
H A DRSForEachExpand.cpp177 llvm::Type *ET = PT->getElementType(); local
178 uint64_t ETSize = DL->getTypeAllocSize(ET);

Completed in 664 milliseconds