Home | History | Annotate | Download | only in ceres

Lines Matching defs:it

43 // Crash if it does not.
49 // * It has a side-effect of inserting missing keys
50 // * It is not thread-safe (even when it is not inserting, it can still
52 // * It invalidates iterators (when it chooses to resize)
53 // * It default constructs a value object even if it doesn't need to
55 // This version assumes the key is printable, and includes it in the fatal log
61 typename Collection::const_iterator it = collection.find(key);
62 CHECK(it != collection.end()) << "Map key not found: " << key;
63 return it->second;
74 typename Collection::const_iterator it = collection.find(key);
75 if (it == collection.end()) {
78 return it->second;
102 typename Collection::iterator it = collection.find(key);
103 if (it == collection.end()) {
106 return &it->second;
113 typename Collection::const_iterator it = collection.find(key);
114 return it != collection.end();