Home
last modified time | relevance | path

Searched refs:RSExportable (Results 1 – 11 of 11) sorted by relevance

/frameworks/compile/slang/
Dslang_rs_exportable.h25 class RSExportable {
43 RSExportable(RSContext *Context, RSExportable::Kind K, clang::SourceLocation Loc) in RSExportable() function
64 virtual ~RSExportable() { } in ~RSExportable()
Dslang_rs_export_func.h40 class RSExportFunc : public RSExportable {
51 : RSExportable(Context, RSExportable::EX_FUNC, FD->getLocation()), in RSExportFunc()
Dslang_rs_export_foreach.h38 class RSExportForEach : public RSExportable {
76 : RSExportable(Context, RSExportable::EX_FOREACH, Loc), in RSExportForEach()
Dslang_rs_export_reduce.h34 class RSExportReduce : public RSExportable {
88 : RSExportable(Context, RSExportable::EX_REDUCE, Location), in RSExportReduce()
Dslang_rs_export_var.cpp32 : RSExportable(Context, RSExportable::EX_VAR, VD->getLocation()), in RSExportVar()
Dslang_rs_exportable.cpp21 bool RSExportable::keep() { in keep()
Dslang_rs_export_var.h34 class RSExportVar : public RSExportable {
Dslang_rs_context.h54 class RSExportable; variable
67 typedef std::list<RSExportable*> ExportableList;
208 inline void newExportable(RSExportable *E) { in newExportable()
Dslang.cpp477 RSExportable *RSE = *I; in checkODR()
478 if (RSE->getKind() != RSExportable::EX_TYPE) in checkODR()
Dslang_rs_export_type.cpp948 : RSExportable(Context, RSExportable::EX_TYPE, Loc), in RSExportType()
965 if (!RSExportable::keep()) in keep()
Dslang_rs_export_type.h196 class RSExportType : public RSExportable {