Home
last modified time | relevance | path

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

12

/src/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()
/src/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DCheckerRegistryData.cpp51 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.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()
143 AnalyzerOptions::printFormattedEntry(Out, {Checker.FullName, Description}, in printCheckerWithDescList()
161 if (Checker.FullName.starts_with("alpha")) { in printCheckerWithDescList()
[all …]
/src/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()
326 void CheckerRegistry::addDependency(StringRef FullName, StringRef Dependency) { in addDependency() argument
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()
341 static void insertAndValidate(StringRef FullName, const CmdLineOption &Option, in insertAndValidate() argument
345 std::string FullOption = (FullName + ":" + Option.OptionName).str(); in insertAndValidate()
[all …]
/src/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);
/src/contrib/llvm-project/clang/lib/Basic/
H A DAttributes.cpp133 SmallString<64> FullName = ScopeName; in normalizeName() local
137 FullName += "::"; in normalizeName()
139 FullName += AttrName; in normalizeName()
141 return FullName; in normalizeName()
/src/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.c106 char *FullName; /* sender's full name */ variable
709 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)
1750 if (strchr(FullName, '\n') != NULL)
[all …]
/src/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()
/src/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.cpp416 StringRef FullName; in getDeviceLibs() local
420 FullName = Path; in getDeviceLibs()
421 if (llvm::sys::fs::exists(FullName)) { in getDeviceLibs()
422 BCLibs.push_back(FullName); in getDeviceLibs()
/src/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()
/src/contrib/bmake/
H A Darch.c219 FullName(const char *archive, const char *member) in FullName() function
350 fullName = FullName(lib.str, mem.str); in Arch_ParseArchive()
378 char *fullname = FullName(lib.str, member); in Arch_ParseArchive()
390 char *fullname = FullName(lib.str, mem.str); in Arch_ParseArchive()
/src/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()
/src/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.cpp801 std::string ShortName, FullName; member in __anon7767069c0111::ACLEIntrinsic
839 const std::string &fullName() const { return FullName; } in fullName()
855 bool polymorphic() const { return ShortName != FullName; } in polymorphic()
1342 FullName = in ACLEIntrinsic()
1351 StringRef(FullName).split(NameParts, '_'); in ACLEIntrinsic()
H A DSveEmitter.cpp1089 std::string FullName = mangleName(ClassS); in emitIntrinsic() local
1096 OS << "__builtin_sme_" << FullName << ")"; in emitIntrinsic()
1099 OS << "__builtin_sve_" << FullName << ")"; in emitIntrinsic()
/src/contrib/bearssl/T0/
H A DOpcodeConst.cs82 val.ptr.GetType().FullName)); in ToCodeElement()
/src/contrib/llvm-project/clang/lib/Sema/
H A DParsedAttr.cpp129 std::string FullName = A.getNormalizedFullName(); in get() local
135 if (Ptr->hasSpelling(SyntaxUsed, FullName)) in get()
H A DSemaARM.cpp1144 int32_t FullName; member
1159 StringRef FullName(&IntrinNames[It->FullName]); in BuiltinAliasValid() local
1160 if (AliasName == FullName) in BuiltinAliasValid()
/src/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfCompileUnit.cpp1525 std::string FullName = getParentContextString(Context) + Name.str(); in addGlobalName() local
1526 GlobalNames[FullName] = &Die; in addGlobalName()
1533 std::string FullName = getParentContextString(Context) + Name.str(); in addGlobalNameForTypeUnit() local
1538 GlobalNames.insert(std::make_pair(std::move(FullName), &getUnitDie())); in addGlobalNameForTypeUnit()
1546 std::string FullName = getParentContextString(Context) + Ty->getName().str(); in addGlobalTypeImpl() local
1547 GlobalTypes[FullName] = &Die; in addGlobalTypeImpl()
1554 std::string FullName = getParentContextString(Context) + Ty->getName().str(); in addGlobalTypeUnitType() local
1559 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()
/src/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()
/src/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/
H A DExecutionUtils.cpp448 StringRef FullName = FileNames.save(Archive->getFileName() + "(" + in buildObjectFilesMap() local
451 FullName); in buildObjectFilesMap()
/src/contrib/llvm-project/lldb/source/Commands/
H A DOptionsBase.td107 string FullName = fullname;
/src/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()

12