Home | History | Annotate | Download | only in aidl

Lines Matching refs:decl

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