Home
last modified time | relevance | path

Searched refs:Resolved (Results 1 – 25 of 52) sorted by relevance

123

/llvm-project-15.0.7/clang-tools-extra/clangd/
H A DHeaders.cpp66 Inc.Resolved = in InclusionDirective()
220 auto Resolved = URI::resolve(*U, HintPath); in toHeaderFile() local
221 if (!Resolved) in toHeaderFile()
222 return Resolved.takeError(); in toHeaderFile()
223 return HeaderFile{std::move(*Resolved), /*Verbatim=*/false}; in toHeaderFile()
310 if (!Inc.Resolved.empty()) in addExisting()
311 IncludedHeaders.insert(Inc.Resolved); in addExisting()
370 << (!Inc.Resolved.empty() ? Inc.Resolved : "[unresolved]") in operator <<()
376 LHS.Resolved, LHS.Written) == in operator ==()
378 RHS.Resolved, RHS.Written); in operator ==()
H A DCompileCommands.cpp79 llvm::SmallString<128> Resolved; in resolve() local
80 if (llvm::sys::fs::real_path(Path, Resolved)) { in resolve()
84 return std::string(Resolved.str()); in resolve()
179 llvm::SmallString<256> Resolved; in resolveDriver() local
180 if (!llvm::sys::fs::real_path(Driver, Resolved)) in resolveDriver()
181 return SiblingOf(Resolved); in resolveDriver()
H A DSemanticHighlighting.cpp294 enum HighlightPriority { Dependent = 0, Resolved = 1 }; in evaluateHighlightPriority() enumerator
297 : Resolved; in evaluateHighlightPriority()
387 if (auto Resolved = resolveConflict(Conflicting)) { in collect() local
389 auto Modifiers = ExtraModifiers.find(Resolved->R); in collect()
392 Resolved->addModifier(Mod); in collect()
396 NonConflicting.push_back(*Resolved); in collect()
H A DProtocol.cpp48 auto Resolved = URI::resolvePath(AbsPath, TUPath); in canonicalize() local
49 if (!Resolved) { in canonicalize()
52 AbsPath, TUPath, Resolved.takeError()); in canonicalize()
55 return URIForFile(std::move(*Resolved)); in canonicalize()
60 auto Resolved = URI::resolve(U, HintPath); in fromURI() local
61 if (!Resolved) in fromURI()
62 return Resolved.takeError(); in fromURI()
63 return URIForFile(std::move(*Resolved)); in fromURI()
H A DIncludeCleaner.cpp290 llvm::SmallString<64> Path(Inc.Resolved); in mayConsiderUnused()
292 if (Filter(Inc.Resolved)) { in mayConsiderUnused()
/llvm-project-15.0.7/llvm/test/Transforms/GlobalOpt/
H A Dalias-resolve.ll4 ;; foo2 is dso_local and non-weak. Resolved.
8 ;; bar1 is dso_local and non-weak. Resolved.
42 ;; foo2 is dso_local and non-weak. Resolved.
46 ;; bar1 is dso_local and non-weak. Resolved.
54 ;; priva has a local linkage. Resolved.
/llvm-project-15.0.7/clang/lib/AST/
H A DCommentLexer.cpp42 char *Resolved = Allocator.Allocate<char>(UNI_MAX_UTF8_BYTES_PER_CODE_POINT); in convertCodePointToUTF8() local
43 char *ResolvedPtr = Resolved; in convertCodePointToUTF8()
45 return StringRef(Resolved, ResolvedPtr - Resolved); in convertCodePointToUTF8()
611 StringRef Resolved; in lexHTMLCharacterReference() local
613 Resolved = resolveHTMLNamedCharacterReference(Name); in lexHTMLCharacterReference()
615 Resolved = resolveHTMLDecimalCharacterReference(Name); in lexHTMLCharacterReference()
617 Resolved = resolveHTMLHexCharacterReference(Name); in lexHTMLCharacterReference()
619 if (Resolved.empty()) { in lexHTMLCharacterReference()
624 T.setText(Resolved); in lexHTMLCharacterReference()
/llvm-project-15.0.7/llvm/lib/Analysis/
H A DBlockFrequencyInfoImpl.cpp323 BlockNode Resolved = Working[Succ.Index].getResolvedNode(); in addToDist() local
329 if (!isLoopHeader(Resolved)) in addToDist()
331 if (Resolved != Succ) in addToDist()
332 dbgs() << ", resolved = " << getBlockName(Resolved); in addToDist()
338 if (isLoopHeader(Resolved)) { in addToDist()
340 Dist.addBackedge(Resolved, Weight); in addToDist()
344 if (Working[Resolved.Index].getContainingLoop() != OuterLoop) { in addToDist()
346 Dist.addExit(Resolved, Weight); in addToDist()
350 if (Resolved < Pred) { in addToDist()
364 assert(OuterLoop && OuterLoop->isIrreducible() && !isLoopHeader(Resolved) && in addToDist()
[all …]
/llvm-project-15.0.7/llvm/lib/ExecutionEngine/Orc/
H A DRTDyldObjectLinkingLayer.cpp54 SymbolState::Resolved, std::move(OnResolvedWithUnwrap), in lookup()
190 std::map<StringRef, JITEvaluatedSymbol> Resolved, in onObjLoad() argument
211 auto I = Resolved.find(*Name); in onObjLoad()
215 if (I == Resolved.end() || InternalSymbols.count(*Name) || in onObjLoad()
229 for (auto &KV : Resolved) { in onObjLoad()
/llvm-project-15.0.7/llvm/lib/MC/
H A DMCAsmBackend.cpp113 const MCFixup &Fixup, bool Resolved, uint64_t Value, in fixupNeedsRelaxationAdvanced() argument
116 if (!Resolved) in fixupNeedsRelaxationAdvanced()
/llvm-project-15.0.7/clang-tools-extra/clangd/unittests/
H A DHeadersTests.cpp144 MATCHER_P(resolved, Name, "") { return arg.Resolved == Name; }
318 Inc.Resolved = ""; in TEST_F()
326 Inc.Resolved = testPath("sub/bar.h"); in TEST_F()
327 EXPECT_EQ(calculate(Inc.Resolved, "", {Inc}), ""); in TEST_F()
329 EXPECT_EQ(calculate(Inc.Resolved, "\"BAR.h\"", {Inc}), ""); in TEST_F()
/llvm-project-15.0.7/llvm/unittests/ExecutionEngine/Orc/
H A DRTDyldObjectLinkingLayerTest.cpp64 SymbolLookupSet(Foo), SymbolState::Resolved, OnResolveDoNothing, in testSetProcessAllSections()
169 SymbolState::Resolved, in TEST()
239 SymbolState::Resolved, in TEST()
H A DCoreAPIsTest.cpp31 auto &Resolved = *Result; in TEST_F() local
32 auto I = Resolved.find(Foo); in TEST_F()
33 EXPECT_NE(I, Resolved.end()) << "Could not find symbol definition"; in TEST_F()
500 SymbolLookupSet(Foo), SymbolState::Resolved, in TEST_F()
520 SymbolLookupSet(Bar), SymbolState::Resolved, in TEST_F()
541 SymbolLookupSet(Baz), SymbolState::Resolved, in TEST_F()
1182 SymbolLookupSet({Baz}), SymbolState::Resolved, in TEST_F()
1222 SymbolLookupSet({Foo, Bar}), SymbolState::Resolved, in TEST_F()
/llvm-project-15.0.7/lldb/source/Commands/
H A DCommandCompletions.cpp345 llvm::SmallString<256> Resolved; in DiskFilesOrDirectories() local
346 if (!Resolver.ResolveExact(Username, Resolved)) { in DiskFilesOrDirectories()
354 Resolved = S.getKey(); in DiskFilesOrDirectories()
355 path::append(Resolved, path::get_separator()); in DiskFilesOrDirectories()
356 request.AddCompletion(Resolved, "", CompletionMode::Partial); in DiskFilesOrDirectories()
375 Storage = Resolved; in DiskFilesOrDirectories()
/llvm-project-15.0.7/lld/test/ELF/
H A Ddebug-dead-reloc-32.s20 ## Resolved to UINT32_C(-2), with the addend ignored.
H A Ddebug-dead-reloc.s38 ## Resolved to UINT64_C(1), with the addend ignored.
/llvm-project-15.0.7/llvm/lib/Target/CSKY/MCTargetDesc/
H A DCSKYAsmBackend.h46 bool fixupNeedsRelaxationAdvanced(const MCFixup &Fixup, bool Resolved,
H A DCSKYAsmBackend.cpp175 bool Resolved, uint64_t Value, in fixupNeedsRelaxationAdvanced() argument
183 if (!Resolved && !WasForced) in fixupNeedsRelaxationAdvanced()
/llvm-project-15.0.7/llvm/include/llvm/ExecutionEngine/Orc/
H A DRTDyldObjectLinkingLayer.h134 std::map<StringRef, JITEvaluatedSymbol> Resolved,
/llvm-project-15.0.7/llvm/lib/Target/RISCV/MCTargetDesc/
H A DRISCVAsmBackend.h73 bool fixupNeedsRelaxationAdvanced(const MCFixup &Fixup, bool Resolved,
/llvm-project-15.0.7/clang-tools-extra/clang-tidy/utils/
H A DRenamerClangTidyCheck.cpp388 if (NameLookup Resolved = findDeclInBases( in check() local
390 if (*Resolved) in check()
391 addUsage(*Resolved, DepMemberRef->getMemberNameInfo().getSourceRange(), in check()
/llvm-project-15.0.7/llvm/lib/Target/MSP430/MCTargetDesc/
H A DMSP430AsmBackend.cpp56 bool fixupNeedsRelaxationAdvanced(const MCFixup &Fixup, bool Resolved, in fixupNeedsRelaxationAdvanced() argument
/llvm-project-15.0.7/llvm/include/llvm/MC/
H A DMCAsmBackend.h156 virtual bool fixupNeedsRelaxationAdvanced(const MCFixup &Fixup, bool Resolved,
/llvm-project-15.0.7/clang/include/clang/Lex/
H A DHeaderSearch.h85 unsigned Resolved : 1; member
123 Resolved(false), IndexHeaderMapHeader(false), IsValid(false) {} in HeaderFileInfo()
/llvm-project-15.0.7/llvm/lib/Target/Hexagon/MCTargetDesc/
H A DHexagonAsmBackend.cpp572 bool fixupNeedsRelaxationAdvanced(const MCFixup &Fixup, bool Resolved, in fixupNeedsRelaxationAdvanced() argument
587 if (!Resolved) { in fixupNeedsRelaxationAdvanced()

123