Home
last modified time | relevance | path

Searched refs:Unresolved (Results 1 – 23 of 23) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Target/AVR/
H A DREADME.md7 * [Unresolved bugs](https://github.com/llvm/llvm-project/labels/backend%3AAVR)
/freebsd/contrib/llvm-project/clang/lib/Lex/
H A DModuleMap.cpp108 const Module::UnresolvedExportDecl &Unresolved, in resolveExport() argument
111 if (Unresolved.Id.empty()) { in resolveExport()
112 assert(Unresolved.Wildcard && "Invalid unresolved export"); in resolveExport()
117 Module *Context = resolveModuleId(Unresolved.Id, Mod, Complain); in resolveExport()
121 return Module::ExportDecl(Context, Unresolved.Wildcard); in resolveExport()
1492 auto Unresolved = std::move(Mod->UnresolvedExports); in resolveExports() local
1494 for (auto &UE : Unresolved) { in resolveExports()
1506 auto Unresolved = std::move(Top->UnresolvedDirectUses); in resolveUses() local
1508 for (auto &UDU : Unresolved) { in resolveUses()
1519 auto Unresolved = std::move(Mod->UnresolvedConflicts); in resolveConflicts() local
[all …]
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DSpecifiers.h31 Unresolved, enumerator
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DASTReader.cpp4878 UnresolvedModuleRef &Unresolved = UnresolvedModuleRefs[I]; in ReadAST() local
4879 SubmoduleID GlobalID = getGlobalSubmoduleID(*Unresolved.File,Unresolved.ID); in ReadAST()
4882 switch (Unresolved.Kind) { in ReadAST()
4887 Conflict.Message = Unresolved.String.str(); in ReadAST()
4888 Unresolved.Mod->Conflicts.push_back(Conflict); in ReadAST()
4894 Unresolved.Mod->Imports.insert(ResolvedMod); in ReadAST()
4899 Unresolved.Mod->AffectingClangModules.insert(ResolvedMod); in ReadAST()
4903 if (ResolvedMod || Unresolved.IsWildcard) in ReadAST()
4904 Unresolved.Mod->Exports.push_back( in ReadAST()
4905 Module::ExportDecl(ResolvedMod, Unresolved.IsWildcard)); in ReadAST()
[all …]
H A DASTWriter.cpp2073 UnresolvedModule Unresolved) in data_type()
2075 KnownHeaders(KnownHeaders), Unresolved(Unresolved) {} in data_type()
2080 UnresolvedModule Unresolved; member
2104 if (Data.Unresolved.getPointer()) in EmitKeyDataLength()
2150 if (Data.Unresolved.getPointer()) in EmitData()
2151 EmitModule(Data.Unresolved.getPointer(), Data.Unresolved.getInt()); in EmitData()
/freebsd/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DType.h450 Unresolved = 0, enumerator
588 ResolveState m_compiler_type_resolve_state = ResolveState::Unresolved;
/freebsd/contrib/llvm-project/clang/lib/Basic/
H A DModule.cpp539 for (auto *Unresolved : {&UnresolvedHeaders, &MissingHeaders}) { in print()
540 for (auto &U : *Unresolved) { in print()
/freebsd/contrib/llvm-project/clang/include/clang/Lex/
H A DModuleMap.h292 resolveExport(Module *Mod, const Module::UnresolvedExportDecl &Unresolved,
/freebsd/contrib/llvm-project/clang/lib/Parse/
H A DParseTentative.cpp1092 case AnnotatedNameKind::Unresolved: in isCXXDeclarationSpecifier()
1389 case AnnotatedNameKind::Unresolved: in isCXXDeclarationSpecifier()
H A DParser.cpp1705 return AnnotatedNameKind::Unresolved; in TryAnnotateName()
1874 return AnnotatedNameKind::Unresolved; in TryAnnotateName()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DDeclCXX.cpp2331 getKind() == ExplicitSpecKind::Unresolved)) { in isEquivalent()
2332 if (getKind() == ExplicitSpecKind::Unresolved && in isEquivalent()
2333 Other.getKind() == ExplicitSpecKind::Unresolved) { in isEquivalent()
/freebsd/contrib/llvm-project/lldb/source/Symbol/
H A DType.cpp286 : ResolveState::Unresolved), in Type()
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/
H A DCore.cpp1821 auto Unresolved = std::move(Symbols); in lookup() local
1822 auto Q = std::make_shared<AsynchronousSymbolQuery>(Unresolved, RequiredState, in lookup()
1826 K, SearchOrder, std::move(Unresolved), RequiredState, std::move(Q), in lookup()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaCodeComplete.cpp5766 QualType Unresolved = E->getType(); in getApproximateType() local
5768 if (const auto *DNT = Unresolved->getAs<DependentNameType>()) { in getApproximateType()
5776 if (!Unresolved->isSpecificBuiltinType(BuiltinType::Dependent)) { in getApproximateType()
5777 AutoType *Auto = Unresolved->getContainedAutoType(); in getApproximateType()
5779 return Unresolved; in getApproximateType()
5788 return Unresolved; in getApproximateType()
5815 return Unresolved; // Multiple candidates. in getApproximateType()
5849 return Unresolved; in getApproximateType()
H A DSemaTemplateInstantiateDecl.cpp3074 InstantiatedExplicitSpecifier.setKind(ExplicitSpecKind::Unresolved); in VisitCXXMethodDecl()
H A DSemaDeclCXX.cpp13976 ExplicitSpec.setKind(ExplicitSpecKind::Unresolved); in tryResolveExplicitSpecifier()
13981 ExplicitSpecifier ES(ExplicitExpr, ExplicitSpecKind::Unresolved); in ActOnExplicitBoolSpecifier()
H A DSemaOverload.cpp7974 ExplicitSpecKind::Unresolved; in hasDependentExplicit()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DDeclCXX.h1949 return ExplicitSpec.getInt() == ExplicitSpecKind::Unresolved && in isInvalid()
1960 return ExplicitSpecifier(nullptr, ExplicitSpecKind::Unresolved); in Invalid()
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/LogicalView/Readers/
H A DLVCodeViewVisitor.cpp395 for (const StringRef &Unresolved : UnresolvedScopes) { in init() local
396 Components = getAllLexicalComponents(Unresolved); in init()
/freebsd/contrib/byacc/
H A Dbtyaccpar.skel531 /* Unresolved conflict - start/continue trial parse */
/freebsd/contrib/llvm-project/clang/include/clang/Parse/
H A DParser.h63 Unresolved, enumerator
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFASTParserClang.cpp696 Type::ResolveState resolve_state = Type::ResolveState::Unresolved; in ParseTypeModifier()
/freebsd/contrib/unbound/doc/
H A DChangelog6606 - Fix #1188: Unresolved symbol 'fake_dsa' in libunbound.so when built