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

/frameworks/av/media/libeffects/loudness/common/core/
H A Dtypes.h25 #define LE_FX_DISALLOW_COPY_AND_ASSIGN(TypeName) \
26 TypeName(const TypeName&); \
27 void operator=(const TypeName&)
/frameworks/compile/mclinker/include/mcld/Support/
H A DCompiler.h16 #define DISALLOW_COPY_AND_ASSIGN(TypeName) \
17 TypeName(const TypeName&) = delete; \
18 void operator=(const TypeName&) = delete
26 #define DISALLOW_IMPLICIT_CONSTRUCTORS(TypeName) \
27 TypeName() = delete; \
28 DISALLOW_COPY_AND_ASSIGN(TypeName)
/frameworks/base/media/mca/filterpacks/native/base/
H A Dutilities.h28 #define DISALLOW_COPY_AND_ASSIGN(TypeName) \
29 TypeName(const TypeName&); \
30 void operator=(const TypeName&)
34 #define DISALLOW_IMPLICIT_CONSTRUCTORS(TypeName) \
35 TypeName(); \
36 DISALLOW_COPY_AND_ASSIGN(TypeName)
/frameworks/compile/slang/
H A Dslang_rs_export_element.cpp76 llvm::StringRef TypeName; local
84 if (!RSExportType::NormalizeType(T, TypeName, Context, nullptr,
96 TypeName,
111 TypeName,
H A 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,
H A Dslang_rs_export_type.cpp685 llvm::StringRef &TypeName,
693 TypeName = RSExportType::GetTypeName(T);
694 if (Context && TypeName.empty()) {
833 const llvm::StringRef &TypeName,
838 RSContext::export_type_iterator ETI = Context->findExportType(TypeName);
848 DataType dt = RSExportPrimitiveType::GetRSSpecificType(TypeName);
854 TypeName);
861 TypeName,
869 TypeName,
877 TypeName,
684 NormalizeType(const clang::Type *&T, llvm::StringRef &TypeName, RSContext *Context, const clang::VarDecl *VD, ExportKind EK) argument
831 Create(RSContext *Context, const clang::Type *T, const llvm::StringRef &TypeName, ExportKind EK) argument
925 llvm::StringRef TypeName; local
993 GetRSSpecificType(const llvm::StringRef &TypeName) argument
1139 Create(RSContext *Context, const clang::Type *T, const llvm::StringRef &TypeName, bool Normalized) argument
1154 llvm::StringRef TypeName; local
1253 Create(RSContext *Context, const clang::PointerType *PT, const llvm::StringRef &TypeName) argument
1324 Create(RSContext *Context, const clang::ExtVectorType *EVT, const llvm::StringRef &TypeName, bool Normalized) argument
1356 Create(RSContext *Context, const clang::RecordType *RT, const llvm::StringRef &TypeName, unsigned Dim) argument
1485 Create(RSContext *Context, const clang::RecordType *RT, const llvm::StringRef &TypeName, bool mIsArtificial) argument
[all...]
H A Dslang_rs_reflection.cpp1578 std::string TypeName = ET->getElementName(); local
1579 if (addTypeNameForElement(TypeName)) {
1580 mOut.indent() << RS_ELEM_PREFIX << TypeName << " = Element." << TypeName local
1606 std::string TypeName = ET->getElementName(); local
1607 addTypeNameForFieldPacker(TypeName);
1626 std::string TypeName; local
1632 TypeName = ET->getElementName();
1640 if (!TypeName.empty()) {
1643 << TypeName << ")) {\ local
1657 std::string TypeName = GetTypeName(EPT); local
1764 std::string TypeName = GetTypeName(ET); local
1794 std::string TypeName = GetTypeName(EV->getType()); local
1808 std::string TypeName = GetTypeName(ET); local
1839 std::string TypeName = GetTypeName(EV->getType()); local
1852 std::string TypeName = GetTypeName(EV->getType()); local
1861 genPrivateExportVariable(const std::string &TypeName, const std::string &VarName) argument
1868 genSetExportVariable(const std::string &TypeName, const RSExportVar *EV, unsigned Dimension) argument
1900 genGetExportVariable(const std::string &TypeName, const std::string &VarName) argument
2794 addTypeNameForElement(const std::string &TypeName) argument
2803 addTypeNameForFieldPacker(const std::string &TypeName) argument
[all...]
H A Dslang_rs_export_type.h226 // @TypeName was retrieved from RSExportType::GetTypeName() before calling
233 const llvm::StringRef &TypeName,
259 llvm::StringRef &TypeName,
379 // @TypeName was retrieved from RSExportType::GetTypeName() before calling
383 const llvm::StringRef &TypeName,
411 static DataType GetRSSpecificType(const llvm::StringRef &TypeName);
468 const llvm::StringRef &TypeName);
501 const llvm::StringRef &TypeName,
549 const llvm::StringRef &TypeName,
654 // @TypeName wa
[all...]
H A Dslang_rs_context.h285 export_type_iterator findExportType(const llvm::StringRef &TypeName) { argument
286 return mExportTypes.find(TypeName);
288 const_export_type_iterator findExportType(const llvm::StringRef &TypeName)
290 return mExportTypes.find(TypeName);
296 bool insertExportType(const llvm::StringRef &TypeName, RSExportType *Type);
H A Dslang_rs_reflection_cpp.cpp555 std::string TypeName = GetTypeName(EPT); local
558 mOut.indent() << "void set_" << EV->getName() << "(" << TypeName << " v)";
570 mOut.indent() << TypeName << " get_" << EV->getName() << "() const";
574 bool isBool = !strcmp(TypeName.c_str(), "bool");
591 std::string TypeName = GetTypeName(ET); local
599 mOut.indent() << "void bind_" << VarName << "(" << TypeName << " v)"; local
605 mOut.indent() << TypeName << " get_" << VarName << "() const";
609 bool isBool = !strcmp(TypeName.c_str(), "bool");
865 std::string TypeName; local
870 TypeName
881 << kRsElemPrefix << TypeName << "))"; local
908 std::string TypeName = ET->getElementName(); local
[all...]
H A Dslang_rs_check_ast.cpp203 llvm::StringRef TypeName; local
205 if (!RSExportType::NormalizeType(T, TypeName, Context, VD,
H A Dslang_rs_context.cpp387 bool RSContext::insertExportType(const llvm::StringRef &TypeName, argument
390 ExportTypeMap::value_type::Create(TypeName,
H A Dslang_backend.cpp620 clang::StringRef TypeName = TD->getName(); local
621 if (TypeName.equals("rs_allocation")) {
623 } else if (TypeName.equals("rs_script_call_t")) {
/frameworks/rs/rsov/compiler/
H A DRSAllocationUtils.cpp44 std::string TypeName; local
45 raw_string_ostream RSO(TypeName);
48 DEBUG(dbgs() << "TypeName: " << TypeName << '\n');
50 return TypeName.find("struct.rs_allocation") != std::string::npos;
/frameworks/compile/libbcc/bcinfo/BitReader_2_7/
H A DBitcodeReader.cpp909 SmallString<64> TypeName; local
1026 if (ConvertToString(Record, 0, TypeName))
1040 Res->setName(TypeName);
1043 Res = createIdentifiedStructType(Context, TypeName);
1044 TypeName.clear();
1069 Res->setName(TypeName);
1072 Res = createIdentifiedStructType(Context, TypeName);
1073 TypeName.clear();
1300 std::string TypeName; local
1328 if (ConvertToString(Record, 1, TypeName))
[all...]
/frameworks/compile/libbcc/bcinfo/BitReader_3_0/
H A DBitcodeReader.cpp1185 SmallString<64> TypeName; local
1321 if (ConvertToString(Record, 0, TypeName))
1335 Res->setName(TypeName);
1338 Res = createIdentifiedStructType(Context, TypeName);
1339 TypeName.clear();
1364 Res->setName(TypeName);
1367 Res = createIdentifiedStructType(Context, TypeName);
1368 TypeName.clear();
1612 std::string TypeName; local
1640 if (ConvertToString(Record, 1, TypeName))
[all...]

Completed in 232 milliseconds