Home
last modified time | relevance | path

Searched refs:TypeName (Results 1 – 11 of 11) sorted by relevance

/frameworks/ex/variablespeed/jni/
Dmacros.h42 #define DISALLOW_COPY_AND_ASSIGN(TypeName) \ argument
43 TypeName(const TypeName&); \
44 void operator=(const TypeName&)
/frameworks/compile/slang/
Dslang_rs_export_type.cpp393 llvm::StringRef &TypeName, in NormalizeType() argument
400 TypeName = RSExportType::GetTypeName(T); in NormalizeType()
401 if (TypeName.empty()) { in NormalizeType()
533 const llvm::StringRef &TypeName) { in Create() argument
537 RSContext::export_type_iterator ETI = Context->findExportType(TypeName); in Create()
546 RSExportPrimitiveType::GetRSSpecificType(TypeName); in Create()
552 TypeName); in Create()
559 TypeName, in Create()
567 TypeName, in Create()
575 TypeName, in Create()
[all …]
Dslang_rs_reflection.cpp1055 std::string TypeName = GetElementJavaTypeName(EPT->getType()); in genTypeInstance() local
1056 if (C.mTypesToCheck.find(TypeName) == C.mTypesToCheck.end()) { in genTypeInstance()
1057 C.indent() << "__" << TypeName << " = Element." << TypeName in genTypeInstance()
1059 C.mTypesToCheck.insert(TypeName); in genTypeInstance()
1072 const char *TypeName = GetVectorElementName(EVT); in genTypeInstance() local
1073 if (C.mTypesToCheck.find(TypeName) == C.mTypesToCheck.end()) { in genTypeInstance()
1074 C.indent() << "__" << TypeName << " = Element." << TypeName in genTypeInstance()
1076 C.mTypesToCheck.insert(TypeName); in genTypeInstance()
1112 std::string TypeName; in genTypeCheck() local
1121 TypeName = GetElementJavaTypeName(EPT->getType()); in genTypeCheck()
[all …]
Dslang_rs_export_element.cpp65 llvm::StringRef TypeName; in Create() local
73 if (!RSExportType::NormalizeType(T, TypeName, Context->getDiagnostics(), in Create()
85 TypeName, in Create()
101 TypeName, in Create()
Dslang_rs_context.h193 export_type_iterator findExportType(const llvm::StringRef &TypeName) { in findExportType() argument
194 return mExportTypes.find(TypeName); in findExportType()
196 const_export_type_iterator findExportType(const llvm::StringRef &TypeName) in findExportType() argument
198 return mExportTypes.find(TypeName); in findExportType()
204 bool insertExportType(const llvm::StringRef &TypeName, RSExportType *Type);
Dslang_rs_export_type.h98 const llvm::StringRef &TypeName);
128 llvm::StringRef &TypeName,
229 const llvm::StringRef &TypeName,
263 static DataType GetRSSpecificType(const llvm::StringRef &TypeName);
306 const llvm::StringRef &TypeName);
342 const llvm::StringRef &TypeName,
387 const llvm::StringRef &TypeName,
494 const llvm::StringRef &TypeName,
Dslang_rs_spec_table.cpp71 RSDataTypeSpec(const char *TypeName, in RSDataTypeSpec() argument
74 : mTypeName(TypeName), in RSDataTypeSpec()
94 RSMatrixDataTypeSpec(const char *TypeName, in RSMatrixDataTypeSpec() argument
97 : RSDataTypeSpec(TypeName, TypePragmaName, Dim * Dim * sizeof(ignore)), in RSMatrixDataTypeSpec()
108 RSObjectDataTypeSpec(const char *TypeName, in RSObjectDataTypeSpec() argument
110 : RSDataTypeSpec(TypeName, TypePragmaName, 32 /* opaque pointer */) { in RSObjectDataTypeSpec()
Dslang_rs_context.cpp233 bool RSContext::insertExportType(const llvm::StringRef &TypeName, in insertExportType() argument
236 ExportTypeMap::value_type::Create(TypeName.begin(), in insertExportType()
237 TypeName.end(), in insertExportType()
Dslang_rs_backend.cpp127 llvm::StringRef TypeName; in ValidateVarDecl() local
128 if (!RSExportType::NormalizeType(T, TypeName, &C.getDiagnostics(), VD)) { in ValidateVarDecl()
Dslang_rs_reflection.h239 const std::string &TypeName,
/frameworks/compile/libbcc/bcinfo/BitReader_2_7/
DBitcodeReader.cpp510 SmallString<64> TypeName; in ParseTypeTableBody() local
629 if (ConvertToString(Record, 0, TypeName)) in ParseTypeTableBody()
643 Res->setName(TypeName); in ParseTypeTableBody()
646 Res = StructType::createNamed(Context, TypeName); in ParseTypeTableBody()
647 TypeName.clear(); in ParseTypeTableBody()
672 Res->setName(TypeName); in ParseTypeTableBody()
675 Res = StructType::createNamed(Context, TypeName); in ParseTypeTableBody()
676 TypeName.clear(); in ParseTypeTableBody()
903 std::string TypeName; in ParseOldTypeSymbolTable() local
931 if (ConvertToString(Record, 1, TypeName)) in ParseOldTypeSymbolTable()
[all …]