Lines Matching refs:get
50 for f in data.get('family', []):
52 for s in f.get('series', []):
55 [c['name'] for c in soc.get('cpuclusters', [])],
57 for soc in s.get('socs', [])]
64 [c['name'] for c in soc.get('cpuclusters', [])],
66 for soc in f.get('socs', [])]
70 for s in data.get('series', []):
73 [c['name'] for c in soc.get('cpuclusters', [])],
75 for soc in s.get('socs', [])]
80 for soc in data.get('socs', []):
85 if soc.get('name') is not None:
86 self._socs.append(Soc(soc['name'], [c['name'] for c in soc.get('cpuclusters', [])],
88 elif soc.get('extend') is not None:
90 [c['name'] for c in soc.get('cpuclusters', [])],
224 lambda arch: arch.get('name') == args.arch, archs['archs']))}
294 type=arch.get('type'),
295 name=arch.get('name'),
296 dir=arch.get('path'),
297 hwm=arch.get('hwm'),