Lines Matching refs:itr
37 for (std::map<string, DeviceTree*>::iterator itr = subdevices_.begin(); in ~DeviceTree() local
38 itr != subdevices_.end(); in ~DeviceTree()
39 ++itr) { in ~DeviceTree()
40 delete itr->second; in ~DeviceTree()
43 for (std::list<ErrorInstance*>::iterator itr = errors_.begin(); in ~DeviceTree() local
44 itr != errors_.end(); in ~DeviceTree()
45 ++itr) { in ~DeviceTree()
46 delete (*itr); in ~DeviceTree()
64 std::map<string, DeviceTree*>::iterator itr = subdevices_.find(name); in UnlockedFindInSubTree() local
65 if (itr != subdevices_.end()) { in UnlockedFindInSubTree()
66 return itr->second; in UnlockedFindInSubTree()
69 for (std::map<string, DeviceTree*>::iterator itr = subdevices_.begin(); in UnlockedFindInSubTree() local
70 itr != subdevices_.end(); in UnlockedFindInSubTree()
71 ++itr) { in UnlockedFindInSubTree()
72 DeviceTree *result = itr->second->UnlockedFindInSubTree(name); in UnlockedFindInSubTree()
98 for (std::map<string, DeviceTree*>::iterator itr = subdevices_.begin(); in PrettyPrint() local
99 itr != subdevices_.end(); in PrettyPrint()
100 ++itr) { in PrettyPrint()
101 printf("%s%s\n", spacer.c_str(), itr->first.c_str()); in PrettyPrint()
102 itr->second->PrettyPrint(spacer+spacer); in PrettyPrint()
123 for (std::list<ErrorInstance*>::iterator itr = errors_.begin(); in KnownBad() local
124 itr != errors_.end(); in KnownBad()
125 ++itr) { in KnownBad()
126 if ((*itr)->severity_ == SAT_ERROR_FATAL) { in KnownBad()