Lines Matching refs:KeywordValueMap

148     KeywordValueMapType KeywordValueMap({std::make_pair(RSExportReduce::KeyReduce, ""),  in HandlePragma()  local
158 KeywordValueMap.insert(std::make_pair(RSExportReduce::KeyHalter, "")); in HandlePragma()
161 if (!ProcessKeywordAndValue(PP, PragmaToken, KeywordValueMap)) in HandlePragma()
176 if (KeywordValueMap[RSExportReduce::KeyAccumulator].empty()) { in HandlePragma()
191 if ((*I)->getNameReduce() == KeywordValueMap[RSExportReduce::KeyReduce]) { in HandlePragma()
196 << KeywordValueMap[RSExportReduce::KeyReduce] in HandlePragma()
214 MarkUsed(PP, KeywordValueMap[RSExportReduce::KeyInitializer]); in HandlePragma()
215 MarkUsed(PP, KeywordValueMap[RSExportReduce::KeyAccumulator]); in HandlePragma()
216 MarkUsed(PP, KeywordValueMap[RSExportReduce::KeyCombiner]); in HandlePragma()
217 MarkUsed(PP, KeywordValueMap[RSExportReduce::KeyOutConverter]); in HandlePragma()
218 MarkUsed(PP, KeywordValueMap[RSExportReduce::KeyHalter]); in HandlePragma()
221 KeywordValueMap[RSExportReduce::KeyReduce], in HandlePragma()
222KeywordValueMap[RSExportReduce::KeyInitializer], in HandlePragma()
223KeywordValueMap[RSExportReduce::KeyAccumulator], in HandlePragma()
224 KeywordValueMap[RSExportReduce::KeyCombiner], in HandlePragma()
225KeywordValueMap[RSExportReduce::KeyOutConverter], in HandlePragma()
226 KeywordValueMap[RSExportReduce::KeyHalter])); in HandlePragma()
252 static std::string ListKeywords(const KeywordValueMapType &KeywordValueMap) { in ListKeywords() argument
255 for (auto const &entry : KeywordValueMap) { in ListKeywords()
274 KeywordValueMapType &KeywordValueMap) { in ProcessKeywordAndValue() argument
278 ((Entry = KeywordValueMap.find( in ProcessKeywordAndValue()
280 KeywordValueMap.end())) { in ProcessKeywordAndValue()
289 << ListKeywords(KeywordValueMap); in ProcessKeywordAndValue()