Lines Matching refs:pair
74 std::vector<std::pair<std::string, const FileInfo*>> Request::GetFiles() const { in GetFiles()
75 std::vector<std::pair<std::string, const FileInfo*>> data; in GetFiles()
77 for (const auto& pair : file_info_) { in GetFiles() local
78 data.emplace_back(pair.first, pair.second.get()); in GetFiles()
85 auto pair = get_data_.equal_range(name); in GetFormField() local
86 while (pair.first != pair.second) { in GetFormField()
87 data.push_back(pair.first->second); in GetFormField()
88 ++pair.first; in GetFormField()
90 pair = post_data_.equal_range(name); in GetFormField()
91 while (pair.first != pair.second) { in GetFormField()
92 data.push_back(pair.first->second); in GetFormField()
93 ++pair.first; in GetFormField()
101 auto pair = post_data_.equal_range(name); in GetFormFieldPost() local
102 while (pair.first != pair.second) { in GetFormFieldPost()
103 data.push_back(pair.first->second); in GetFormFieldPost()
104 ++pair.first; in GetFormFieldPost()
112 auto pair = get_data_.equal_range(name); in GetFormFieldGet() local
113 while (pair.first != pair.second) { in GetFormFieldGet()
114 data.push_back(pair.first->second); in GetFormFieldGet()
115 ++pair.first; in GetFormFieldGet()
123 auto pair = file_info_.equal_range(name); in GetFileInfo() local
124 while (pair.first != pair.second) { in GetFileInfo()
125 data.push_back(pair.first->second.get()); in GetFileInfo()
126 ++pair.first; in GetFileInfo()