Searched refs:Keys (Results 1 - 11 of 11) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Tooling/
H A DReplacementsYaml.h59 Keys(Io, R);
60 Io.mapRequired("FilePath", Keys->FilePath);
61 Io.mapRequired("Offset", Keys->Offset);
62 Io.mapRequired("Length", Keys->Length);
63 Io.mapRequired("ReplacementText", Keys->ReplacementText);
H A DDiagnosticsYaml.h77 MappingNormalization<NormalizedDiagnostic, clang::tooling::Diagnostic> Keys(
79 Io.mapRequired("DiagnosticName", Keys->DiagnosticName);
80 Io.mapRequired("DiagnosticMessage", Keys->Message);
81 Io.mapOptional("Notes", Keys->Notes);
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DDebugCheckers.cpp273 SmallVector<const Table::MapEntryTy *, 32> Keys; local
276 Keys.push_back(&*I);
277 llvm::array_pod_sort(Keys.begin(), Keys.end(), compareEntry);
280 for (unsigned I = 0, E = Keys.size(); I != E; ++I)
281 llvm::errs() << Keys[I]->getKey() << " = "
282 << (Keys[I]->second.empty() ? "\"\"" : Keys[I]->second)
285 llvm::errs() << "[stats]\n" << "num-entries = " << Keys.size() << '\n';
/freebsd-11-stable/contrib/llvm-project/llvm/lib/TextAPI/MachO/
H A DTextStub.cpp1022 MappingNormalization<NormalizedTBD, const InterfaceFile *> Keys(IO, File);
1023 IO.mapRequired("archs", Keys->Architectures);
1025 IO.mapOptional("uuids", Keys->UUIDs);
1026 IO.mapRequired("platform", Keys->Platforms);
1028 IO.mapOptional("flags", Keys->Flags, TBDFlags::None);
1029 IO.mapRequired("install-name", Keys->InstallName);
1030 IO.mapOptional("current-version", Keys->CurrentVersion,
1032 IO.mapOptional("compatibility-version", Keys->CompatibilityVersion,
1035 IO.mapOptional("swift-version", Keys->SwiftABIVersion, SwiftVersion(0));
1037 IO.mapOptional("swift-abi-version", Keys
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/Refactoring/
H A DAtomicChange.cpp70 Keys(Io, Doc);
71 Io.mapRequired("Key", Keys->Key);
72 Io.mapRequired("FilePath", Keys->FilePath);
73 Io.mapRequired("Error", Keys->Error);
74 Io.mapRequired("InsertedHeaders", Keys->InsertedHeaders);
75 Io.mapRequired("RemovedHeaders", Keys->RemovedHeaders);
76 Io.mapRequired("Replacements", Keys->Replaces);
/freebsd-11-stable/contrib/llvm-project/clang/lib/Edit/
H A DRewriteObjCFoundationAPI.cpp569 SmallVector<const Expr *, 8> Keys;
570 if (!getNSArrayObjects(Msg->getArg(1), NS, Keys))
573 if (Vals.size() != Keys.size())
583 objectifyExpr(Keys[i], commit);
586 SourceRange KeyRange = Keys[i]->getSourceRange();
593 SourceRange ArgRange(Keys.front()->getBeginLoc(), Keys.back()->getEndLoc());
625 SmallVector<const Expr *, 8> Keys;
626 if (!getNSArrayObjects(Msg->getArg(1), NS, Keys))
629 if (Vals.size() != Keys
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DSIMachineFunctionInfo.h172 auto Keys = YamlIO.keys(); local
173 if (is_contained(Keys, "reg")) {
176 } else if (is_contained(Keys, "offset"))
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/
H A DVirtualFileSystem.cpp1202 DenseMap<StringRef, KeyStatus> &Keys) {
1203 if (!Keys.count(Key)) {
1207 KeyStatus &S = Keys[Key];
1217 bool checkMissingKeys(yaml::Node *Obj, DenseMap<StringRef, KeyStatus> &Keys) { argument
1218 for (const auto &I : Keys) {
1315 DenseMap<StringRef, KeyStatus> Keys(std::begin(Fields), std::end(Fields));
1335 if (!checkDuplicateOrUnknownKey(I.getKey(), Key, Keys))
1421 llvm_unreachable("key missing from Keys");
1433 if (!checkMissingKeys(N, Keys))
1526 DenseMap<StringRef, KeyStatus> Keys(st
1201 checkDuplicateOrUnknownKey(yaml::Node *KeyNode, StringRef Key, DenseMap<StringRef, KeyStatus> &Keys) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/Syntax/
H A DTokens.cpp639 std::vector<FileID> Keys; local
641 Keys.push_back(F.first);
642 llvm::sort(Keys);
644 for (FileID ID : Keys) {
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGObjC.cpp152 Address Keys = Address::invalid(); local
154 Keys = CreateMemTemp(ElementArrayType, "keys");
179 LValue KeyLV = MakeAddrLValue(Builder.CreateConstArrayGEP(Keys, i),
206 Args.add(RValue::get(Keys.getPointer()), ArgQT);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DELFYAML.cpp995 MappingNormalization<NormalizedOther, Optional<uint8_t>> Keys(IO,
997 IO.mapOptional("Other", Keys->Other);

Completed in 114 milliseconds