Home
last modified time | relevance | path

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

/frameworks/compile/mclinker/include/mcld/Support/
DCompiler.h16 #define DISALLOW_COPY_AND_ASSIGN(TypeName) \ argument
17 TypeName(const TypeName&) = delete; \
18 void operator=(const TypeName&) = delete
26 #define DISALLOW_IMPLICIT_CONSTRUCTORS(TypeName) \ argument
27 TypeName() = delete; \
28 DISALLOW_COPY_AND_ASSIGN(TypeName)
/frameworks/av/media/libeffects/loudness/common/core/
Dtypes.h25 #define LE_FX_DISALLOW_COPY_AND_ASSIGN(TypeName) \ argument
26 TypeName(const TypeName&); \
27 void operator=(const TypeName&)
/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/compile/slang/
Dslang_rs_export_type.cpp679 llvm::StringRef &TypeName, in NormalizeType() argument
687 TypeName = RSExportType::GetTypeName(T); in NormalizeType()
688 if (Context && TypeName.empty()) { in NormalizeType()
827 const llvm::StringRef &TypeName, in Create() argument
832 RSContext::export_type_iterator ETI = Context->findExportType(TypeName); in Create()
842 DataType dt = RSExportPrimitiveType::GetRSSpecificType(TypeName); in Create()
848 TypeName); in Create()
855 TypeName, in Create()
863 TypeName, in Create()
871 TypeName, in Create()
[all …]
Dslang_rs_reflection.cpp1578 std::string TypeName = ET->getElementName(); in genTypeInstance() local
1579 if (addTypeNameForElement(TypeName)) { in genTypeInstance()
1580 mOut.indent() << RS_ELEM_PREFIX << TypeName << " = Element." << TypeName in genTypeInstance()
1606 std::string TypeName = ET->getElementName(); in genFieldPackerInstance() local
1607 addTypeNameForFieldPacker(TypeName); in genFieldPackerInstance()
1626 std::string TypeName; in genTypeCheck() local
1632 TypeName = ET->getElementName(); in genTypeCheck()
1640 if (!TypeName.empty()) { in genTypeCheck()
1643 << TypeName << ")) {\n"; in genTypeCheck()
1645 << TypeName << "!\");\n"; in genTypeCheck()
[all …]
Dslang_rs_export_element.cpp76 llvm::StringRef TypeName; in Create() local
84 if (!RSExportType::NormalizeType(T, TypeName, Context, nullptr, in Create()
96 TypeName, in Create()
111 TypeName, in Create()
Dslang_rs_export_type.h232 const llvm::StringRef &TypeName,
258 llvm::StringRef &TypeName,
330 const llvm::StringRef &TypeName,
358 static DataType GetRSSpecificType(const llvm::StringRef &TypeName);
415 const llvm::StringRef &TypeName);
448 const llvm::StringRef &TypeName,
496 const llvm::StringRef &TypeName,
604 const llvm::StringRef &TypeName,
Dslang_rs_reflection_cpp.cpp553 std::string TypeName = GetTypeName(EPT); in genGetterAndSetter() local
556 mOut.indent() << "void set_" << EV->getName() << "(" << TypeName << " v)"; in genGetterAndSetter()
568 mOut.indent() << TypeName << " get_" << EV->getName() << "() const"; in genGetterAndSetter()
572 bool isBool = !strcmp(TypeName.c_str(), "bool"); in genGetterAndSetter()
589 std::string TypeName = GetTypeName(ET); in genPointerTypeExportVariable() local
597 mOut.indent() << "void bind_" << VarName << "(" << TypeName << " v)"; in genPointerTypeExportVariable()
603 mOut.indent() << TypeName << " get_" << VarName << "() const"; in genPointerTypeExportVariable()
607 bool isBool = !strcmp(TypeName.c_str(), "bool"); in genPointerTypeExportVariable()
863 std::string TypeName; in genTypeCheck() local
868 TypeName = ET->getElementName(); in genTypeCheck()
[all …]
Dslang_rs_reflection.h122 bool addTypeNameForElement(const std::string &TypeName);
123 bool addTypeNameForFieldPacker(const std::string &TypeName);
194 void genPrivateExportVariable(const std::string &TypeName,
196 void genSetExportVariable(const std::string &TypeName, const RSExportVar *EV, unsigned Dimension);
197 void genGetExportVariable(const std::string &TypeName,
Dslang_rs_context.h285 export_type_iterator findExportType(const llvm::StringRef &TypeName) { in findExportType() argument
286 return mExportTypes.find(TypeName); in findExportType()
288 const_export_type_iterator findExportType(const llvm::StringRef &TypeName) in findExportType() argument
290 return mExportTypes.find(TypeName); in findExportType()
296 bool insertExportType(const llvm::StringRef &TypeName, RSExportType *Type);
Dslang_rs_check_ast.cpp218 llvm::StringRef TypeName; in ValidateVarDecl() local
220 if (!RSExportType::NormalizeType(T, TypeName, Context, VD, in ValidateVarDecl()
Dslang_rs_context.cpp387 bool RSContext::insertExportType(const llvm::StringRef &TypeName, in insertExportType() argument
390 ExportTypeMap::value_type::Create(TypeName, in insertExportType()
Dslang_backend.cpp381 clang::StringRef TypeName = TD->getName(); in HandleTopLevelDecl() local
382 if (TypeName.equals("rs_allocation")) { in HandleTopLevelDecl()
384 } else if (TypeName.equals("rs_script_call_t")) { in HandleTopLevelDecl()
/frameworks/compile/libbcc/bcinfo/BitReader_2_7/
DBitcodeReader.cpp900 SmallString<64> TypeName; in ParseTypeTableBody() local
1017 if (ConvertToString(Record, 0, TypeName)) in ParseTypeTableBody()
1031 Res->setName(TypeName); in ParseTypeTableBody()
1034 Res = createIdentifiedStructType(Context, TypeName); in ParseTypeTableBody()
1035 TypeName.clear(); in ParseTypeTableBody()
1060 Res->setName(TypeName); in ParseTypeTableBody()
1063 Res = createIdentifiedStructType(Context, TypeName); in ParseTypeTableBody()
1064 TypeName.clear(); in ParseTypeTableBody()
1291 std::string TypeName; in ParseOldTypeSymbolTable() local
1319 if (ConvertToString(Record, 1, TypeName)) in ParseOldTypeSymbolTable()
[all …]
/frameworks/compile/libbcc/bcinfo/BitReader_3_0/
DBitcodeReader.cpp1176 SmallString<64> TypeName; in ParseTypeTableBody() local
1312 if (ConvertToString(Record, 0, TypeName)) in ParseTypeTableBody()
1326 Res->setName(TypeName); in ParseTypeTableBody()
1329 Res = createIdentifiedStructType(Context, TypeName); in ParseTypeTableBody()
1330 TypeName.clear(); in ParseTypeTableBody()
1355 Res->setName(TypeName); in ParseTypeTableBody()
1358 Res = createIdentifiedStructType(Context, TypeName); in ParseTypeTableBody()
1359 TypeName.clear(); in ParseTypeTableBody()
1603 std::string TypeName; in ParseOldTypeSymbolTable() local
1631 if (ConvertToString(Record, 1, TypeName)) in ParseOldTypeSymbolTable()
[all …]