Home | History | Annotate | Download | only in aidl

Lines Matching refs:Variable

59      variable(NULL)
63 Field::Field(int m, Variable* v)
66 variable(v)
77 types->insert(this->variable->type);
87 fprintf(to, "%s %s", this->variable->type->QualifiedName().c_str(),
88 this->variable->name.c_str());
129 Variable::Variable()
136 Variable::Variable(Type* t, const string& n)
143 Variable::Variable(Type* t, const string& n, int d)
150 Variable::~Variable()
155 Variable::GatherTypes(set<Type*>* types) const
161 Variable::WriteDeclaration(FILE* to)
172 Variable::Write(FILE* to)
259 Assignment::Assignment(Variable* l, Expression* r)
266 Assignment::Assignment(Variable* l, Expression* r, Type* c)
498 VariableDeclaration::VariableDeclaration(Variable* l, Expression* r, Type* c)
505 VariableDeclaration::VariableDeclaration(Variable* l)
589 CatchStatement::CatchStatement(Variable* e)