Home
last modified time | relevance | path

Searched refs:KeyValue (Results 1 – 6 of 6) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
H A DSymbolRewriter.cpp339 StringRef KeyValue; in parseRewriteFunctionDescriptor() local
353 KeyValue = Key->getValue(KeyStorage); in parseRewriteFunctionDescriptor()
354 if (KeyValue.equals("source")) { in parseRewriteFunctionDescriptor()
362 } else if (KeyValue.equals("target")) { in parseRewriteFunctionDescriptor()
364 } else if (KeyValue.equals("transform")) { in parseRewriteFunctionDescriptor()
366 } else if (KeyValue.equals("naked")) { in parseRewriteFunctionDescriptor()
408 StringRef KeyValue; in parseRewriteGlobalVariableDescriptor() local
422 KeyValue = Key->getValue(KeyStorage); in parseRewriteGlobalVariableDescriptor()
423 if (KeyValue.equals("source")) { in parseRewriteGlobalVariableDescriptor()
431 } else if (KeyValue.equals("target")) { in parseRewriteGlobalVariableDescriptor()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
H A DStringMap.h258 for (const auto &KeyValue : *this) {
259 auto FindInRHS = RHS.find(KeyValue.getKey());
264 if (!(KeyValue.getValue() == FindInRHS->getValue()))
276 bool insert(MapEntryTy *KeyValue) { in insert() argument
277 unsigned BucketNo = LookupBucketFor(KeyValue->getKey()); in insert()
284 Bucket = KeyValue; in insert()
353 void remove(MapEntryTy *KeyValue) { RemoveKey(KeyValue); } in remove() argument
/netbsd-src/external/apache2/llvm/dist/llvm/utils/TableGen/
H A DCodeGenMapTable.cpp232 std::vector<Init*> KeyValue; in buildRowInstrMap() local
241 KeyValue.push_back(CurInstrVal); in buildRowInstrMap()
250 RowInstrMap[KeyValue].push_back(CurInstr); in buildRowInstrMap()
304 std::vector<Init*> KeyValue; in getInstrForColumn() local
309 KeyValue.push_back(KeyInstrVal); in getInstrForColumn()
316 const std::vector<Record*> &RelatedInstrVec = RowInstrMap[KeyValue]; in getInstrForColumn()
337 for (Init *Value : KeyValue) { in getInstrForColumn()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Tooling/
H A DJSONCompilationDatabase.cpp365 StringRef KeyValue = KeyString->getValue(KeyStorage); in parse() local
373 if (KeyValue == "arguments") { in parse()
392 if (KeyValue == "directory") { in parse()
394 } else if (KeyValue == "command") { in parse()
397 } else if (KeyValue == "file") { in parse()
399 } else if (KeyValue == "output") { in parse()
/netbsd-src/external/gpl3/gcc/dist/gcc/d/dmd/root/
H A Daav.d34 alias KeyValue = KeyValueTemplate!(Key, Value); variable
40 KeyValue keyValue;
/netbsd-src/external/apache2/llvm/dist/clang/lib/Frontend/
H A DCompilerInvocation.cpp4564 for (const auto &KeyValue : getCodeGenOpts().DebugPrefixMap) in getModuleHash() local
4565 code = hash_combine(code, KeyValue.first, KeyValue.second); in getModuleHash()