Lines Matching defs:fdi
1152 FuncDeclInfo fdi;
1175 fdi.m_sym_ctx = sym_ctx;
1176 fdi.m_name = function->GetName();
1177 fdi.m_copied_type = copied_func_type;
1178 fdi.m_decl_lvl = LLDB_INVALID_DECL_LEVEL;
1179 if (fdi.m_copied_type && func_decl_context) {
1186 fdi.m_decl_lvl = ast->CountDeclLevels(frame_decl_ctx, func_decl_ctx,
1187 &fdi.m_name, &fdi.m_copied_type);
1189 decl_infos.emplace_back(fdi);
1195 for (const FuncDeclInfo &fdi : decl_infos) {
1196 const CompilerType t = fdi.m_copied_type;
1199 if (q->second->m_decl_lvl > fdi.m_decl_lvl)
1202 else if (q->second->m_decl_lvl < fdi.m_decl_lvl)
1206 matches.insert(std::make_pair(t, &fdi));