Searched refs:getFirst (Results 1 - 25 of 29) sorted by relevance

12

/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
H A DTypeCollection.h25 virtual Optional<TypeIndex> getFirst() = 0;
35 Optional<TypeIndex> Next = getFirst();
H A DTypeTableCollection.h24 Optional<TypeIndex> getFirst() override;
H A DAppendingTypeTableBuilder.h42 Optional<TypeIndex> getFirst() override;
H A DMergingTypeTableBuilder.h51 Optional<TypeIndex> getFirst() override;
H A DLazyRandomTypeCollection.h80 Optional<TypeIndex> getFirst() override;
H A DGlobalTypeTableBuilder.h54 Optional<TypeIndex> getFirst() override;
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/ADT/
H A DDenseMap.h43 KeyT &getFirst() { return std::pair<KeyT, ValueT>::first; } function in struct:llvm::detail::DenseMapPair
44 const KeyT &getFirst() const { return std::pair<KeyT, ValueT>::first; } function in struct:llvm::detail::DenseMapPair
126 P->getFirst() = EmptyKey;
130 if (!KeyInfoT::isEqual(P->getFirst(), EmptyKey)) {
131 if (!KeyInfoT::isEqual(P->getFirst(), TombstoneKey)) {
135 P->getFirst() = EmptyKey;
278 TheBucket->getFirst() = getTombstoneKey();
286 TheBucket->getFirst() = getTombstoneKey();
336 if (!KeyInfoT::isEqual(P->getFirst(), EmptyKey) &&
337 !KeyInfoT::isEqual(P->getFirst(), TombstoneKe
[all...]
H A DDenseSet.h38 KeyT &getFirst() { return key; } function in class:llvm::detail::DenseSetPair
39 const KeyT &getFirst() const { return key; } function in class:llvm::detail::DenseSetPair
120 ValueT &operator*() { return I->getFirst(); }
121 const ValueT &operator*() const { return I->getFirst(); }
122 ValueT *operator->() { return &I->getFirst(); }
123 const ValueT *operator->() const { return &I->getFirst(); }
147 const ValueT &operator*() const { return I->getFirst(); }
148 const ValueT *operator->() const { return &I->getFirst(); }
H A DAPFloat.h623 APFloat &getFirst() { return Floats[0]; } function in class:llvm::detail::final
624 const APFloat &getFirst() const { return Floats[0]; } function in class:llvm::detail::final
799 return U.Double.getFirst().U.IEEE;
807 return U.Double.getFirst().U.IEEE;
/freebsd-12-stable/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/
H A DTypeTableCollection.cpp23 Optional<TypeIndex> TypeTableCollection::getFirst() { function in class:TypeTableCollection
H A DAppendingTypeTableBuilder.cpp39 Optional<TypeIndex> AppendingTypeTableBuilder::getFirst() { function in class:AppendingTypeTableBuilder
H A DGlobalTypeTableBuilder.cpp41 Optional<TypeIndex> GlobalTypeTableBuilder::getFirst() { function in class:GlobalTypeTableBuilder
H A DMergingTypeTableBuilder.cpp41 Optional<TypeIndex> MergingTypeTableBuilder::getFirst() { function in class:MergingTypeTableBuilder
H A DLazyRandomTypeCollection.cpp204 Optional<TypeIndex> LazyRandomTypeCollection::getFirst() { function in class:LazyRandomTypeCollection
H A DCVTypeVisitor.cpp159 Optional<TypeIndex> I = Types.getFirst();
/freebsd-12-stable/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/
H A DNativeEnumTypes.cpp27 Optional<TypeIndex> TI = Types.getFirst();
/freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DSafeStackColoring.cpp143 ProcessMarker(BlockMarkerSet.begin()->getFirst(),
207 BasicBlock *BB = IT.getFirst();
264 BasicBlock *BB = IT.getFirst();
H A DSafeStackLayout.cpp37 OS << " at " << IT.getSecond() << ": " << *IT.getFirst() << "\n";
/freebsd-12-stable/contrib/llvm-project/llvm/tools/llvm-pdbutil/
H A DTypeReferenceTracker.cpp25 for (Optional<TypeIndex> TI = Types.getFirst(); TI; TI = Types.getNext(*TI))
H A DDumpOutputStyle.cpp705 for (Optional<TypeIndex> TI = Types.getFirst(); TI; TI = Types.getNext(*TI)) {
1622 for (Optional<TypeIndex> TI = Types.getFirst(); TI; TI = Types.getNext(*TI)) {
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DSLPVectorizer.cpp624 return makeArrayRef(I->getFirst());
2331 Value *Undef = UndefValue::get(Pair.getFirst()->getType());
2332 Pair.getFirst()->replaceAllUsesWith(Undef);
2334 Pair.getFirst()->dropAllReferences();
2337 assert(Pair.getFirst()->use_empty() &&
2339 Pair.getFirst()->eraseFromParent();
2636 StoredCurrentOrderAndNum->getFirst());
2717 ReuseShuffleIndicies, I->getFirst());
2980 ReuseShuffleIndicies, I->getFirst());
/freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/
H A DPdbAstBuilder.cpp284 for (auto ti = types.getFirst(); ti; ti = types.getNext(*ti)) {
H A DSymbolFileNativePDB.cpp1284 for (auto ti = types.getFirst(); ti; ti = types.getNext(*ti)) {
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DSampleProfile.cpp1081 Instruction *I = Pair.getFirst();
/freebsd-12-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGOpenMPRuntimeNVPTX.cpp2093 assert(Pair.getFirst()->isCanonicalDecl() &&
2095 Data.insert(std::make_pair(Pair.getFirst(),

Completed in 397 milliseconds

12