Home | History | Annotate | Download | only in layers

Lines Matching refs:it

31     device_table_map::const_iterator it = tableMap.find((void *)key);
32 assert(it != tableMap.end() && "Not able to find device dispatch entry");
33 return it->second;
38 instance_table_map::const_iterator it = tableInstanceMap.find((void *)key);
39 assert(it != tableInstanceMap.end() && "Not able to find instance dispatch entry");
40 return it->second;
44 device_table_map::const_iterator it = map.find((void *)key);
45 if (it != map.end()) {
46 delete it->second;
47 map.erase(it);
52 instance_table_map::const_iterator it = map.find((void *)key);
53 if (it != map.end()) {
54 delete it->second;
55 map.erase(it);
65 device_table_map::const_iterator it = map.find((void *)key);
66 assert(it != map.end() && "Not able to find device dispatch entry");
67 return it->second;
72 instance_table_map::const_iterator it = map.find((void *)key);
73 assert(it != map.end() && "Not able to find instance dispatch entry");
74 return it->second;
105 instance_table_map::const_iterator it = map.find((void *)key);
107 if (it == map.end()) {
111 return it->second;
130 device_table_map::const_iterator it = map.find((void *)key);
132 if (it == map.end()) {
136 return it->second;