Home | History | Annotate | Download | only in aidl

Lines Matching refs:decl

170     // The call to decl (from above)
813 Method* decl = new Method;
814 decl->comment = gather_comments(method->comments_token->extra);
815 decl->modifiers = PUBLIC | ABSTRACT;
816 decl->returnType = NAMES.Search(method->type.type.data);
817 decl->returnTypeDimension = method->type.dimension;
818 decl->name = method->name.data;
821 decl->parameters.push_back(new Variable(
828 decl->parameters.push_back(new Variable(RPC_CONTEXT_TYPE, "context", 0));
830 serviceBaseClass->elements.push_back(decl);