Searched refs:Optional (Results 601 - 625 of 1145) sorted by relevance

<<21222324252627282930>>

/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DAllocator.h23 #include "llvm/ADT/Optional.h"
296 llvm::Optional<int64_t> identifyObject(const void *Ptr) {
323 Optional<int64_t> Out = identifyObject(Ptr);
H A DAlignment.h24 #include "llvm/ADT/Optional.h"
117 struct MaybeAlign : public llvm::Optional<Align> {
119 using UP = llvm::Optional<Align>;
131 /// Use llvm::Optional<Align> constructor.
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfDebug.h122 Optional<uint8_t> DebugLocListTagOffset;
181 Optional<uint8_t> getDebugLocListTagOffset() const { return DebugLocListTagOffset; }
H A DDebugHandlerBase.cpp15 #include "llvm/ADT/Optional.h"
29 Optional<DbgVariableLocation>
/freebsd-11-stable/contrib/llvm-project/lldb/source/Host/common/
H A DFileSystem.cpp83 Optional<FileSystem> &FileSystem::InstanceImpl() {
84 static Optional<FileSystem> g_fs;
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DType.h97 llvm::Optional<uint64_t> byte_size, SymbolContextScope *context,
123 llvm::Optional<uint64_t> GetByteSize();
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86InstrInfo.h525 Optional<ParamLoadedValue> describeLoadedValue(const MachineInstr &MI,
547 Optional<DestSourcePair>
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/GlobalISel/
H A DGIMatchTree.h28 Optional<unsigned> OpIdx;
32 Optional<unsigned> OpIdx = None)
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MC/
H A DMCAsmStreamer.cpp9 #include "llvm/ADT/Optional.h"
234 Optional<MD5::MD5Result> Checksum = None,
235 Optional<StringRef> Source = None,
238 Optional<MD5::MD5Result> Checksum,
239 Optional<StringRef> Source,
1215 Optional<MD5::MD5Result> Checksum,
1216 Optional<StringRef> Source,
1248 Optional<MD5::MD5Result> Checksum, Optional<StringRef> Source, unsigned CUID) {
1277 Optional<MD
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DExprEngine.cpp67 #include "llvm/ADT/Optional.h"
262 Optional<DefinedOrUnknownSVal> Constraint =
282 if (Optional<Loc> LV = V.getAs<Loc>()) {
298 if (Optional<Loc> LV = V.getAs<Loc>()) {
374 if (Optional<SVal> V = getObjectUnderConstruction(State, MT, LC)) {
473 Optional<SVal>
478 return Optional<SVal>::create(State->get<ObjectsUnderConstruction>(Key));
868 if (Optional<Loc> LValueLoc = LValue.getAs<Loc>())
1077 if (Optional<SVal> V =
1446 Optional<SVa
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/FuzzMutate/
H A DIRMutator.cpp10 #include "llvm/ADT/Optional.h"
95 Optional<fuzzerop::OpDescriptor>
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Passes/
H A DStandardInstrumentations.cpp16 #include "llvm/ADT/Optional.h"
34 Optional<std::pair<const Module *, std::string>> unwrapModule(Any IR) {
/freebsd-11-stable/contrib/llvm-project/clang/lib/Lex/
H A DMacroInfo.cpp21 #include "llvm/ADT/Optional.h"
181 Optional<bool> isPublic;
/freebsd-11-stable/contrib/llvm-project/clang/lib/ARCMigrate/
H A DInternals.h15 #include "llvm/ADT/Optional.h"
153 Optional<bool> EnableCFBridgeFns;
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DStdLibraryFunctionsChecker.cpp230 Optional<FunctionSummaryTy> findFunctionSummary(const FunctionDecl *FD,
349 Optional<FunctionSummaryTy> FoundSummary = findFunctionSummary(FD, CE, C);
380 Optional<FunctionSummaryTy> FoundSummary = findFunctionSummary(FD, CE, C);
431 Optional<StdLibraryFunctionsChecker::FunctionSummaryTy>
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DMemoryLocation.h19 #include "llvm/ADT/Optional.h"
36 // Optional<uint63_t> that also carries a bit to represent whether the integer
207 static Optional<MemoryLocation> getOrNone(const Instruction *Inst) {
H A DTargetTransformInfoImpl.h404 llvm::Optional<unsigned> getCacheSize(TargetTransformInfo::CacheLevel Level) const {
409 return llvm::Optional<unsigned>();
414 llvm::Optional<unsigned> getCacheAssociativity(
420 return llvm::Optional<unsigned>();
H A DMemorySSA.h272 Optional<AliasResult> getOptimizedAccessType() const {
296 void setOptimizedAccessType(Optional<AliasResult> AR) {
301 Optional<AliasResult> AR = MayAlias) {
312 Optional<AliasResult> OptimizedAccessAlias;
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/
H A DStringSwitch.h48 Optional<T> Result;
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-cov/
H A DSourceCoverageViewText.cpp15 #include "llvm/ADT/Optional.h"
104 Optional<raw_ostream::Colors> Highlight;
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFASTParserClang.h247 llvm::Optional<uint64_t> byte_size;
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DMachineInstr.h1449 /// @param AA Optional alias analysis, used to compare memory operands.
1489 Optional<unsigned> getSpillSize(const TargetInstrInfo *TII) const;
1492 Optional<unsigned> getFoldedSpillSize(const TargetInstrInfo *TII) const;
1495 Optional<unsigned> getRestoreSize(const TargetInstrInfo *TII) const;
1498 Optional<unsigned>
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/Symtab/
H A DSymbolFileSymtab.cpp237 llvm::Optional<SymbolFile::ArrayInfo>
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/
H A DExecutionUtils.h52 Optional<StringRef> ProgramName = None);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Language/ClangCommon/
H A DClangHighlighter.cpp133 llvm::Optional<size_t> cursor_pos,

Completed in 176 milliseconds

<<21222324252627282930>>