Home
last modified time | relevance | path

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

/frameworks/base/media/mca/filterfw/native/base/
Dutilities.h28 #define DISALLOW_COPY_AND_ASSIGN(TypeName) \ argument
29 TypeName(const TypeName&); \
30 void operator=(const TypeName&)
34 #define DISALLOW_IMPLICIT_CONSTRUCTORS(TypeName) \ argument
35 TypeName(); \
36 DISALLOW_COPY_AND_ASSIGN(TypeName)
/frameworks/base/media/mca/filterpacks/native/base/
Dutilities.h28 #define DISALLOW_COPY_AND_ASSIGN(TypeName) \ argument
29 TypeName(const TypeName&); \
30 void operator=(const TypeName&)
34 #define DISALLOW_IMPLICIT_CONSTRUCTORS(TypeName) \ argument
35 TypeName(); \
36 DISALLOW_COPY_AND_ASSIGN(TypeName)
/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.cpp545 llvm::StringRef &TypeName, in NormalizeType() argument
552 TypeName = RSExportType::GetTypeName(T); in NormalizeType()
553 if (TypeName.empty()) { in NormalizeType()
695 const llvm::StringRef &TypeName) { in Create() argument
699 RSContext::export_type_iterator ETI = Context->findExportType(TypeName); in Create()
708 RSExportPrimitiveType::GetRSSpecificType(TypeName); in Create()
714 TypeName); in Create()
721 TypeName, in Create()
729 TypeName, in Create()
737 TypeName, in Create()
[all …]
Dslang_rs_reflection.cpp816 std::string TypeName = ET->getElementName(); in genTypeInstance() local
817 if (C.addTypeNameForElement(TypeName)) { in genTypeInstance()
818 C.indent() << RS_ELEM_PREFIX << TypeName << " = Element." << TypeName in genTypeInstance()
845 std::string TypeName = ET->getElementName(); in genFieldPackerInstance() local
846 C.addTypeNameForFieldPacker(TypeName); in genFieldPackerInstance()
866 std::string TypeName; in genTypeCheck() local
872 TypeName = ET->getElementName(); in genTypeCheck()
880 if (!TypeName.empty()) { in genTypeCheck()
883 << TypeName << ")) {" << std::endl; in genTypeCheck()
885 << TypeName << "!\");" << std::endl; in genTypeCheck()
[all …]
Dslang_rs_export_element.cpp64 llvm::StringRef TypeName; in Create() local
72 if (!RSExportType::NormalizeType(T, TypeName, Context->getDiagnostics(), in Create()
84 TypeName, in Create()
99 TypeName, in Create()
Dslang_rs_context.h208 export_type_iterator findExportType(const llvm::StringRef &TypeName) { in findExportType() argument
209 return mExportTypes.find(TypeName); in findExportType()
211 const_export_type_iterator findExportType(const llvm::StringRef &TypeName) in findExportType() argument
213 return mExportTypes.find(TypeName); in findExportType()
219 bool insertExportType(const llvm::StringRef &TypeName, RSExportType *Type);
Dslang_rs_spec_table.cpp65 RSDataTypeSpec(const char *TypeName, in RSDataTypeSpec() argument
68 : mTypeName(TypeName), in RSDataTypeSpec()
88 RSMatrixDataTypeSpec(const char *TypeName, in RSMatrixDataTypeSpec() argument
91 : RSDataTypeSpec(TypeName, TypePragmaName, Dim * Dim * sizeof(ignore)), in RSMatrixDataTypeSpec()
102 RSObjectDataTypeSpec(const char *TypeName, in RSObjectDataTypeSpec() argument
104 : RSDataTypeSpec(TypeName, TypePragmaName, 32 /* opaque pointer */) { in RSObjectDataTypeSpec()
Dslang_rs_export_type.h126 const llvm::StringRef &TypeName);
156 llvm::StringRef &TypeName,
264 const llvm::StringRef &TypeName,
294 static DataType GetRSSpecificType(const llvm::StringRef &TypeName);
348 const llvm::StringRef &TypeName);
383 const llvm::StringRef &TypeName,
434 const llvm::StringRef &TypeName,
545 const llvm::StringRef &TypeName,
Dslang_rs_reflection.h113 bool addTypeNameForElement(const std::string &TypeName);
114 bool addTypeNameForFieldPacker(const std::string &TypeName);
254 const std::string &TypeName,
257 const std::string &TypeName,
260 const std::string &TypeName,
Dslang_rs_context.cpp270 bool RSContext::insertExportType(const llvm::StringRef &TypeName, in insertExportType() argument
273 ExportTypeMap::value_type::Create(TypeName.begin(), in insertExportType()
274 TypeName.end(), in insertExportType()
Dslang_rs_check_ast.cpp86 llvm::StringRef TypeName; in ValidateVarDecl() local
88 if (!RSExportType::NormalizeType(T, TypeName, &mDiagEngine, VD)) { in ValidateVarDecl()
Dslang_rs_reflection_cpp.cpp483 std::string TypeName = GetTypeName(ET); in genPointerTypeExportVariable() local
491 write(string("void bind_") + VarName + "(" + TypeName + in genPointerTypeExportVariable()
499 write(TypeName + " get_" + VarName + "() const {"); in genPointerTypeExportVariable()
502 bool isBool = !strcmp(TypeName.c_str(), "bool"); in genPointerTypeExportVariable()
/frameworks/compile/libbcc/bcinfo/BitReader_2_7/
DBitcodeReader.cpp548 SmallString<64> TypeName; in ParseTypeTableBody() local
664 if (ConvertToString(Record, 0, TypeName)) in ParseTypeTableBody()
678 Res->setName(TypeName); in ParseTypeTableBody()
681 Res = StructType::create(Context, TypeName); in ParseTypeTableBody()
682 TypeName.clear(); in ParseTypeTableBody()
707 Res->setName(TypeName); in ParseTypeTableBody()
710 Res = StructType::create(Context, TypeName); in ParseTypeTableBody()
711 TypeName.clear(); in ParseTypeTableBody()
938 std::string TypeName; in ParseOldTypeSymbolTable() local
966 if (ConvertToString(Record, 1, TypeName)) in ParseOldTypeSymbolTable()
[all …]
/frameworks/compile/libbcc/bcinfo/BitReader_3_0/
DBitcodeReader.cpp829 SmallString<64> TypeName; in ParseTypeTableBody() local
964 if (ConvertToString(Record, 0, TypeName)) in ParseTypeTableBody()
978 Res->setName(TypeName); in ParseTypeTableBody()
981 Res = StructType::create(Context, TypeName); in ParseTypeTableBody()
982 TypeName.clear(); in ParseTypeTableBody()
1007 Res->setName(TypeName); in ParseTypeTableBody()
1010 Res = StructType::create(Context, TypeName); in ParseTypeTableBody()
1011 TypeName.clear(); in ParseTypeTableBody()
1255 std::string TypeName; in ParseOldTypeSymbolTable() local
1283 if (ConvertToString(Record, 1, TypeName)) in ParseOldTypeSymbolTable()
[all …]