Searched refs:RSExportable (Results 1 – 11 of 11) sorted by relevance
/frameworks/compile/slang/ |
D | slang_rs_exportable.h | 25 class RSExportable { 43 RSExportable(RSContext *Context, RSExportable::Kind K, clang::SourceLocation Loc) in RSExportable() function 64 virtual ~RSExportable() { } in ~RSExportable()
|
D | slang_rs_export_func.h | 40 class RSExportFunc : public RSExportable { 51 : RSExportable(Context, RSExportable::EX_FUNC, FD->getLocation()), in RSExportFunc()
|
D | slang_rs_export_foreach.h | 38 class RSExportForEach : public RSExportable { 76 : RSExportable(Context, RSExportable::EX_FOREACH, Loc), in RSExportForEach()
|
D | slang_rs_export_reduce.h | 34 class RSExportReduce : public RSExportable { 88 : RSExportable(Context, RSExportable::EX_REDUCE, Location), in RSExportReduce()
|
D | slang_rs_export_var.cpp | 32 : RSExportable(Context, RSExportable::EX_VAR, VD->getLocation()), in RSExportVar()
|
D | slang_rs_exportable.cpp | 21 bool RSExportable::keep() { in keep()
|
D | slang_rs_export_var.h | 34 class RSExportVar : public RSExportable {
|
D | slang_rs_context.h | 54 class RSExportable; variable 67 typedef std::list<RSExportable*> ExportableList; 208 inline void newExportable(RSExportable *E) { in newExportable()
|
D | slang.cpp | 477 RSExportable *RSE = *I; in checkODR() 478 if (RSE->getKind() != RSExportable::EX_TYPE) in checkODR()
|
D | slang_rs_export_type.cpp | 948 : RSExportable(Context, RSExportable::EX_TYPE, Loc), in RSExportType() 965 if (!RSExportable::keep()) in keep()
|
D | slang_rs_export_type.h | 196 class RSExportType : public RSExportable {
|