Home | History | Annotate | Download | only in aidl

Lines Matching defs:ctor

40     // ctor
41 Method* ctor = new Method;
42 ctor->modifiers = PUBLIC;
43 ctor->comment = "/** Construct the stub at attach it to the "
45 ctor->name = "Stub";
46 ctor->statements = new StatementBlock;
49 ctor->statements->Add(attach);
50 this->elements.push_back(ctor);
175 Method* ctor = new Method;
176 ctor->name = "Proxy";
177 ctor->statements = new StatementBlock;
178 ctor->parameters.push_back(remote);
179 ctor->statements->Add(new Assignment(mRemote, remote));
180 this->elements.push_back(ctor);