Home
last modified time | relevance | path

Searched refs:FullName (Results 1 – 25 of 32) sorted by relevance

12

/freebsd-14.2/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/
H A DCheckerRegistryData.h106 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()
/freebsd-14.2/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DCheckerRegistryData.cpp61 Out << " " << Dependency->FullName << '\n'; in dumpToStream()
65 Out << " " << Dependency->FullName << '\n'; in dumpToStream()
72 Out << FullName << "\n"; in dumpToStream()
85 if (!Checker.FullName.starts_with(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()
161 if (Checker.FullName.starts_with("alpha")) { in printCheckerWithDescList()
175 Out << i->FullName << '\n'; in printEnabledCheckerList()
192 OptionMap.insert({Checker.FullName, Option}); in printCheckerOptionList()
[all …]
/freebsd-14.2/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Frontend/
H A DCheckerRegistry.h119 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);
/freebsd-14.2/contrib/llvm-project/clang/lib/StaticAnalyzer/Frontend/
H A DCheckerRegistry.cpp303 CheckerIt->FullName == Entry.first && in resolveDependencies()
309 DependencyIt->FullName == Entry.second && in resolveDependencies()
313 assert((DependencyIt->FullName.starts_with("test") || in resolveDependencies()
314 DependencyIt->FullName.starts_with("example") || IsWeak || in resolveDependencies()
327 Data.Dependencies.emplace_back(FullName, Dependency); in addDependency()
330 void CheckerRegistry::addWeakDependency(StringRef FullName, in addWeakDependency() argument
332 Data.WeakDependencies.emplace_back(FullName, Dependency); in addWeakDependency()
394 auto It = binaryFind(Collection, FullName); in insertOptionToCollection()
399 insertAndValidate(FullName, Option, AnOpts, Diags); in insertOptionToCollection()
418 void CheckerRegistry::addPackage(StringRef FullName) { in addPackage() argument
[all …]
/freebsd-14.2/contrib/llvm-project/clang/lib/Basic/
H A DAttributes.cpp129 SmallString<64> FullName = ScopeName; in normalizeName() local
133 FullName += "::"; in normalizeName()
135 FullName += AttrName; in normalizeName()
137 return FullName; in normalizeName()
/freebsd-14.2/contrib/sendmail/src/
H A Denvelope.c992 extern char *FullName;
1108 if (FullName == NULL)
1109 FullName = macvalue('x', e);
1110 if (FullName != NULL)
1112 if (FullName[0] == '\0')
1113 FullName = NULL;
1115 FullName = newstr(FullName);
1145 if (FullName == NULL && !internal &&
1149 FullName = newstr(user.mbdb_fullname);
1156 if (FullName != NULL && !internal)
[all …]
H A Dmain.c709 FullName = getextenv("NAME");
710 if (FullName != NULL)
711 FullName = newstr(FullName);
915 FullName = newstr(optarg);
1020 FullName = NULL;
1043 FullName = NULL;
1722 FullName = NULL;
1745 if (FullName != NULL)
1753 FullName = full;
1757 if (!rfc822_string(FullName))
[all …]
/freebsd-14.2/contrib/llvm-project/lldb/utils/TableGen/
H A DLLDBOptionDefEmitter.cpp29 std::string FullName; member
57 FullName = std::string(Option->getValueAsString("FullName")); in CommandOption()
92 OS << ", \"" << O.FullName << "\", "; in emitOption()
/freebsd-14.2/contrib/llvm-project/clang/lib/Driver/ToolChains/
H A DHIPSPV.cpp231 StringRef FullName; in getDeviceLibs() local
235 FullName = Path; in getDeviceLibs()
236 if (llvm::sys::fs::exists(FullName)) { in getDeviceLibs()
237 BCLibs.emplace_back(FullName.str()); in getDeviceLibs()
H A DHIPAMD.cpp369 StringRef FullName; in getDeviceLibs() local
373 FullName = Path; in getDeviceLibs()
374 if (llvm::sys::fs::exists(FullName)) { in getDeviceLibs()
375 BCLibs.push_back(FullName); in getDeviceLibs()
/freebsd-14.2/contrib/llvm-project/llvm/tools/llvm-pdbutil/
H A DPrettyCompilandDumper.cpp49 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()
/freebsd-14.2/contrib/bmake/
H A Darch.c221 FullName(const char *archive, const char *member) in FullName() function
371 fullName = FullName(lib.str, mem.str); in Arch_ParseArchive()
400 char *fullname = FullName(lib.str, member); in Arch_ParseArchive()
412 char *fullname = FullName(lib.str, mem.str); in Arch_ParseArchive()
/freebsd-14.2/contrib/llvm-project/clang/lib/ASTMatchers/
H A DASTMatchersInternal.cpp481 static bool consumeNameSuffix(StringRef &FullName, StringRef Suffix) { in consumeNameSuffix() argument
482 StringRef Name = FullName; in consumeNameSuffix()
491 FullName = Name; in consumeNameSuffix()
652 const StringRef FullName = OS.str(); in matchesNodeFullSlow() local
656 if (FullName == Pattern) in matchesNodeFullSlow()
658 } else if (FullName.ends_with(Pattern) && in matchesNodeFullSlow()
659 FullName.drop_back(Pattern.size()).ends_with("::")) { in matchesNodeFullSlow()
/freebsd-14.2/contrib/bearssl/T0/
H A DOpcodeConst.cs82 val.ptr.GetType().FullName)); in ToCodeElement()
/freebsd-14.2/contrib/llvm-project/clang/utils/TableGen/
H A DClangSACheckersEmitter.cpp158 static void printOption(llvm::raw_ostream &OS, StringRef FullName, in printOption() argument
162 OS.write_escaped(FullName) << "\", "; in printOption()
H A DMveEmitter.cpp800 std::string ShortName, FullName; member in __anon6618677d0111::ACLEIntrinsic
838 const std::string &fullName() const { return FullName; } in fullName()
854 bool polymorphic() const { return ShortName != FullName; } in polymorphic()
1341 FullName = in ACLEIntrinsic()
1350 StringRef(FullName).split(NameParts, '_'); in ACLEIntrinsic()
H A DSveEmitter.cpp1067 std::string FullName = mangleName(ClassS); in emitIntrinsic() local
1074 OS << "__builtin_sme_" << FullName << ")"; in emitIntrinsic()
1077 OS << "__builtin_sve_" << FullName << ")"; in emitIntrinsic()
/freebsd-14.2/contrib/llvm-project/clang/lib/Sema/
H A DParsedAttr.cpp123 std::string FullName = A.getNormalizedFullName(); in get() local
129 if (Ptr->hasSpelling(SyntaxUsed, FullName)) in get()
/freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfCompileUnit.cpp1504 std::string FullName = getParentContextString(Context) + Name.str(); in addGlobalName() local
1505 GlobalNames[FullName] = &Die; in addGlobalName()
1512 std::string FullName = getParentContextString(Context) + Name.str(); in addGlobalNameForTypeUnit() local
1517 GlobalNames.insert(std::make_pair(std::move(FullName), &getUnitDie())); in addGlobalNameForTypeUnit()
1525 std::string FullName = getParentContextString(Context) + Ty->getName().str(); in addGlobalType() local
1526 GlobalTypes[FullName] = &Die; in addGlobalType()
1533 std::string FullName = getParentContextString(Context) + Ty->getName().str(); in addGlobalTypeUnitType() local
1538 GlobalTypes.insert(std::make_pair(std::move(FullName), &getUnitDie())); in addGlobalTypeUnitType()
H A DCodeViewDebug.cpp2289 std::string FullName = getFullyQualifiedName(Ty); in lowerTypeEnum() local
2291 EnumRecord ER(EnumeratorCount, CO, FTI, FullName, Ty->getIdentifier(), in lowerTypeEnum()
2450 std::string FullName = getFullyQualifiedName(Ty); in lowerTypeClass() local
2452 FullName, Ty->getIdentifier()); in lowerTypeClass()
2481 std::string FullName = getFullyQualifiedName(Ty); in lowerCompleteTypeClass() local
2486 SizeInBytes, FullName, Ty->getIdentifier()); in lowerCompleteTypeClass()
2503 std::string FullName = getFullyQualifiedName(Ty); in lowerTypeUnion() local
2504 UnionRecord UR(0, CO, TypeIndex(), 0, FullName, Ty->getIdentifier()); in lowerTypeUnion()
2523 std::string FullName = getFullyQualifiedName(Ty); in lowerCompleteTypeUnion() local
2525 UnionRecord UR(FieldCount, CO, FieldTI, SizeInBytes, FullName, in lowerCompleteTypeUnion()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Object/
H A DArchive.cpp567 SmallString<128> FullName = sys::path::parent_path( in getFullName() local
569 sys::path::append(FullName, Name); in getFullName()
570 return std::string(FullName); in getFullName()
587 const std::string &FullName = *FullNameOrErr; in getBuffer() local
588 ErrorOr<std::unique_ptr<MemoryBuffer>> Buf = MemoryBuffer::getFile(FullName); in getBuffer()
/freebsd-14.2/contrib/llvm-project/lldb/source/Commands/
H A DOptionsBase.td107 string FullName = fullname;
/freebsd-14.2/contrib/llvm-project/llvm/lib/ExecutionEngine/
H A DExecutionEngine.cpp192 SmallString<128> FullName; in getMangledName() local
199 Mangler::getNameWithPrefix(FullName, GV->getName(), DL); in getMangledName()
200 return std::string(FullName); in getMangledName()
/freebsd-14.2/contrib/llvm-project/clang/lib/Lex/
H A DModuleMap.cpp1868 SmallString<128> FullName(ActiveModule->getFullModuleName()); in diagnosePrivateModules() local
1869 if (!FullName.starts_with(M->Name) && !FullName.ends_with("Private")) in diagnosePrivateModules()
1880 << FullName; in diagnosePrivateModules()
1893 GenNoteAndFixIt(FullName, FixedPrivModDecl, M, in diagnosePrivateModules()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPULibFunc.cpp576 bool AMDGPUMangledLibFunc::parseUnmangledName(StringRef FullName) { in parseUnmangledName() argument
579 FuncId = static_cast<EFuncId>(manglingRulesMap.lookup(FullName)); in parseUnmangledName()

12