OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:RSExportable
(Results
1 - 10
of
10
) sorted by null
/frameworks/compile/slang/
slang_rs_exportable.cpp
21
bool
RSExportable
::keep() {
29
bool
RSExportable
::equals(const
RSExportable
*E) const {
slang_rs_exportable.h
24
class
RSExportable
{
39
RSExportable
(RSContext *Context,
RSExportable
::Kind K)
49
// won't free this
RSExportable
object in its destructor. The deallcation
55
virtual bool equals(const
RSExportable
*E) const;
59
virtual ~
RSExportable
() { }
slang_rs_export_func.h
44
class RSExportFunc : public
RSExportable
{
55
:
RSExportable
(Context,
RSExportable
::EX_FUNC),
slang_rs_export_var.h
34
class RSExportVar : public
RSExportable
{
slang_rs_export_var.cpp
32
:
RSExportable
(Context,
RSExportable
::EX_VAR),
slang_rs_export_foreach.h
39
class RSExportForEach : public
RSExportable
{
71
:
RSExportable
(Context,
RSExportable
::EX_FOREACH),
slang_rs_export_type.h
170
class RSExportType : public
RSExportable
{
279
virtual bool equals(const
RSExportable
*E) const;
348
virtual bool equals(const
RSExportable
*E) const;
390
virtual bool equals(const
RSExportable
*E) const;
431
virtual bool equals(const
RSExportable
*E) const;
467
virtual bool equals(const
RSExportable
*E) const;
500
virtual bool equals(const
RSExportable
*E) const;
587
virtual bool equals(const
RSExportable
*E) const;
slang_rs_context.h
47
class
RSExportable
;
59
typedef std::list<
RSExportable
*> ExportableList;
160
inline void newExportable(
RSExportable
*E) {
slang_rs_export_type.cpp
874
:
RSExportable
(Context,
RSExportable
::EX_TYPE),
891
if (!
RSExportable
::keep())
898
bool RSExportType::equals(const
RSExportable
*E) const {
899
CHECK_PARENT_EQUALITY(
RSExportable
, E);
[
all
...]
slang_rs.cpp
101
RSExportable
*RSE = *I;
102
if (RSE->getKind() !=
RSExportable
::EX_TYPE)
Completed in 93 milliseconds