Home | History | Annotate | Download | only in runtime

Lines Matching refs:ExecutableBase

44     class ExecutableBase : public RefCounted<ExecutableBase> {
52 ExecutableBase(int numParameters)
57 virtual ~ExecutableBase() {}
83 class NativeExecutable : public ExecutableBase {
86 : ExecutableBase(NUM_PARAMETERS_IS_HOST)
95 class VPtrHackExecutable : public ExecutableBase {
98 : ExecutableBase(NUM_PARAMETERS_IS_HOST)
105 class ScriptExecutable : public ExecutableBase {
108 : ExecutableBase(NUM_PARAMETERS_NOT_COMPILED)
121 : ExecutableBase(NUM_PARAMETERS_NOT_COMPILED)