Home | History | Annotate | Download | only in plugins

Lines Matching refs:details

119   CheckDetails details;
120 if (CheckType(arg_type, &details)) {
124 ReportCheckError(details,
143 CheckDetails details;
144 if (CheckTemplateArgument(arg, &details)) {
152 details,
183 CheckDetails* details) const {
186 details->exit_type = type;
192 details->typedefs.push_back(tdef);
210 bool CheckIPCVisitor::CheckType(QualType type, CheckDetails* details) const {
216 if (details->entry_type.isNull()) {
217 details->entry_type = type;
221 return CheckIntegerType(type, details);
227 if (!CheckTemplateArgument(arg, details)) {
239 if (!CheckTemplateArgument(args[i], details)) {
248 details->typedefs.push_back(tdef);
264 CheckDetails* details) const {
266 CheckType(arg.getAsType(), details);
269 void CheckIPCVisitor::ReportCheckError(const CheckDetails& details,
274 std::string entry_type = details.entry_type.getAsString();
275 std::string exit_type = details.exit_type.getAsString();
283 for (const TypedefType* tdef: details.typedefs) {