Home
last modified time | relevance | path

Searched refs:FOOTPRINT_MAP (Results 1 – 6 of 6) sorted by relevance

/dports/cad/kicad-devel/kicad-a17a58203b33e08b966075833b177dad5740c236/pcbnew/plugins/geda/
H A Dgpcb_plugin.cpp129 typedef boost::ptr_map< std::string, GPCB_FPL_CACHE_ITEM > FOOTPRINT_MAP; typedef
139 FOOTPRINT_MAP& GetFootprints() { return m_footprints; } in GetFootprints()
198 FOOTPRINT_MAP m_footprints; ///< Map of footprint file name to FOOTPRINT*.
278 FOOTPRINT_MAP::const_iterator it = m_footprints.find( footprintName ); in Remove()
913 const FOOTPRINT_MAP& mods = m_cache->GetFootprints(); in getFootprint()
915 FOOTPRINT_MAP::const_iterator it = mods.find( TO_UTF8( aFootprintName ) ); in getFootprint()
/dports/cad/kicad-devel/kicad-a17a58203b33e08b966075833b177dad5740c236/pcbnew/plugins/eagle/
H A Deagle_plugin.h43 typedef std::map<wxString, FOOTPRINT*> FOOTPRINT_MAP; typedef
302 FOOTPRINT_MAP m_templates; ///< is part of a FOOTPRINT factory that operates using copy
H A Deagle_plugin.cpp1079 std::pair<FOOTPRINT_MAP::iterator, bool> r = m_templates.insert( {key, m} ); in loadLibrary()
1160 FOOTPRINT_MAP::const_iterator it = m_templates.find( pkg_key ); in loadElements()
3111 for( FOOTPRINT_MAP::const_iterator it = m_templates.begin(); it != m_templates.end(); ++it ) in FootprintEnumerate()
3125 FOOTPRINT_MAP::const_iterator it = m_templates.find( aFootprintName ); in FootprintLoad()
/dports/cad/kicad-devel/kicad-a17a58203b33e08b966075833b177dad5740c236/pcbnew/plugins/kicad/
H A Dpcb_plugin.cpp88 typedef boost::ptr_map< wxString, FP_CACHE_ITEM > FOOTPRINT_MAP; typedef
96 FOOTPRINT_MAP m_footprints; // Map of footprint filename to FOOTPRINT*.
112 FOOTPRINT_MAP& GetFootprints() { return m_footprints; } in GetFootprints()
182 for( FOOTPRINT_MAP::iterator it = m_footprints.begin(); it != m_footprints.end(); ++it ) in Save()
299 FOOTPRINT_MAP::const_iterator it = m_footprints.find( aFootprintName ); in Remove()
2424 FOOTPRINT_MAP& footprints = m_cache->GetFootprints(); in getFootprint()
2425 FOOTPRINT_MAP::const_iterator it = footprints.find( aFootprintName ); in getFootprint()
2518 FOOTPRINT_MAP& footprints = m_cache->GetFootprints(); in FootprintSave()
2541 FOOTPRINT_MAP::const_iterator it = footprints.find( footprintName ); in FootprintSave()
/dports/cad/kicad-devel/kicad-a17a58203b33e08b966075833b177dad5740c236/pcbnew/plugins/legacy/
H A Dlegacy_plugin.cpp2927 typedef boost::ptr_map< std::string, FOOTPRINT > FOOTPRINT_MAP; typedef
2955 FOOTPRINT_MAP m_footprints; // map or tuple of footprint_name vs. FOOTPRINT*
3108 FOOTPRINT_MAP::const_iterator it = m_footprints.find( footprintName ); in LoadModules()
3210 const FOOTPRINT_MAP& footprints = m_cache->m_footprints; in FootprintLoad()
3211 FOOTPRINT_MAP::const_iterator it = footprints.find( TO_UTF8( aFootprintName ) ); in FootprintLoad()
/dports/cad/kicad-devel/kicad-a17a58203b33e08b966075833b177dad5740c236/common/plugins/eagle/
H A Deagle_parser.h50 typedef std::map<wxString, FOOTPRINT*> FOOTPRINT_MAP; typedef