HomeSort by relevance Sort by last modified time
    Searched refs:by_symbol_ (Results 1 - 4 of 4) sorted by null

  /external/chromium_org/third_party/protobuf/src/google/protobuf/
descriptor_database.cc 102 if (iter == by_symbol_.end()) {
104 by_symbol_.insert(typename map<string, Value>::value_type(name, value));
121 if (iter != by_symbol_.end() && IsSubSymbol(name, iter->first)) {
131 by_symbol_.insert(iter, typename map<string, Value>::value_type(name, value));
155 // the by_symbol_ table.
184 return (iter != by_symbol_.end() && IsSubSymbol(iter->first, name)) ?
221 typename map<string, Value>::iterator iter = by_symbol_.upper_bound(name);
222 if (iter != by_symbol_.begin()) --iter;
descriptor_database.h 181 map<string, Value> by_symbol_; member in class:google::protobuf::SimpleDescriptorDatabase::DescriptorIndex
184 // Invariant: The by_symbol_ map does not contain any symbols which are
235 // Find the last entry in the by_symbol_ map whose key is less than or
  /external/protobuf/src/google/protobuf/
descriptor_database.cc 102 if (iter == by_symbol_.end()) {
104 by_symbol_.insert(make_pair(name, value));
121 if (iter != by_symbol_.end() && IsSubSymbol(name, iter->first)) {
131 by_symbol_.insert(iter, make_pair(name, value));
155 // the by_symbol_ table.
184 return (iter != by_symbol_.end() && IsSubSymbol(iter->first, name)) ?
221 typename map<string, Value>::iterator iter = by_symbol_.upper_bound(name);
222 if (iter != by_symbol_.begin()) --iter;
descriptor_database.h 180 map<string, Value> by_symbol_; member in class:google::protobuf::SimpleDescriptorDatabase::DescriptorIndex
183 // Invariant: The by_symbol_ map does not contain any symbols which are
234 // Find the last entry in the by_symbol_ map whose key is less than or

Completed in 36 milliseconds