Searched refs:RSExportable (Results 1 – 11 of 11) sorted by relevance
/frameworks/compile/slang/ |
D | slang_rs_exportable.h | 24 class RSExportable { 40 RSExportable(RSContext *Context, RSExportable::Kind K) in RSExportable() function 56 virtual bool equals(const RSExportable *E) const; 60 virtual ~RSExportable() { } in ~RSExportable()
|
D | slang_rs_exportable.cpp | 21 bool RSExportable::keep() { in keep() 29 bool RSExportable::equals(const RSExportable *E) const { in equals()
|
D | slang_rs_export_func.h | 44 class RSExportFunc : public RSExportable { 55 : RSExportable(Context, RSExportable::EX_FUNC), in RSExportFunc()
|
D | slang_rs_export_type.h | 195 class RSExportType : public RSExportable { 309 virtual bool equals(const RSExportable *E) const; 381 virtual bool equals(const RSExportable *E) const; 424 virtual bool equals(const RSExportable *E) const; 465 virtual bool equals(const RSExportable *E) const; 501 virtual bool equals(const RSExportable *E) const; 534 virtual bool equals(const RSExportable *E) const; 621 virtual bool equals(const RSExportable *E) const;
|
D | slang_rs_export_foreach.h | 39 class RSExportForEach : public RSExportable { 72 : RSExportable(Context, RSExportable::EX_FOREACH), in RSExportForEach()
|
D | slang_rs_export_reduce.h | 34 class RSExportReduce : public RSExportable { 88 : RSExportable(Context, RSExportable::EX_REDUCE), in RSExportReduce()
|
D | slang_rs_export_var.cpp | 32 : RSExportable(Context, RSExportable::EX_VAR), in RSExportVar()
|
D | slang_rs_export_type.cpp | 944 : RSExportable(Context, RSExportable::EX_TYPE), in RSExportType() 961 if (!RSExportable::keep()) in keep() 968 bool RSExportType::equals(const RSExportable *E) const { in equals() 969 CHECK_PARENT_EQUALITY(RSExportable, E); in equals() 1231 bool RSExportPrimitiveType::equals(const RSExportable *E) const { in equals() 1282 bool RSExportPointerType::equals(const RSExportable *E) const { in equals() 1341 bool RSExportVectorType::equals(const RSExportable *E) const { in equals() 1426 bool RSExportMatrixType::equals(const RSExportable *E) const { in equals() 1466 bool RSExportConstantArrayType::equals(const RSExportable *E) const { in equals() 1574 bool RSExportRecordType::equals(const RSExportable *E) const { in equals()
|
D | slang_rs_context.h | 54 class RSExportable; variable 67 typedef std::list<RSExportable*> ExportableList; 202 inline void newExportable(RSExportable *E) { in newExportable()
|
D | slang_rs_export_var.h | 34 class RSExportVar : public RSExportable {
|
D | slang.cpp | 482 RSExportable *RSE = *I; in checkODR() 483 if (RSE->getKind() != RSExportable::EX_TYPE) in checkODR()
|