HomeSort by: relevance | last modified time | path
    Searched refs:KeyValue (Results 1 - 6 of 6) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
SymbolRewriter.cpp 339 StringRef KeyValue;
353 KeyValue = Key->getValue(KeyStorage);
354 if (KeyValue.equals("source")) {
362 } else if (KeyValue.equals("target")) {
364 } else if (KeyValue.equals("transform")) {
366 } else if (KeyValue.equals("naked")) {
408 StringRef KeyValue;
422 KeyValue = Key->getValue(KeyStorage);
423 if (KeyValue.equals("source")) {
431 } else if (KeyValue.equals("target"))
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
StringMap.h 258 for (const auto &KeyValue : *this) {
259 auto FindInRHS = RHS.find(KeyValue.getKey());
264 if (!(KeyValue.getValue() == FindInRHS->getValue()))
276 bool insert(MapEntryTy *KeyValue) {
277 unsigned BucketNo = LookupBucketFor(KeyValue->getKey());
284 Bucket = KeyValue;
353 void remove(MapEntryTy *KeyValue) { RemoveKey(KeyValue); }
  /src/external/apache2/llvm/dist/llvm/utils/TableGen/
CodeGenMapTable.cpp 232 std::vector<Init*> KeyValue;
241 KeyValue.push_back(CurInstrVal);
246 // their KeyValue in RowInstrMap.
250 RowInstrMap[KeyValue].push_back(CurInstr);
304 std::vector<Init*> KeyValue;
306 // Construct KeyValue using KeyInstr's values for RowFields.
309 KeyValue.push_back(KeyInstrVal);
312 // Get all the instructions that share the same KeyValue as the KeyInstr
316 const std::vector<Record*> &RelatedInstrVec = RowInstrMap[KeyValue];
337 for (Init *Value : KeyValue) {
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Tooling/
JSONCompilationDatabase.cpp 365 StringRef KeyValue = KeyString->getValue(KeyStorage);
373 if (KeyValue == "arguments") {
392 if (KeyValue == "directory") {
394 } else if (KeyValue == "command") {
397 } else if (KeyValue == "file") {
399 } else if (KeyValue == "output") {
  /src/external/gpl3/gcc.old/dist/gcc/d/dmd/root/
aav.d 34 alias KeyValue = KeyValueTemplate!(Key, Value);
40 KeyValue keyValue;
41 alias keyValue this;
168 return cast(KeyValueTemplate!(K,V))current.keyValue;
199 foreach(keyValue; aa.asRange)
213 foreach (keyValue; aa.asRange)
215 assert(keyValue.key <= key);
216 assert(keyValue.key == keyValue.value)
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Frontend/
CompilerInvocation.cpp 4564 for (const auto &KeyValue : getCodeGenOpts().DebugPrefixMap)
4565 code = hash_combine(code, KeyValue.first, KeyValue.second);

Completed in 22 milliseconds