Home
last modified time | relevance | path

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

/frameworks/av/drm/mediadrm/plugins/clearkey/hidl/include/
DClearKeyTypes.h41 #define CLEARKEY_DISALLOW_COPY_AND_ASSIGN(TypeName) \ argument
42 TypeName(const TypeName&) = delete; \
43 void operator=(const TypeName&) = delete;
45 #define CLEARKEY_DISALLOW_COPY_AND_ASSIGN_AND_NEW(TypeName) \ argument
46 TypeName() = delete; \
47 TypeName(const TypeName&) = delete; \
48 void operator=(const TypeName&) = delete;
/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/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.cpp683 llvm::StringRef &TypeName, in NormalizeType() argument
691 TypeName = RSExportType::GetTypeName(T); in NormalizeType()
692 if (Context && TypeName.empty()) { in NormalizeType()
831 const llvm::StringRef &TypeName, in Create() argument
836 RSContext::export_type_iterator ETI = Context->findExportType(TypeName); in Create()
846 DataType dt = RSExportPrimitiveType::GetRSSpecificType(TypeName); in Create()
852 TypeName); in Create()
859 TypeName, in Create()
867 TypeName, in Create()
875 TypeName, in Create()
[all …]
Dslang_rs_reflection.cpp1783 std::string TypeName = ET->getElementName(); in genTypeInstance() local
1784 if (addTypeNameForElement(TypeName)) { in genTypeInstance()
1785 mOut.indent() << RS_ELEM_PREFIX << TypeName << " = Element." << TypeName in genTypeInstance()
1811 std::string TypeName = ET->getElementName(); in genFieldPackerInstance() local
1812 addTypeNameForFieldPacker(TypeName); in genFieldPackerInstance()
1831 std::string TypeName; in genTypeCheck() local
1837 TypeName = ET->getElementName(); in genTypeCheck()
1845 if (!TypeName.empty()) { in genTypeCheck()
1848 << TypeName << ")) {\n"; in genTypeCheck()
1850 << 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_reflection_cpp.cpp555 std::string TypeName = GetTypeName(EPT); in genGetterAndSetter() local
558 mOut.indent() << "void set_" << EV->getName() << "(" << TypeName << " v)"; in genGetterAndSetter()
570 mOut.indent() << TypeName << " get_" << EV->getName() << "() const"; in genGetterAndSetter()
574 bool isBool = !strcmp(TypeName.c_str(), "bool"); in genGetterAndSetter()
591 std::string TypeName = GetTypeName(ET); in genPointerTypeExportVariable() local
599 mOut.indent() << "void bind_" << VarName << "(" << TypeName << " v)"; in genPointerTypeExportVariable()
605 mOut.indent() << TypeName << " get_" << VarName << "() const"; in genPointerTypeExportVariable()
609 bool isBool = !strcmp(TypeName.c_str(), "bool"); in genPointerTypeExportVariable()
865 std::string TypeName; in genTypeCheck() local
870 TypeName = ET->getElementName(); in genTypeCheck()
[all …]
Dslang_rs_export_type.h234 const llvm::StringRef &TypeName,
260 llvm::StringRef &TypeName,
384 const llvm::StringRef &TypeName,
412 static DataType GetRSSpecificType(const llvm::StringRef &TypeName);
469 const llvm::StringRef &TypeName);
502 const llvm::StringRef &TypeName,
550 const llvm::StringRef &TypeName,
663 const llvm::StringRef &TypeName,
Dslang_rs_reflection.h135 bool addTypeNameForElement(const std::string &TypeName);
136 bool addTypeNameForFieldPacker(const std::string &TypeName);
228 void genPrivateExportVariable(const std::string &TypeName,
230 void genSetExportVariable(const std::string &TypeName, const RSExportVar *EV, unsigned Dimension,
232 void genGetExportVariable(const std::string &TypeName,
Dslang_rs_reflection_state.cpp395 const std::string TypeName = (Type ? getUniqueTypeName(Type) : std::string()); in addForEachIn() local
399 ins.CollectNext() = canon(TypeName); in addForEachIn()
405 if (!ins.UseNext().equals(TypeName)) { in addForEachIn()
406 if (ins.Current().size() && TypeName.size()) { in addForEachIn()
414 << TypeName; in addForEachIn()
416 const bool hasType64 = TypeName.size(); in addForEachIn()
423 << (ins.Current().str() + TypeName) in addForEachIn()
437 const std::string TypeName = getUniqueTypeName(Type); in addForEachParam() local
441 params.CollectNext() = canon(TypeName); in addForEachParam()
447 if (!params.UseNext().equals(TypeName)) { in addForEachParam()
[all …]
Dslang_rs_context.h304 export_type_iterator findExportType(const llvm::StringRef &TypeName) { in findExportType() argument
305 return mExportTypes.find(TypeName); in findExportType()
307 const_export_type_iterator findExportType(const llvm::StringRef &TypeName) in findExportType() argument
309 return mExportTypes.find(TypeName); in findExportType()
315 bool insertExportType(const llvm::StringRef &TypeName, RSExportType *Type);
Dslang_rs_check_ast.cpp203 llvm::StringRef TypeName; in ValidateVarDecl() local
205 if (!RSExportType::NormalizeType(T, TypeName, Context, VD, in ValidateVarDecl()
Dslang_rs_context.cpp388 bool RSContext::insertExportType(const llvm::StringRef &TypeName, in insertExportType() argument
391 ExportTypeMap::value_type::Create(TypeName, in insertExportType()
Dslang_backend.cpp620 clang::StringRef TypeName = TD->getName(); in HandleTopLevelDecl() local
621 if (TypeName.equals("rs_allocation")) { in HandleTopLevelDecl()
623 } else if (TypeName.equals("rs_script_call_t")) { in HandleTopLevelDecl()
/frameworks/base/packages/SettingsLib/search/processor-src/com/android/settingslib/search/
DIndexableProcessor.java24 import com.squareup.javapoet.TypeName;
79 TypeName.get(Class.class)), in process()
140 TypeName.get(Class.class))) in process()
/frameworks/base/tools/processors/view_inspector/src/java/android/processor/view/inspector/
DInspectionCompanionGenerator.java32 import com.squareup.javapoet.TypeName;
158 .builder(TypeName.BOOLEAN, "mPropertiesMapped", Modifier.PRIVATE) in generateTypeSpec()
188 .builder(TypeName.INT, memberName, Modifier.PRIVATE) in generateIdFieldSpecs()
/frameworks/compile/libbcc/bcinfo/BitReader_2_7/
DBitcodeReader.cpp909 SmallString<64> TypeName; in ParseTypeTableBody() local
1026 if (ConvertToString(Record, 0, TypeName)) in ParseTypeTableBody()
1040 Res->setName(TypeName); in ParseTypeTableBody()
1043 Res = createIdentifiedStructType(Context, TypeName); in ParseTypeTableBody()
1044 TypeName.clear(); in ParseTypeTableBody()
1069 Res->setName(TypeName); in ParseTypeTableBody()
1072 Res = createIdentifiedStructType(Context, TypeName); in ParseTypeTableBody()
1073 TypeName.clear(); in ParseTypeTableBody()
1300 std::string TypeName; in ParseOldTypeSymbolTable() local
1328 if (ConvertToString(Record, 1, TypeName)) in ParseOldTypeSymbolTable()
[all …]
/frameworks/compile/libbcc/bcinfo/BitReader_3_0/
DBitcodeReader.cpp1185 SmallString<64> TypeName; in ParseTypeTableBody() local
1321 if (ConvertToString(Record, 0, TypeName)) in ParseTypeTableBody()
1335 Res->setName(TypeName); in ParseTypeTableBody()
1338 Res = createIdentifiedStructType(Context, TypeName); in ParseTypeTableBody()
1339 TypeName.clear(); in ParseTypeTableBody()
1364 Res->setName(TypeName); in ParseTypeTableBody()
1367 Res = createIdentifiedStructType(Context, TypeName); in ParseTypeTableBody()
1368 TypeName.clear(); in ParseTypeTableBody()
1612 std::string TypeName; in ParseOldTypeSymbolTable() local
1640 if (ConvertToString(Record, 1, TypeName)) in ParseOldTypeSymbolTable()
[all …]