Lines Matching defs:Db
4203 struct Db { struct
4204 typedef std::vector<string_pair<std::string>> sub_type;
4205 typedef std::vector<sub_type> template_param_type;
4206 sub_type names;
4207 template_param_type subs;
4208 std::vector<template_param_type> template_param;
4209 unsigned cv = 0;
4210 unsigned ref = 0;
4211 unsigned encoding_depth = 0;
4212 bool parsed_ctor_dtor_cv = false;
4213 bool tag_templates = true;
4214 bool fix_forward_references = false;
4215 bool try_to_parse_template_args = true;
4217 Db() : subs(0, names), template_param(0, subs) {} in Db() function