Home | History | Annotate | Download | only in gtl

Lines Matching refs:it

32 // Returns a pointer to the const value associated with the given key if it
38 typename Collection::const_iterator it = collection.find(key);
39 if (it == collection.end()) {
42 return &it->second;
50 typename Collection::iterator it = collection.find(key);
51 if (it == collection.end()) {
54 return &it->second;
67 typename Collection::const_iterator it = collection.find(key);
68 if (it == collection.end()) {
71 return it->second;
74 // Returns a const reference to the value associated with the given key if it
82 // or store it in a string (not string&).
88 typename Collection::const_iterator it = collection.find(key);
89 if (it == collection.end()) {
92 return it->second;
140 // pair if it's not already present. Returns a reference to the value associated