Home
last modified time | relevance | path

Searched refs:getFirst (Results 1 – 25 of 43) sorted by relevance

12

/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_dense_map.h54 P->getFirst() = EmptyKey; in clear()
58 if (!KeyInfoT::isEqual(P->getFirst(), EmptyKey)) { in clear()
59 if (!KeyInfoT::isEqual(P->getFirst(), TombstoneKey)) { in clear()
63 P->getFirst() = EmptyKey; in clear()
175 TheBucket->getFirst() = getTombstoneKey(); in erase()
185 TheBucket->getFirst() = getTombstoneKey(); in erase()
219 const KeyT K = P->getFirst(); in forEach()
243 if (!KeyInfoT::isEqual(P->getFirst(), EmptyKey) && in destroyAll()
244 !KeyInfoT::isEqual(P->getFirst(), TombstoneKey)) in destroyAll()
246 P->getFirst().~KeyT(); in destroyAll()
[all …]
H A Dsanitizer_dense_map_info.h54 KeyT &getFirst() { return first; } in getFirst() function
55 const KeyT &getFirst() const { return first; } in getFirst() function
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DDenseMap.h47 KeyT &getFirst() { return std::pair<KeyT, ValueT>::first; } in getFirst() function
48 const KeyT &getFirst() const { return std::pair<KeyT, ValueT>::first; } in getFirst() function
102 return map_range(*this, [](const BucketT &P) { return P.getFirst(); }); in keys()
111 return map_range(*this, [](const BucketT &P) { return P.getFirst(); }); in keys()
146 P->getFirst() = EmptyKey; in clear()
151 if (!KeyInfoT::isEqual(P->getFirst(), EmptyKey)) { in clear()
152 if (!KeyInfoT::isEqual(P->getFirst(), TombstoneKey)) { in clear()
156 P->getFirst() = EmptyKey; in clear()
378 TheBucket->getFirst() = getTombstoneKey(); in erase()
386 TheBucket->getFirst() = getTombstoneKey(); in erase()
[all …]
H A DDenseSet.h40 KeyT &getFirst() { return key; } in getFirst() function
41 const KeyT &getFirst() const { return key; } in getFirst() function
126 ValueT &operator*() { return I->getFirst(); }
127 const ValueT &operator*() const { return I->getFirst(); }
128 ValueT *operator->() { return &I->getFirst(); }
129 const ValueT *operator->() const { return &I->getFirst(); }
164 const ValueT &operator*() const { return I->getFirst(); }
165 const ValueT *operator->() const { return &I->getFirst(); }
H A DAPFloat.h844 inline APFloat &getFirst();
845 inline const APFloat &getFirst() const;
1034 return U.Double.getFirst().U.IEEE; in getIEEE()
1042 return U.Double.getFirst().U.IEEE; in getIEEE()
1680 APFloat &DoubleAPFloat::getFirst() { return Floats[0]; } in getFirst() function
1681 const APFloat &DoubleAPFloat::getFirst() const { return Floats[0]; } in getFirst() function
/freebsd/contrib/llvm-project/clang/lib/Analysis/
H A DMacroExpansionContext.cpp67 It->getFirst().print(llvm::dbgs(), SM); llvm::dbgs() << " to "; in MacroExpands()
74 llvm::dbgs() << "remaps "; It->getFirst().print(llvm::dbgs(), SM); in MacroExpands()
127 assert(It->getFirst() != It->getSecond() && in getOriginalText()
131 CharSourceRange::getCharRange(It->getFirst(), It->getSecond()), *SM, in getOriginalText()
147 std::make_pair(Record.getFirst(), Record.getSecond())); in dumpExpansionRangesToStream()
166 std::make_pair(Record.getFirst(), Record.getSecond())); in dumpExpandedTextsToStream()
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
H A DTypeCollection.h24 virtual std::optional<TypeIndex> getFirst() = 0;
35 std::optional<TypeIndex> Next = getFirst(); in ForEachRecord()
H A DTypeTableCollection.h25 std::optional<TypeIndex> getFirst() override;
H A DAppendingTypeTableBuilder.h40 std::optional<TypeIndex> getFirst() override;
H A DMergingTypeTableBuilder.h49 std::optional<TypeIndex> getFirst() override;
H A DLazyRandomTypeCollection.h79 std::optional<TypeIndex> getFirst() override;
H A DGlobalTypeTableBuilder.h53 std::optional<TypeIndex> getFirst() override;
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DStackLifetime.cpp155 ProcessMarker(BlockMarkerSet.begin()->getFirst(), in collectMarkers()
246 const BasicBlock *BB = IT.getFirst(); in calculateLiveIntervals()
301 const BasicBlock *BB = IT.getFirst(); in dumpBlockLiveness()
364 Names.push_back(KV.getFirst()->getName()); in printInstrAlive()
385 if (SL.isAliveAfter(KV.getFirst(), Instr)) in printInfoComment()
386 Names.push_back(KV.getFirst()->getName()); in printInfoComment()
/freebsd/contrib/llvm-project/clang/lib/Basic/
H A DDarwinSDKInfo.cpp49 if (KeyVersion.tryParse(KV.getFirst()) || ValueVersion.tryParse(*Val)) in parseJSON()
116 auto Pair = StringRef(KV.getFirst()).split("_"); in parseDarwinSDKSettingsJSON()
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/
H A DTypeTableCollection.cpp23 std::optional<TypeIndex> TypeTableCollection::getFirst() { in getFirst() function in TypeTableCollection
H A DAppendingTypeTableBuilder.cpp31 std::optional<TypeIndex> AppendingTypeTableBuilder::getFirst() { in getFirst() function in AppendingTypeTableBuilder
H A DGlobalTypeTableBuilder.cpp33 std::optional<TypeIndex> GlobalTypeTableBuilder::getFirst() { in getFirst() function in GlobalTypeTableBuilder
H A DMergingTypeTableBuilder.cpp34 std::optional<TypeIndex> MergingTypeTableBuilder::getFirst() { in getFirst() function in MergingTypeTableBuilder
H A DLazyRandomTypeCollection.cpp200 std::optional<TypeIndex> LazyRandomTypeCollection::getFirst() { in getFirst() function in LazyRandomTypeCollection
H A DCVTypeVisitor.cpp160 std::optional<TypeIndex> I = Types.getFirst(); in visitTypeStream()
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/
H A DNativeEnumTypes.cpp28 std::optional<TypeIndex> TI = Types.getFirst(); in NativeEnumTypes()
/freebsd/contrib/llvm-project/llvm/tools/llvm-pdbutil/
H A DTypeReferenceTracker.cpp27 for (std::optional<TypeIndex> TI = Types.getFirst(); TI; in getNumRecordsInCollection()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DSafeStackLayout.cpp35 OS << " at " << IT.getSecond() << ": " << *IT.getFirst() << "\n"; in print()
/freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonCopyHoisting.cpp171 std::pair<Register, Register> Key = II.getFirst(); in analyzeCopy()
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/TargetProcess/
H A DExecutorSharedMemoryMapperService.cpp317 ReservationAddrs.push_back(ExecutorAddr::fromPtr(R.getFirst())); in shutdown()

12