Searched refs:TypeName (Results 1 - 15 of 15) 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/ex/variablespeed/jni/
H A Dmacros.h42 #define DISALLOW_COPY_AND_ASSIGN(TypeName) \
43 TypeName(const TypeName&); \
44 void operator=(const 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_reflection.cpp864 std::string TypeName = ET->getElementName(); local
865 if (addTypeNameForElement(TypeName)) {
866 mOut.indent() << RS_ELEM_PREFIX << TypeName << " = Element." << TypeName local
892 std::string TypeName = ET->getElementName(); local
893 addTypeNameForFieldPacker(TypeName);
912 std::string TypeName; local
918 TypeName = ET->getElementName();
926 if (!TypeName.empty()) {
929 << TypeName << ")) {\ local
943 std::string TypeName = GetTypeName(EPT); local
1050 std::string TypeName = GetTypeName(ET); local
1080 std::string TypeName = GetTypeName(EV->getType()); local
1094 std::string TypeName = GetTypeName(ET); local
1124 std::string TypeName = GetTypeName(EV->getType()); local
1137 std::string TypeName = GetTypeName(EV->getType()); local
1146 genPrivateExportVariable(const std::string &TypeName, const std::string &VarName) argument
1152 genSetExportVariable(const std::string &TypeName, const RSExportVar *EV) argument
1183 genGetExportVariable(const std::string &TypeName, const std::string &VarName) argument
2094 addTypeNameForElement(const std::string &TypeName) argument
2103 addTypeNameForFieldPacker(const std::string &TypeName) argument
[all...]
H A Dslang_rs_export_type.cpp624 llvm::StringRef &TypeName,
631 TypeName = RSExportType::GetTypeName(T);
632 if (Context && TypeName.empty()) {
760 const llvm::StringRef &TypeName) {
764 RSContext::export_type_iterator ETI = Context->findExportType(TypeName);
774 DataType dt = RSExportPrimitiveType::GetRSSpecificType(TypeName);
780 TypeName);
787 TypeName,
795 TypeName,
803 TypeName,
623 NormalizeType(const clang::Type *&T, llvm::StringRef &TypeName, RSContext *Context, const clang::VarDecl *VD) argument
758 Create(RSContext *Context, const clang::Type *T, const llvm::StringRef &TypeName) argument
850 llvm::StringRef TypeName; local
918 GetRSSpecificType(const llvm::StringRef &TypeName) argument
1064 Create(RSContext *Context, const clang::Type *T, const llvm::StringRef &TypeName, bool Normalized) argument
1079 llvm::StringRef TypeName; local
1172 Create(RSContext *Context, const clang::PointerType *PT, const llvm::StringRef &TypeName) argument
1241 Create(RSContext *Context, const clang::ExtVectorType *EVT, const llvm::StringRef &TypeName, bool Normalized) argument
1272 Create(RSContext *Context, const clang::RecordType *RT, const llvm::StringRef &TypeName, unsigned Dim) argument
1398 Create(RSContext *Context, const clang::RecordType *RT, const llvm::StringRef &TypeName, bool mIsArtificial) argument
[all...]
H A Dslang_rs_export_element.cpp76 llvm::StringRef TypeName; local
84 if (!RSExportType::NormalizeType(T, TypeName, Context, NULL))
95 TypeName,
110 TypeName,
H A Dslang_rs_context.h212 export_type_iterator findExportType(const llvm::StringRef &TypeName) { argument
213 return mExportTypes.find(TypeName);
215 const_export_type_iterator findExportType(const llvm::StringRef &TypeName)
217 return mExportTypes.find(TypeName);
223 bool insertExportType(const llvm::StringRef &TypeName, RSExportType *Type);
H A Dslang_rs_reflection.h120 bool addTypeNameForElement(const std::string &TypeName);
121 bool addTypeNameForFieldPacker(const std::string &TypeName);
189 void genPrivateExportVariable(const std::string &TypeName,
191 void genSetExportVariable(const std::string &TypeName, const RSExportVar *EV);
192 void genGetExportVariable(const std::string &TypeName,
H A Dslang_rs_export_type.h200 // @TypeName was retrieve from RSExportType::GetTypeName() before calling
205 const llvm::StringRef &TypeName);
230 llvm::StringRef &TypeName,
296 // @TypeName was retrieved from RSExportType::GetTypeName() before calling
300 const llvm::StringRef &TypeName,
328 static DataType GetRSSpecificType(const llvm::StringRef &TypeName);
381 const llvm::StringRef &TypeName);
414 const llvm::StringRef &TypeName,
462 const llvm::StringRef &TypeName,
566 // @TypeName wa
[all...]
H A Dslang_rs_reflection_cpp.cpp542 std::string TypeName = GetTypeName(EPT, false); local
545 mOut.indent() << "void set_" << EV->getName() << "(" << TypeName << " v)";
557 mOut.indent() << TypeName << " get_" << EV->getName() << "() const";
561 bool isBool = !strcmp(TypeName.c_str(), "bool");
578 std::string TypeName = GetTypeName(ET); local
586 mOut.indent() << "void bind_" << VarName << "(" << TypeName << " v)"; local
592 mOut.indent() << TypeName << " get_" << VarName << "() const";
596 bool isBool = !strcmp(TypeName.c_str(), "bool");
812 std::string TypeName; local
817 TypeName
828 << RS_ELEM_PREFIX << TypeName << "))"; local
855 std::string TypeName = ET->getElementName(); local
[all...]
H A Dslang_rs_check_ast.cpp193 llvm::StringRef TypeName; local
195 if (!RSExportType::NormalizeType(T, TypeName, Context, VD)) {
H A Dslang_rs_context.cpp251 bool RSContext::insertExportType(const llvm::StringRef &TypeName, argument
254 ExportTypeMap::value_type::Create(TypeName,
/frameworks/compile/libbcc/bcinfo/BitReader_2_7/
H A DBitcodeReader.cpp541 SmallString<64> TypeName; local
658 if (ConvertToString(Record, 0, TypeName))
672 Res->setName(TypeName);
675 Res = StructType::create(Context, TypeName);
676 TypeName.clear();
701 Res->setName(TypeName);
704 Res = StructType::create(Context, TypeName);
705 TypeName.clear();
932 std::string TypeName; local
960 if (ConvertToString(Record, 1, TypeName))
[all...]
/frameworks/compile/libbcc/bcinfo/BitReader_3_0/
H A DBitcodeReader.cpp821 SmallString<64> TypeName; local
957 if (ConvertToString(Record, 0, TypeName))
971 Res->setName(TypeName);
974 Res = StructType::create(Context, TypeName);
975 TypeName.clear();
1000 Res->setName(TypeName);
1003 Res = StructType::create(Context, TypeName);
1004 TypeName.clear();
1248 std::string TypeName; local
1276 if (ConvertToString(Record, 1, TypeName))
[all...]

Completed in 389 milliseconds