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

  /external/chromium_org/third_party/libaddressinput/src/cpp/src/
region_data.cc 40 RegionData* sub_region = new RegionData(key, name, this); local
41 sub_regions_.push_back(sub_region);
42 return sub_region;
  /external/chromium_org/third_party/libaddressinput/chromium/cpp/src/
ruleset.h 68 // Adds the |ruleset| for |sub_region| and sets this to be its parent. A
69 // |sub_region| should be added at most once. The |ruleset| should not be
75 void AddSubRegionRuleset(const std::string& sub_region,
84 // Returns the set of rules for |sub_region|. The result is NULL if there's no
85 // such |sub_region|. The caller does not own the result.
86 Ruleset* GetSubRegionRuleset(const std::string& sub_region) const;
ruleset.cc 80 void Ruleset::AddSubRegionRuleset(const std::string& sub_region,
82 assert(sub_regions_.find(sub_region) == sub_regions_.end());
87 sub_regions_[sub_region] = ruleset.release();
97 Ruleset* Ruleset::GetSubRegionRuleset(const std::string& sub_region) const {
99 sub_regions_.find(sub_region);

Completed in 195 milliseconds