Searched refs:getValue (Results 1 - 25 of 748) sorted by relevance

1234567891011>>

/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/PDB/
H A DPDBSymbolCompilandEnv.cpp20 std::string PDBSymbolCompilandEnv::getValue() const { function in class:PDBSymbolCompilandEnv
21 Variant Value = RawSymbol->getValue();
/freebsd-11-stable/contrib/llvm-project/clang/utils/TableGen/
H A DClangDataCollectorsEmitter.cpp12 auto Code = R.getValue("Code")->getValue();
/freebsd-11-stable/contrib/llvm-project/lldb/utils/TableGen/
H A DLLDBPropertyDefEmitter.cpp43 OS << (Property->getValue("Global") ? "true" : "false");
46 bool hasDefaultUnsignedValue = Property->getValue("HasDefaultUnsignedValue");
47 bool hasDefaultEnumValue = Property->getValue("HasDefaultEnumValue");
48 bool hasDefaultStringValue = Property->getValue("HasDefaultStringValue");
62 !Property->getValue("HasDefaultBooleanValue")) &&
87 if (auto D = Property->getValue("DefaultStringValue")) {
89 OS << D->getValue()->getAsUnquotedString();
100 if (Property->getValue("EnumValues"))
107 if (auto D = Property->getValue("Description")) {
109 OS << D->getValue()
[all...]
H A DLLDBOptionDefEmitter.cpp40 if (Option->getValue("Groups")) {
45 } else if (Option->getValue("GroupStart")) {
55 Required = Option->getValue("Required");
61 if (auto A = Option->getValue("ArgType"))
62 ArgType = A->getValue()->getAsUnquotedString();
63 OptionalArg = Option->getValue("OptionalArg") != nullptr;
65 if (Option->getValue("Validator"))
68 if (Option->getValue("ArgEnum"))
71 if (Option->getValue("Completions"))
74 if (auto D = Option->getValue("Descriptio
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfStringPool.cpp50 if (!MapEntry.getValue().isIndexed())
51 MapEntry.getValue().Index = NumIndexedStrings++;
94 return A->getValue().Offset < B->getValue().Offset;
98 assert(ShouldCreateSymbols == static_cast<bool>(Entry->getValue().Symbol) &&
103 Asm.OutStreamer->EmitLabel(Entry->getValue().Symbol);
107 Twine(Entry->getValue().Offset));
118 if (Entry.getValue().isIndexed())
119 Entries[Entry.getValue().Index] = &Entry;
126 Asm.emitDwarfStringOffset(Entry->getValue());
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DBasicValueFactory.cpp83 I.getValue().~APSInt();
89 const llvm::APSInt& BasicValueFactory::getValue(const llvm::APSInt& X) { function in class:BasicValueFactory
107 const llvm::APSInt& BasicValueFactory::getValue(const llvm::APInt& X, function in class:BasicValueFactory
110 return getValue(V);
113 const llvm::APSInt& BasicValueFactory::getValue(uint64_t X, unsigned BitWidth, function in class:BasicValueFactory
117 return getValue(V);
120 const llvm::APSInt& BasicValueFactory::getValue(uint64_t X, QualType T) { function in class:BasicValueFactory
121 return getValue(getAPSIntType(T).getValue(X));
212 return &getValue( V
[all...]
H A DSVals.cpp197 return getValue()->begin();
201 return getValue()->end();
228 return LV->getValue() == I;
230 return NV->getValue() == I;
246 svalBuilder.getBasicValueFactory().evalAPSInt(Op, getValue(), R.getValue());
256 return svalBuilder.makeIntVal(~getValue());
261 return svalBuilder.makeIntVal(-getValue());
273 const llvm::APSInt *X = BasicVals.evalAPSInt(Op, getValue(), R.getValue());
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/
H A DPDBSymbolCompilandEnv.h26 std::string getValue() const;
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/PBQP/
H A DCostAllocator.h41 const ValueT &getValue() const { return Value; } function in class:llvm::PBQP::ValuePool::PoolEntry
62 return getHashValue(P->getValue());
66 return getHashValue(P->getValue());
78 return isEqual(C, P->getValue());
84 return isEqual(P1->getValue(), P2);
95 template <typename ValueKeyT> PoolRef getValue(ValueKeyT ValueKey) { function in class:llvm::PBQP::ValuePool
99 return PoolRef((*I)->shared_from_this(), &(*I)->getValue());
103 return PoolRef(std::move(P), &P->getValue());
119 return VectorPool.getValue(std::move(v));
123 return MatrixPool.getValue(st
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DStringPool.h87 if (S) ++S->getValue().Refcount;
91 if (S) ++S->getValue().Refcount;
98 if (S) ++S->getValue().Refcount;
106 if (--S->getValue().Refcount == 0) {
107 S->getValue().Pool->InternTable.remove(S);
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/
H A DWebAssemblyDisassemblerEmitter.cpp34 if (!Def.getValue("Inst"))
39 ->getValue());
49 Def.getValue("StackBased")->getValue()->getCastTo(StringRecTy::get());
52 reinterpret_cast<const StringInit *>(StackString)->getValue() == "true";
60 auto IsCanonicalExisting = CGIP.second->TheDef->getValue("IsCanonical")
61 ->getValue()
67 Def.getValue("IsCanonical")->getValue()->getAsString() == "1";
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DBasicValueFactory.h125 const llvm::APSInt& getValue(uint64_t X, unsigned BitWidth, bool isUnsigned);
136 const llvm::APSInt& getValue(const llvm::APSInt& X);
137 const llvm::APSInt& getValue(const llvm::APInt& X, bool isUnsigned);
138 const llvm::APSInt& getValue(uint64_t X, QualType T);
155 return getValue(TargetType.convert(From));
163 return getValue(TargetType.convert(From));
168 return getValue(X, T);
172 return getValue(APSIntType(v).getMaxValue());
176 return getValue(APSIntType(v).getMinValue());
180 return getValue(getAPSIntTyp
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/
H A DOptional.h72 T &getValue() LLVM_LVALUE_FUNCTION noexcept {
76 T const &getValue() const LLVM_LVALUE_FUNCTION noexcept {
81 T &&getValue() && noexcept {
172 T &getValue() LLVM_LVALUE_FUNCTION noexcept {
176 T const &getValue() const LLVM_LVALUE_FUNCTION noexcept {
181 T &&getValue() && noexcept {
253 const T *getPointer() const { return &Storage.getValue(); }
254 T *getPointer() { return &Storage.getValue(); }
255 const T &getValue() const LLVM_LVALUE_FUNCTION { return Storage.getValue(); }
279 T &&getValue() && { return std::move(Storage.getValue()); } function in class:llvm::Optional
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Tooling/Refactoring/
H A DRefactoringOptions.h35 const ValueType &getValue() const { return Value; } function in class:clang::tooling::OptionalRefactoringOption
48 const ValueType &getValue() const { function in class:clang::tooling::RequiredRefactoringOption
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/
H A DOptionUtils.cpp24 if (StringRef(A->getValue()).getAsInteger(Base, Res)) {
27 << A->getAsString(Args) << A->getValue();
/freebsd-11-stable/contrib/llvm-project/lld/Common/
H A DArgs.cpp36 if (to_integer(a->getValue(), v, 10))
40 error(spelling + ": number expected, but got '" + a->getValue() + "'");
47 v.push_back(arg->getValue());
54 std::pair<StringRef, StringRef> kv = StringRef(arg->getValue()).split('=');
/freebsd-11-stable/contrib/llvm-project/lld/lib/Core/
H A DFile.cpp25 return _lastError.getValue();
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/
H A DStringPool.cpp30 S->getValue().Pool = this;
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCSymbolWasm.h76 return ImportModule.getValue();
85 return ImportName.getValue();
92 const StringRef getExportName() const { return ExportName.getValue(); }
103 return GlobalType.getValue();
109 return EventType.getValue();
/freebsd-11-stable/contrib/llvm-project/clang/lib/Rewrite/
H A DDeltaTree.cpp95 const SourceDelta &getValue(unsigned i) const { function in class:__anon678::DeltaTreeNode
100 SourceDelta &getValue(unsigned i) {
191 while (i != e && FileIndex > getValue(i).FileLoc)
196 if (i != e && getValue(i).FileLoc == FileIndex) {
276 while (i != e && SubSplit.FileLoc > InsertSide->getValue(i).FileLoc)
353 assert(N->getValue(i-1).FileLoc < N->getValue(i).FileLoc);
354 FullDelta += N->getValue(i).Delta;
364 const SourceDelta &IVal = N->getValue(i);
367 assert(IN->getValue(
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DSwitchLoweringUtils.cpp23 const APInt &LowCase = Clusters[First].Low->getValue();
24 const APInt &HighCase = Clusters[Last].High->getValue();
54 assert(Clusters[i - 1].High->getValue().slt(Clusters[i].Low->getValue()));
72 const APInt &Hi = Clusters[i].High->getValue();
73 const APInt &Lo = Clusters[i].Low->getValue();
206 const APInt &Low = Clusters[I].Low->getValue();
207 const APInt &High = Clusters[I].High->getValue();
211 const APInt &PreviousHigh = Clusters[I - 1].High->getValue();
225 Clusters[First].Low->getValue(),
[all...]
/freebsd-11-stable/contrib/llvm-project/lld/lib/Driver/
H A DDarwinLdDriver.cpp367 arch = MachOLinkingContext::archFromName(archStr->getValue());
369 error("unknown arch named '" + Twine(archStr->getValue()) + "'");
378 if (MachOLinkingContext::isThinObjectFile(inFile->getValue(), arch))
404 if (MachOLinkingContext::parsePackedVersion(minOS->getValue(),
412 if (MachOLinkingContext::parsePackedVersion(minOS->getValue(),
420 if (MachOLinkingContext::parsePackedVersion(minOS->getValue(),
444 ctx.setEntrySymbolName(entry->getValue());
448 ctx.setOutputPath(outpath->getValue());
455 if (parseNumberBase16(imageBase->getValue(), baseAddress)) {
481 ctx.setInstallName(installName->getValue());
[all...]
/freebsd-11-stable/contrib/llvm-project/lld/COFF/
H A DDriver.cpp102 StringRef s = arg->getValue();
372 parseAligncomm(arg->getValue());
375 parseAlternateName(arg->getValue());
378 if (Optional<StringRef> path = findLib(arg->getValue()))
382 config->entry = addUndefined(mangle(arg->getValue()));
385 checkFailIfMismatch(arg->getValue(), file);
388 addUndefined(arg->getValue());
391 parseMerge(arg->getValue());
394 config->noDefaultLibs.insert(doFindLib(arg->getValue()).lower());
397 parseSection(arg->getValue());
[all...]
/freebsd-11-stable/contrib/llvm-project/lld/ELF/
H A DScriptParser.cpp151 return {a.sec, a.forceAbsolute, a.getSectionOffset() + b.getValue(), a.loc};
157 return a.getValue() - b.getValue();
158 return {a.sec, false, a.getSectionOffset() - b.getValue(), a.loc};
164 (a.getValue() & b.getValue()) - a.getSecAddr(), a.loc};
170 (a.getValue() | b.getValue()) - a.getSecAddr(), a.loc};
447 cmd.flags = readParenExpr()().getValue();
515 return addrExpr().getValue()
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/
H A DSymbolStringPool.h59 ++S->getValue();
64 --S->getValue();
67 ++S->getValue();
77 --S->getValue();
85 --S->getValue();
111 ++S->getValue();

Completed in 279 milliseconds

1234567891011>>