Home
last modified time | relevance | path

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

12

/freebsd-13.1/contrib/llvm-project/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()
615 StringRef Resolved; in lexHTMLCharacterReference() local
617 Resolved = resolveHTMLNamedCharacterReference(Name); in lexHTMLCharacterReference()
619 Resolved = resolveHTMLDecimalCharacterReference(Name); in lexHTMLCharacterReference()
621 Resolved = resolveHTMLHexCharacterReference(Name); in lexHTMLCharacterReference()
623 if (Resolved.empty()) { in lexHTMLCharacterReference()
628 T.setText(Resolved); in lexHTMLCharacterReference()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Analysis/
H A DBlockFrequencyInfoImpl.cpp324 BlockNode Resolved = Working[Succ.Index].getResolvedNode(); in addToDist() local
330 if (!isLoopHeader(Resolved)) in addToDist()
332 if (Resolved != Succ) in addToDist()
333 dbgs() << ", resolved = " << getBlockName(Resolved); in addToDist()
339 if (isLoopHeader(Resolved)) { in addToDist()
341 Dist.addBackedge(Resolved, Weight); in addToDist()
345 if (Working[Resolved.Index].getContainingLoop() != OuterLoop) { in addToDist()
347 Dist.addExit(Resolved, Weight); in addToDist()
351 if (Resolved < Pred) { in addToDist()
365 assert(OuterLoop && OuterLoop->isIrreducible() && !isLoopHeader(Resolved) && in addToDist()
[all …]
/freebsd-13.1/contrib/llvm-project/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()
H A DCore.cpp147 assert(RequiredState >= SymbolState::Resolved && in AsynchronousSymbolQuery()
444 QuerySymbols, SymbolState::Resolved, std::move(OnComplete), in materialize()
899 const SymbolMap &Resolved) { in resolve() argument
915 Worklist.reserve(Resolved.size()); in resolve()
918 for (const auto &KV : Resolved) { in resolve()
967 SymI->second.setState(SymbolState::Resolved); in resolve()
974 for (auto &Q : MI.takeQueriesMeeting(SymbolState::Resolved)) { in resolve()
1041 SymEntry.getState() == SymbolState::Resolved) && in emit()
H A DDebugUtils.cpp290 case SymbolState::Resolved: in operator <<()
/freebsd-13.1/contrib/llvm-project/llvm/lib/MC/
H A DMCAsmBackend.cpp105 const MCFixup &Fixup, bool Resolved, uint64_t Value, in fixupNeedsRelaxationAdvanced() argument
108 if (!Resolved) in fixupNeedsRelaxationAdvanced()
/freebsd-13.1/contrib/llvm-project/lldb/source/Commands/
H A DCommandCompletions.cpp343 llvm::SmallString<256> Resolved; in DiskFilesOrDirectories() local
344 if (!Resolver.ResolveExact(Username, Resolved)) { in DiskFilesOrDirectories()
352 Resolved = S.getKey(); in DiskFilesOrDirectories()
353 path::append(Resolved, path::get_separator()); in DiskFilesOrDirectories()
354 request.AddCompletion(Resolved, "", CompletionMode::Partial); in DiskFilesOrDirectories()
373 Storage = Resolved; in DiskFilesOrDirectories()
/freebsd-13.1/sys/contrib/dev/acpica/components/dispatcher/
H A Ddspkginit.c562 if (Element->Reference.Resolved) in AcpiDsResolvePackageElement()
642 Element->Reference.Resolved = TRUE; in AcpiDsResolvePackageElement()
H A Ddsobject.c259 ObjDesc->Reference.Resolved = TRUE; in AcpiDsBuildInternalObject()
270 ObjDesc->Reference.Resolved = FALSE; in AcpiDsBuildInternalObject()
/freebsd-13.1/contrib/ntp/
H A DNEWS392 Date Resolved: 27 Feb 2018
416 Date Resolved: 27 Feb 2018
608 Date Resolved: 21 Mar 2017
652 Date Resolved: 21 Mar 2017
674 Date Resolved: 21 Mar 2017
701 Date Resolved: 21 Mar 2017
728 Date Resolved: 21 Mar 2017
752 Date Resolved: 21 Mar 2017
778 Date Resolved: 21 Mar 2017
850 Date Resolved: 21 Mar 2017
[all …]
H A DREADME.patches29 If these patches are for a bugzilla issue, mark the issue as Resolved/READY
H A DREADME.pullrequests82 If these patches are for a bugzilla issue, mark the issue as Resolved/READY
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/
H A DRTDyldObjectLinkingLayer.h134 std::map<StringRef, JITEvaluatedSymbol> Resolved,
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/RISCV/MCTargetDesc/
H A DRISCVAsmBackend.h76 bool fixupNeedsRelaxationAdvanced(const MCFixup &Fixup, bool Resolved,
H A DRISCVAsmBackend.cpp141 bool Resolved, in fixupNeedsRelaxationAdvanced() argument
150 if (!Resolved && !WasForced) in fixupNeedsRelaxationAdvanced()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/MSP430/MCTargetDesc/
H A DMSP430AsmBackend.cpp56 bool fixupNeedsRelaxationAdvanced(const MCFixup &Fixup, bool Resolved, in fixupNeedsRelaxationAdvanced() argument
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCAsmBackend.h149 virtual bool fixupNeedsRelaxationAdvanced(const MCFixup &Fixup, bool Resolved,
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Lex/
H A DHeaderSearch.h78 unsigned Resolved : 1; member
127 Resolved(false), IndexHeaderMapHeader(false), IsValid(false) {} in HeaderFileInfo()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/Hexagon/MCTargetDesc/
H A DHexagonAsmBackend.cpp571 bool fixupNeedsRelaxationAdvanced(const MCFixup &Fixup, bool Resolved, in fixupNeedsRelaxationAdvanced() argument
586 if (!Resolved) { in fixupNeedsRelaxationAdvanced()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DSIFixSGPRCopies.cpp733 bool Resolved = false; in runOnMachineFunction() local
746 Resolved = true; in runOnMachineFunction()
754 if (!Resolved) { in runOnMachineFunction()
/freebsd-13.1/sys/contrib/dev/acpica/include/
H A Dacobject.h551 UINT8 Resolved; /* Reference has been resolved to a value */ member
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/TableGen/
H A DRecord.h2031 bool Resolved; member
2033 MappedValue() : V(nullptr), Resolved(false) {} in MappedValue()
2034 MappedValue(Init *V, bool Resolved) : V(V), Resolved(Resolved) {} in MappedValue()
/freebsd-13.1/contrib/llvm-project/clang/lib/Lex/
H A DHeaderSearch.cpp1189 if (ExternalSource && !HFI->Resolved) { in getFileInfo()
1192 HFI->Resolved = true; in getFileInfo()
1221 if (!HFI->Resolved) { in getExistingFileInfo()
1224 HFI->Resolved = true; in getExistingFileInfo()
/freebsd-13.1/lib/libc/nls/
H A DC.msg297 13 Resolved protocol is unknown
/freebsd-13.1/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyld.cpp1217 StringMap<JITEvaluatedSymbol> Resolved; in finalizeAsync() local
1219 Resolved[KV.first] = KV.second; in finalizeAsync()
1221 SharedThis->applyExternalSymbolRelocations(Resolved); in finalizeAsync()

12