[go: nahoru, domu]

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/filterfw/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/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.cpp679 llvm::StringRef &TypeName,
687 TypeName = RSExportType::GetTypeName(T);
688 if (Context && TypeName.empty()) {
827 const llvm::StringRef &TypeName,
832 RSContext::export_type_iterator ETI = Context->findExportType(TypeName);
842 DataType dt = RSExportPrimitiveType::GetRSSpecificType(TypeName);
848 TypeName);
855 TypeName,
863 TypeName,
871 TypeName,
678 NormalizeType(const clang::Type *&T, llvm::StringRef &TypeName, RSContext *Context, const clang::VarDecl *VD, ExportKind EK) argument
825 Create(RSContext *Context, const clang::Type *T, const llvm::StringRef &TypeName, ExportKind EK) argument
919 llvm::StringRef TypeName; local
988 GetRSSpecificType(const llvm::StringRef &TypeName) argument
1134 Create(RSContext *Context, const clang::Type *T, const llvm::StringRef &TypeName, bool Normalized) argument
1149 llvm::StringRef TypeName; local
1247 Create(RSContext *Context, const clang::PointerType *PT, const llvm::StringRef &TypeName) argument
1317 Create(RSContext *Context, const clang::ExtVectorType *EVT, const llvm::StringRef &TypeName, bool Normalized) argument
1348 Create(RSContext *Context, const clang::RecordType *RT, const llvm::StringRef &TypeName, unsigned Dim) argument
1475 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
2811 addTypeNameForElement(const std::string &TypeName) argument
2820 addTypeNameForFieldPacker(const std::string &TypeName) argument
[all...]
H A Dslang_rs_export_type.h225 // @TypeName was retrieved from RSExportType::GetTypeName() before calling
232 const llvm::StringRef &TypeName,
258 llvm::StringRef &TypeName,
326 // @TypeName was retrieved from RSExportType::GetTypeName() before calling
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,
600 // @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.cpp553 std::string TypeName = GetTypeName(EPT); local
556 mOut.indent() << "void set_" << EV->getName() << "(" << TypeName << " v)";
568 mOut.indent() << TypeName << " get_" << EV->getName() << "() const";
572 bool isBool = !strcmp(TypeName.c_str(), "bool");
589 std::string TypeName = GetTypeName(ET); local
597 mOut.indent() << "void bind_" << VarName << "(" << TypeName << " v)"; local
603 mOut.indent() << TypeName << " get_" << VarName << "() const";
607 bool isBool = !strcmp(TypeName.c_str(), "bool");
863 std::string TypeName; local
868 TypeName
879 << kRsElemPrefix << TypeName << "))"; local
906 std::string TypeName = ET->getElementName(); local
[all...]
H A Dslang_rs_check_ast.cpp218 llvm::StringRef TypeName; local
220 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.cpp381 clang::StringRef TypeName = TD->getName(); local
382 if (TypeName.equals("rs_allocation")) {
384 } else if (TypeName.equals("rs_script_call_t")) {
/frameworks/compile/libbcc/bcinfo/BitReader_2_7/
H A DBitcodeReader.cpp900 SmallString<64> TypeName; local
1017 if (ConvertToString(Record, 0, TypeName))
1031 Res->setName(TypeName);
1034 Res = createIdentifiedStructType(Context, TypeName);
1035 TypeName.clear();
1060 Res->setName(TypeName);
1063 Res = createIdentifiedStructType(Context, TypeName);
1064 TypeName.clear();
1291 std::string TypeName; local
1319 if (ConvertToString(Record, 1, TypeName))
[all...]
/frameworks/compile/libbcc/bcinfo/BitReader_3_0/
H A DBitcodeReader.cpp1176 SmallString<64> TypeName; local
1312 if (ConvertToString(Record, 0, TypeName))
1326 Res->setName(TypeName);
1329 Res = createIdentifiedStructType(Context, TypeName);
1330 TypeName.clear();
1355 Res->setName(TypeName);
1358 Res = createIdentifiedStructType(Context, TypeName);
1359 TypeName.clear();
1603 std::string TypeName; local
1631 if (ConvertToString(Record, 1, TypeName))
[all...]

Completed in 313 milliseconds