Home | History | Annotate | Download | only in aidl

Lines Matching refs:Variable

67 Field::Field(int m, Variable* v) : ClassElement(), modifiers(m), variable(v) {}
74 to->Write("%s %s", this->variable->type->JavaType().c_str(),
75 this->variable->name.c_str());
94 Variable::Variable(const Type* t, const string& n)
97 Variable::Variable(const Type* t, const string& n, int d)
100 void Variable::WriteDeclaration(CodeWriter* to) const {
109 void Variable::Write(CodeWriter* to) const { to->Write("%s", name.c_str()); }
150 Assignment::Assignment(Variable* l, Expression* r)
153 Assignment::Assignment(Variable* l, Expression* r, const Type* c)
276 VariableDeclaration::VariableDeclaration(Variable* l, Expression* r,
280 VariableDeclaration::VariableDeclaration(Variable* l) : lvalue(l) {}
320 CatchStatement::CatchStatement(Variable* e)