Home
last modified time | relevance | path

Searched defs:insert (Results 1 – 25 of 165) sorted by relevance

1234567

/llvm-project-15.0.7/llvm/include/llvm/ADT/
H A DStringSet.h34 std::pair<typename Base::iterator, bool> insert(StringRef key) { in insert() function
39 void insert(const InputIt &begin, const InputIt &end) { in insert() function
46 insert(const StringMapEntry<ValueTy> &mapEntry) { in insert() function
H A DPriorityWorklist.h90 bool insert(const T &X) { in insert() function
113 insert(SequenceT &&Input) { in insert() function
H A DSmallSet.h182 std::pair<NoneType, bool> insert(const T &V) { in insert() function
204 void insert(IterT I, IterT E) { in insert() function
H A DStringMap.h275 bool insert(MapEntryTy *KeyValue) { in insert() function
295 std::pair<iterator, bool> insert(std::pair<StringRef, ValueTy> KV) { in insert() function
302 template <typename InputIt> void insert(InputIt First, InputIt Last) { in insert() function
310 void insert(std::initializer_list<std::pair<StringRef, ValueTy>> List) { in insert() function
H A DDenseSet.h206 std::pair<iterator, bool> insert(const ValueT &V) { in insert() function
211 std::pair<iterator, bool> insert(ValueT &&V) { in insert() function
230 void insert(InputIt I, InputIt E) { in insert() function
H A DUniqueVector.h40 unsigned insert(const T &Entry) { in insert() function
/llvm-project-15.0.7/libcxx/test/support/
H A Dnasty_containers.h101 iterator insert(const_iterator pos, const value_type& x) { return v_.insert(pos, x); } in insert() function
103 …iterator insert(const_iterator pos, value_type&& x) { return v_.insert(pos, std::forward<valu… in insert() function
105 …iterator insert(const_iterator pos, size_type n, const value_type& x) { return v_.insert(pos, n, x… in insert() function
107 iterator insert(const_iterator pos, InputIterator first, InputIterator last) in insert() function
111 …iterator insert(const_iterator pos, std::initializer_list<value_type> il) { return v_.insert(pos, … in insert() function
223 iterator insert(const_iterator pos, const value_type& x) { return l_.insert(pos, x); } in insert() function
225 …iterator insert(const_iterator pos, value_type&& x) { return l_.insert(pos, std::forward<valu… in insert() function
227 …iterator insert(const_iterator pos, size_type n, const value_type& x) { return l_.insert(pos, n, x… in insert() function
229 iterator insert(const_iterator pos, InputIterator first, InputIterator last) in insert() function
233 …iterator insert(const_iterator pos, std::initializer_list<value_type> il) { return l_.insert(pos, … in insert() function
H A Dtest_constexpr_container.h40 constexpr iterator insert(const_iterator pos, T t) { in insert() function
/llvm-project-15.0.7/clang/include/clang/Analysis/FlowSensitive/
H A DMapLattice.h58 insert(const std::pair<const key_type, mapped_type> &P) { in insert() function
62 std::pair<iterator, bool> insert(std::pair<const key_type, mapped_type> &&P) { in insert() function
/llvm-project-15.0.7/mlir/include/mlir/IR/
H A DDialectRegistry.h116 void insert() { in insert() function
128 void insert() { in insert() function
/llvm-project-15.0.7/clang/lib/Tooling/
H A DFileMatchTrie.cpp59 void insert(StringRef NewPath, unsigned ConsumedLength = 0) { in insert() function in clang::tooling::FileMatchTrieNode
192 void FileMatchTrie::insert(StringRef NewPath) { in insert() function in FileMatchTrie
/llvm-project-15.0.7/clang/include/clang/Serialization/
H A DContinuousRangeMap.h66 void insert(const value_type &Val) { in insert() function
134 void insert(const value_type &Val) { in insert() function
/llvm-project-15.0.7/mlir/include/mlir/Dialect/Vector/Transforms/
H A DVectorTransforms.h70 InsertMapOp insert; member
/llvm-project-15.0.7/flang/include/flang/Common/
H A Denum-set.h177 void insert(enumerationType x) { set(x); } in insert() function
178 void insert(enumerationType &&x) { set(x); } in insert() function
/llvm-project-15.0.7/llvm/include/llvm/XRay/
H A DGraph.h448 insert(const std::pair<VertexIdentifier, VertexAttribute> &Val) { in insert() function
453 insert(std::pair<VertexIdentifier, VertexAttribute> &&Val) { in insert() function
461 insert(const std::pair<EdgeIdentifier, EdgeAttribute> &Val) { in insert() function
478 insert(std::pair<EdgeIdentifier, EdgeAttribute> &&Val) { in insert() function
/llvm-project-15.0.7/llvm/include/llvm/IR/
H A DValueMap.h173 std::pair<iterator, bool> insert(const std::pair<KeyT, ValueT> &KV) { in insert() function
178 std::pair<iterator, bool> insert(std::pair<KeyT, ValueT> &&KV) { in insert() function
186 void insert(InputIt I, InputIt E) { in insert() function
/llvm-project-15.0.7/llvm/lib/Support/
H A DAddressRanges.cpp16 AddressRanges::insert(AddressRange Range) { in insert() function in AddressRanges
H A DTrigramIndex.cpp29 void TrigramIndex::insert(const std::string &Regex) { in insert() function in TrigramIndex
/llvm-project-15.0.7/lldb/source/Utility/
H A DEnvironment.cpp44 void Environment::insert(iterator first, iterator last) { in insert() function in Environment
/llvm-project-15.0.7/mlir/lib/Support/
H A DInterfaceSupport.cpp29 void detail::InterfaceMap::insert( in insert() function in detail::InterfaceMap
/llvm-project-15.0.7/clang/include/clang/ARCMigrate/
H A DARCMT.h117 virtual void insert(SourceLocation loc, StringRef text) { } in insert() function
/llvm-project-15.0.7/clang/lib/Rewrite/
H A DRewriteRope.cpp276 RopePieceBTreeNode *RopePieceBTreeLeaf::insert(unsigned Offset, in insert() function in RopePieceBTreeLeaf
503 RopePieceBTreeNode *RopePieceBTreeInterior::insert(unsigned Offset, in insert() function in RopePieceBTreeInterior
646 RopePieceBTreeNode *RopePieceBTreeNode::insert(unsigned Offset, in insert() function in RopePieceBTreeNode
747 void RopePieceBTree::insert(unsigned Offset, const RopePiece &R) { in insert() function in RopePieceBTree
/llvm-project-15.0.7/libcxx/test/std/iterators/predef.iterators/insert.iterators/insert.iterator/
H A Dcxx20_iter_member.pass.cpp34 constexpr double *insert(double *pos, T value) { in insert() function
/llvm-project-15.0.7/llvm/include/llvm/Support/
H A DSymbolRemappingReader.h113 Key insert(StringRef FunctionName) { in insert() function
/llvm-project-15.0.7/llvm/include/llvm/CodeGen/GlobalISel/
H A DGISelWorkList.h74 void insert(MachineInstr *I) { in insert() function

1234567