Lines Matching refs:decl
255 Constant* decl = new Constant;
256 decl->name = constant.GetName();
257 decl->value = constant.GetValue();
259 interface->elements.push_back(decl);
284 Method* decl = new Method;
285 decl->comment = method.GetComments();
286 decl->modifiers = PUBLIC;
287 decl->returnType = method.GetType().GetLanguageType<Type>();
288 decl->returnTypeDimension = method.GetType().IsArray() ? 1 : 0;
289 decl->name = method.GetName();
292 decl->parameters.push_back(
297 decl->exceptions.push_back(types->RemoteExceptionType());
299 interface->elements.push_back(decl);
350 new Variable(decl->returnType, "_result", decl->returnTypeDimension);
361 generate_write_to_parcel(decl->returnType, c->statements, _result,