Home | History | Annotate | Download | only in aidl

Lines Matching defs:ctor

77     // ctor
78 Method* ctor = new Method;
79 ctor->modifiers = PUBLIC;
80 ctor->comment = "/** Construct the stub at attach it to the "
82 ctor->name = "Stub";
83 ctor->statements = new StatementBlock;
86 ctor->statements->Add(attach);
87 this->elements.push_back(ctor);
212 Method* ctor = new Method;
213 ctor->name = "Proxy";
214 ctor->statements = new StatementBlock;
215 ctor->parameters.push_back(remote);
216 ctor->statements->Add(new Assignment(mRemote, remote));
217 this->elements.push_back(ctor);