| /netbsd-src/external/apache2/llvm/dist/clang/include/clang/StaticAnalyzer/Core/ |
| H A D | CheckerRegistryData.h | 106 StringRef FullName; member 127 return FullName == Rhs.FullName; 132 : Initialize(Fn), ShouldRegister(sfn), FullName(Name), Desc(Desc), in CheckerInfo() 136 explicit CheckerInfo(StringRef FullName) : FullName(FullName) {} in CheckerInfo() 147 StringRef FullName; member 153 return FullName == Rhs.FullName; 156 explicit PackageInfo(StringRef FullName) : FullName(FullName) {} in PackageInfo() 168 return Lhs.FullName < Rhs.FullName; in operator() 179 binaryFind(CheckerOrPackageInfoList &Collection, StringRef FullName) { in binaryFind() argument 188 return llvm::lower_bound(Collection, CheckerOrPackage(FullName), in binaryFind()
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/ |
| H A D | CheckerRegistryData.cpp | 51 Out << FullName << " (" << toString(State) << (IsHidden ? ", hidden" : "") in dumpToStream() 61 Out << " " << Dependency->FullName << '\n'; in dumpToStream() 65 Out << " " << Dependency->FullName << '\n'; in dumpToStream() 72 Out << FullName << "\n"; in dumpToStream() 85 if (!Checker.FullName.startswith(PackageName)) in isInPackage() 89 if (Checker.FullName.size() == PackageName.size()) in isInPackage() 93 if (Checker.FullName[PackageName.size()] == PackageSeparator) in isInPackage() 134 size_t NameLength = Checker.FullName.size(); in printCheckerWithDescList() 143 AnalyzerOptions::printFormattedEntry(Out, {Checker.FullName, Description}, in printCheckerWithDescList() 161 if (Checker.FullName.startswith("alpha")) { in printCheckerWithDescList() [all …]
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Frontend/ |
| H A D | CheckerRegistry.cpp | 304 CheckerIt->FullName == Entry.first && in resolveDependencies() 310 DependencyIt->FullName == Entry.second && in resolveDependencies() 314 assert((DependencyIt->FullName.startswith("test") || in resolveDependencies() 315 DependencyIt->FullName.startswith("example") || IsWeak || in resolveDependencies() 327 void CheckerRegistry::addDependency(StringRef FullName, StringRef Dependency) { in addDependency() argument 328 Data.Dependencies.emplace_back(FullName, Dependency); in addDependency() 331 void CheckerRegistry::addWeakDependency(StringRef FullName, in addWeakDependency() argument 333 Data.WeakDependencies.emplace_back(FullName, Dependency); in addWeakDependency() 342 static void insertAndValidate(StringRef FullName, const CmdLineOption &Option, in insertAndValidate() argument 346 std::string FullOption = (FullName + ":" + Option.OptionName).str(); in insertAndValidate() [all …]
|
| /netbsd-src/external/apache2/llvm/dist/clang/include/clang/StaticAnalyzer/Frontend/ |
| H A D | CheckerRegistry.h | 119 StringRef FullName, StringRef Desc, StringRef DocsUri, 128 void addChecker(StringRef FullName, StringRef Desc, StringRef DocsUri, 133 &CheckerRegistry::returnTrue<T>, FullName, Desc, DocsUri, 139 void addDependency(StringRef FullName, StringRef Dependency); 143 void addWeakDependency(StringRef FullName, StringRef Dependency); 160 void addPackage(StringRef FullName);
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/Basic/ |
| H A D | Attributes.cpp | 88 SmallString<64> FullName = ScopeName; in normalizeName() local 92 FullName += "::"; in normalizeName() 94 FullName += AttrName; in normalizeName() 96 return FullName; in normalizeName()
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/ |
| H A D | GenericTaintChecker.cpp | 107 std::string FullName) in FunctionData() 108 : FDecl(FDecl), Name(Name), FullName(std::move(FullName)) {} in FunctionData() 125 std::string FullName = FDecl->getQualifiedNameAsString(); in create() local 126 if (Name.empty() || FullName.empty()) in create() 129 return FunctionData{FDecl, Name, std::move(FullName)}; in create() 133 return StringRef(FullName).startswith(Scope); in isInScope() 138 const std::string FullName; member 429 llvm::StringSwitch<TaintPropagationRule>(FData.FullName) in getTaintPropagationRule()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/examples/OrcV2Examples/LLJITWithRemoteDebugging/ |
| H A D | RemoteJITUtils.cpp | 146 SmallString<256> FullName(sys::fs::getMainExecutable(HostArgv0, P)); in defaultPath() local 147 sys::path::remove_filename(FullName); in defaultPath() 148 sys::path::append(FullName, ExecutorName); in defaultPath() 149 return FullName.str().str(); in defaultPath()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-pdbutil/ |
| H A D | PrettyCompilandDumper.cpp | 49 std::string FullName = Symbol.getName(); in start() local 50 if (Printer.IsCompilandExcluded(FullName)) in start() 54 WithColor(Printer, PDB_ColorItem::Path).get() << FullName; in start()
|
| /netbsd-src/external/gpl2/gettext/dist/gettext-runtime/intl-csharp/ |
| H A D | intl.cs | 400 …throw new InvalidOperationException("resource for \""+msgid+"\" in "+GetType().FullName+" is not a… in GetString() 422 …throw new InvalidOperationException("resource for \""+msgid+"\" in "+GetType().FullName+" is not a… in GetString() 445 …throw new InvalidOperationException("resource for \""+msgid+"\" in "+GetType().FullName+" is not a… in GetPluralString()
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/Driver/ToolChains/ |
| H A D | HIP.cpp | 378 StringRef FullName; in getHIPDeviceLibs() local 382 FullName = Path; in getHIPDeviceLibs() 383 if (llvm::sys::fs::exists(FullName)) { in getHIPDeviceLibs() 384 BCLibs.push_back(FullName.str()); in getHIPDeviceLibs()
|
| /netbsd-src/usr.bin/make/ |
| H A D | arch.c | 171 FullName(const char *archive, const char *member) in FullName() function 302 fullName = FullName(lib.str, mem.str); in Arch_ParseArchive() 330 char *fullname = FullName(lib.str, member); in Arch_ParseArchive() 342 char *fullname = FullName(lib.str, mem.str); in Arch_ParseArchive()
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/ASTMatchers/ |
| H A D | ASTMatchersInternal.cpp | 480 static bool consumeNameSuffix(StringRef &FullName, StringRef Suffix) { in consumeNameSuffix() argument 481 StringRef Name = FullName; in consumeNameSuffix() 490 FullName = Name; in consumeNameSuffix() 651 const StringRef FullName = OS.str(); in matchesNodeFullSlow() local 655 if (FullName == Pattern) in matchesNodeFullSlow() 657 } else if (FullName.endswith(Pattern) && in matchesNodeFullSlow() 658 FullName.drop_back(Pattern.size()).endswith("::")) { in matchesNodeFullSlow()
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/ |
| H A D | ParsedAttr.cpp | 132 std::string FullName = A.getNormalizedFullName(); in get() local 139 if (S.Syntax == SyntaxUsed && S.NormalizedFullName == FullName) in get()
|
| /netbsd-src/external/apache2/llvm/dist/clang/utils/TableGen/ |
| H A D | ClangSACheckersEmitter.cpp | 159 static void printOption(llvm::raw_ostream &OS, StringRef FullName, in printOption() argument 163 OS.write_escaped(FullName) << "\", "; in printOption()
|
| H A D | MveEmitter.cpp | 802 std::string ShortName, FullName; member in __anone3a730d20111::ACLEIntrinsic 840 const std::string &fullName() const { return FullName; } in fullName() 856 bool polymorphic() const { return ShortName != FullName; } in polymorphic() 1335 FullName = in ACLEIntrinsic() 1344 StringRef(FullName).split(NameParts, '_'); in ACLEIntrinsic()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Object/ |
| H A D | Archive.cpp | 424 SmallString<128> FullName = sys::path::parent_path( in getFullName() local 426 sys::path::append(FullName, Name); in getFullName() 427 return std::string(FullName.str()); in getFullName() 444 const std::string &FullName = *FullNameOrErr; in getBuffer() local 445 ErrorOr<std::unique_ptr<MemoryBuffer>> Buf = MemoryBuffer::getFile(FullName); in getBuffer()
|
| /netbsd-src/external/apache2/llvm/dist/clang/tools/clang-format-vs/ClangFormat/ |
| H A D | RunningDocTableEventsDispatcher.cs | 76 …return _dte.Documents.Cast<Document>().FirstOrDefault(doc => doc.FullName == documentInfo.Moniker); in FindDocumentByCookie()
|
| H A D | Vsix.cs | 39 var textView = GetVsTextViewFrompPath(document.FullName); in GetDocumentView()
|
| H A D | ClangFormatPackage.cs | 273 if (!FileHasExtension(document.FullName, options.FormatOnSaveFileExtensions)) in OnBeforeSave()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/AsmPrinter/ |
| H A D | DwarfCompileUnit.cpp | 1369 std::string FullName = getParentContextString(Context) + Name.str(); in addGlobalName() local 1370 GlobalNames[FullName] = &Die; in addGlobalName() 1377 std::string FullName = getParentContextString(Context) + Name.str(); in addGlobalNameForTypeUnit() local 1382 GlobalNames.insert(std::make_pair(std::move(FullName), &getUnitDie())); in addGlobalNameForTypeUnit() 1390 std::string FullName = getParentContextString(Context) + Ty->getName().str(); in addGlobalType() local 1391 GlobalTypes[FullName] = &Die; in addGlobalType() 1398 std::string FullName = getParentContextString(Context) + Ty->getName().str(); in addGlobalTypeUnitType() local 1403 GlobalTypes.insert(std::make_pair(std::move(FullName), &getUnitDie())); in addGlobalTypeUnitType()
|
| H A D | CodeViewDebug.cpp | 2129 std::string FullName = getFullyQualifiedName(Ty); in lowerTypeEnum() local 2131 EnumRecord ER(EnumeratorCount, CO, FTI, FullName, Ty->getIdentifier(), in lowerTypeEnum() 2289 std::string FullName = getFullyQualifiedName(Ty); in lowerTypeClass() local 2291 FullName, Ty->getIdentifier()); in lowerTypeClass() 2320 std::string FullName = getFullyQualifiedName(Ty); in lowerCompleteTypeClass() local 2325 SizeInBytes, FullName, Ty->getIdentifier()); in lowerCompleteTypeClass() 2342 std::string FullName = getFullyQualifiedName(Ty); in lowerTypeUnion() local 2343 UnionRecord UR(0, CO, TypeIndex(), 0, FullName, Ty->getIdentifier()); in lowerTypeUnion() 2362 std::string FullName = getFullyQualifiedName(Ty); in lowerCompleteTypeUnion() local 2364 UnionRecord UR(FieldCount, CO, FieldTI, SizeInBytes, FullName, in lowerCompleteTypeUnion()
|
| /netbsd-src/external/gpl3/gcc/dist/libphobos/libdruntime/core/sys/windows/ |
| H A D | subauth.d | 183 UNICODE_STRING FullName; member
|
| /netbsd-src/sys/external/bsd/gnu-efi/dist/inc/ |
| H A D | efishell.h | 55 CONST CHAR16 *FullName; member
|
| /netbsd-src/external/gpl2/groff/dist/font/devps/generate/ |
| H A D | freeeuro.sfd | 3 FullName: FreeEuro
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/Lex/ |
| H A D | ModuleMap.cpp | 1776 SmallString<128> FullName(ActiveModule->getFullModuleName()); in diagnosePrivateModules() local 1777 if (!FullName.startswith(M->Name) && !FullName.endswith("Private")) in diagnosePrivateModules() 1788 << FullName; in diagnosePrivateModules() 1801 GenNoteAndFixIt(FullName, FixedPrivModDecl, M, in diagnosePrivateModules()
|