HomeSort by relevance Sort by last modified time
    Searched defs:insert (Results 1001 - 1025 of 1909) sorted by null

<<41424344454647484950>>

  /prebuilts/clang/host/linux-x86/clang-4579689/include/llvm/ADT/
SmallVector.h 482 iterator insert(iterator I, T &&Elt) { function in class:llvm::SmallVectorImpl
512 iterator insert(iterator I, const T &Elt) { function in class:llvm::SmallVectorImpl
541 iterator insert(iterator I, size_type NumToInsert, const T &Elt) { function in class:llvm::SmallVectorImpl
587 // Insert the non-overwritten middle part.
596 iterator insert(iterator I, ItTy From, ItTy To) { function in class:llvm::SmallVectorImpl
647 // Insert the non-overwritten middle part.
652 void insert(iterator I, std::initializer_list<T> IL) { function in class:llvm::SmallVectorImpl
653 insert(I, IL.begin(), IL.end());
StringMap.h 245 insert(P);
367 /// insert - Insert the specified key/value pair into the map. If the key
369 /// insert it and return true.
370 bool insert(MapEntryTy *KeyValue) { function in class:llvm::StringMap
386 /// insert - Inserts the specified key/value pair into the map if the key
390 std::pair<iterator, bool> insert(std::pair<StringRef, ValueTy> KV) { function in class:llvm::StringMap
ilist.h 241 iterator insert(iterator where, pointer New) { function in class:llvm::iplist_impl
243 return base_list_type::insert(where, *New);
246 iterator insert(iterator where, const_reference New) { function in class:llvm::iplist_impl
247 return this->insert(where, new value_type(New));
252 return insert(begin(), New);
254 return insert(++where, New);
325 void push_front(pointer val) { insert(begin(), val); }
326 void push_back(pointer val) { insert(end(), val); }
336 // Special forms of insert...
337 template<class InIt> void insert(iterator where, InIt first, InIt last) function in class:llvm::iplist_impl
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4579689/include/llvm/CodeGen/
MachineInstrBuilder.h 308 BB.insert(I, MI);
324 BB.insert(I, MI);
353 BB.insert(I, MI);
363 BB.insert(I, MI);
507 /// Insert MI into this bundle before I which must point to an instruction in
509 MIBundleBuilder &insert(MachineBasicBlock::instr_iterator I, function in class:llvm::MIBundleBuilder
511 MBB.insert(I, MI);
529 /// Insert MI into MBB by prepending it to the instructions in the bundle.
532 return insert(begin(), MI);
535 /// Insert MI into MBB by appending it to the instructions in the bundle
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4579689/include/llvm/IR/
ValueMap.h 175 std::pair<iterator, bool> insert(const std::pair<KeyT, ValueT> &KV) { function in class:llvm::ValueMap
176 auto MapResult = Map.insert(std::make_pair(Wrap(KV.first), KV.second));
180 std::pair<iterator, bool> insert(std::pair<KeyT, ValueT> &&KV) { function in class:llvm::ValueMap
182 Map.insert(std::make_pair(Wrap(KV.first), std::move(KV.second)));
186 /// insert - Range insertion of pairs.
188 void insert(InputIt I, InputIt E) { function in class:llvm::ValueMap
190 insert(*I);
293 Copy.Map->insert(std::make_pair(typed_new_key, std::move(Target)));
  /prebuilts/clang/host/linux-x86/clang-4630689/include/llvm/ADT/
SmallVector.h 482 iterator insert(iterator I, T &&Elt) { function in class:llvm::SmallVectorImpl
512 iterator insert(iterator I, const T &Elt) { function in class:llvm::SmallVectorImpl
541 iterator insert(iterator I, size_type NumToInsert, const T &Elt) { function in class:llvm::SmallVectorImpl
587 // Insert the non-overwritten middle part.
596 iterator insert(iterator I, ItTy From, ItTy To) { function in class:llvm::SmallVectorImpl
647 // Insert the non-overwritten middle part.
652 void insert(iterator I, std::initializer_list<T> IL) { function in class:llvm::SmallVectorImpl
653 insert(I, IL.begin(), IL.end());
StringMap.h 245 insert(P);
367 /// insert - Insert the specified key/value pair into the map. If the key
369 /// insert it and return true.
370 bool insert(MapEntryTy *KeyValue) { function in class:llvm::StringMap
386 /// insert - Inserts the specified key/value pair into the map if the key
390 std::pair<iterator, bool> insert(std::pair<StringRef, ValueTy> KV) { function in class:llvm::StringMap
ilist.h 241 iterator insert(iterator where, pointer New) { function in class:llvm::iplist_impl
243 return base_list_type::insert(where, *New);
246 iterator insert(iterator where, const_reference New) { function in class:llvm::iplist_impl
247 return this->insert(where, new value_type(New));
252 return insert(begin(), New);
254 return insert(++where, New);
325 void push_front(pointer val) { insert(begin(), val); }
326 void push_back(pointer val) { insert(end(), val); }
336 // Special forms of insert...
337 template<class InIt> void insert(iterator where, InIt first, InIt last) function in class:llvm::iplist_impl
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4630689/include/llvm/CodeGen/
MachineInstrBuilder.h 308 BB.insert(I, MI);
324 BB.insert(I, MI);
353 BB.insert(I, MI);
363 BB.insert(I, MI);
507 /// Insert MI into this bundle before I which must point to an instruction in
509 MIBundleBuilder &insert(MachineBasicBlock::instr_iterator I, function in class:llvm::MIBundleBuilder
511 MBB.insert(I, MI);
529 /// Insert MI into MBB by prepending it to the instructions in the bundle.
532 return insert(begin(), MI);
535 /// Insert MI into MBB by appending it to the instructions in the bundle
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4630689/include/llvm/IR/
ValueMap.h 175 std::pair<iterator, bool> insert(const std::pair<KeyT, ValueT> &KV) { function in class:llvm::ValueMap
176 auto MapResult = Map.insert(std::make_pair(Wrap(KV.first), KV.second));
180 std::pair<iterator, bool> insert(std::pair<KeyT, ValueT> &&KV) { function in class:llvm::ValueMap
182 Map.insert(std::make_pair(Wrap(KV.first), std::move(KV.second)));
186 /// insert - Range insertion of pairs.
188 void insert(InputIt I, InputIt E) { function in class:llvm::ValueMap
190 insert(*I);
293 Copy.Map->insert(std::make_pair(typed_new_key, std::move(Target)));
  /prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/ADT/
SmallVector.h 482 iterator insert(iterator I, T &&Elt) { function in class:llvm::SmallVectorImpl
512 iterator insert(iterator I, const T &Elt) { function in class:llvm::SmallVectorImpl
541 iterator insert(iterator I, size_type NumToInsert, const T &Elt) { function in class:llvm::SmallVectorImpl
587 // Insert the non-overwritten middle part.
596 iterator insert(iterator I, ItTy From, ItTy To) { function in class:llvm::SmallVectorImpl
647 // Insert the non-overwritten middle part.
652 void insert(iterator I, std::initializer_list<T> IL) { function in class:llvm::SmallVectorImpl
653 insert(I, IL.begin(), IL.end());
StringMap.h 245 insert(P);
367 /// insert - Insert the specified key/value pair into the map. If the key
369 /// insert it and return true.
370 bool insert(MapEntryTy *KeyValue) { function in class:llvm::StringMap
386 /// insert - Inserts the specified key/value pair into the map if the key
390 std::pair<iterator, bool> insert(std::pair<StringRef, ValueTy> KV) { function in class:llvm::StringMap
ilist.h 241 iterator insert(iterator where, pointer New) { function in class:llvm::iplist_impl
243 return base_list_type::insert(where, *New);
246 iterator insert(iterator where, const_reference New) { function in class:llvm::iplist_impl
247 return this->insert(where, new value_type(New));
252 return insert(begin(), New);
254 return insert(++where, New);
325 void push_front(pointer val) { insert(begin(), val); }
326 void push_back(pointer val) { insert(end(), val); }
336 // Special forms of insert...
337 template<class InIt> void insert(iterator where, InIt first, InIt last) function in class:llvm::iplist_impl
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/CodeGen/
MachineInstrBuilder.h 308 BB.insert(I, MI);
324 BB.insert(I, MI);
353 BB.insert(I, MI);
363 BB.insert(I, MI);
507 /// Insert MI into this bundle before I which must point to an instruction in
509 MIBundleBuilder &insert(MachineBasicBlock::instr_iterator I, function in class:llvm::MIBundleBuilder
511 MBB.insert(I, MI);
529 /// Insert MI into MBB by prepending it to the instructions in the bundle.
532 return insert(begin(), MI);
535 /// Insert MI into MBB by appending it to the instructions in the bundle
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/IR/
ValueMap.h 175 std::pair<iterator, bool> insert(const std::pair<KeyT, ValueT> &KV) { function in class:llvm::ValueMap
176 auto MapResult = Map.insert(std::make_pair(Wrap(KV.first), KV.second));
180 std::pair<iterator, bool> insert(std::pair<KeyT, ValueT> &&KV) { function in class:llvm::ValueMap
182 Map.insert(std::make_pair(Wrap(KV.first), std::move(KV.second)));
186 /// insert - Range insertion of pairs.
188 void insert(InputIt I, InputIt E) { function in class:llvm::ValueMap
190 insert(*I);
293 Copy.Map->insert(std::make_pair(typed_new_key, std::move(Target)));
  /prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/ADT/
SmallVector.h 482 iterator insert(iterator I, T &&Elt) { function in class:llvm::SmallVectorImpl
512 iterator insert(iterator I, const T &Elt) { function in class:llvm::SmallVectorImpl
541 iterator insert(iterator I, size_type NumToInsert, const T &Elt) { function in class:llvm::SmallVectorImpl
587 // Insert the non-overwritten middle part.
596 iterator insert(iterator I, ItTy From, ItTy To) { function in class:llvm::SmallVectorImpl
647 // Insert the non-overwritten middle part.
652 void insert(iterator I, std::initializer_list<T> IL) { function in class:llvm::SmallVectorImpl
653 insert(I, IL.begin(), IL.end());
StringMap.h 245 insert(P);
367 /// insert - Insert the specified key/value pair into the map. If the key
369 /// insert it and return true.
370 bool insert(MapEntryTy *KeyValue) { function in class:llvm::StringMap
386 /// insert - Inserts the specified key/value pair into the map if the key
390 std::pair<iterator, bool> insert(std::pair<StringRef, ValueTy> KV) { function in class:llvm::StringMap
ilist.h 241 iterator insert(iterator where, pointer New) { function in class:llvm::iplist_impl
243 return base_list_type::insert(where, *New);
246 iterator insert(iterator where, const_reference New) { function in class:llvm::iplist_impl
247 return this->insert(where, new value_type(New));
252 return insert(begin(), New);
254 return insert(++where, New);
325 void push_front(pointer val) { insert(begin(), val); }
326 void push_back(pointer val) { insert(end(), val); }
336 // Special forms of insert...
337 template<class InIt> void insert(iterator where, InIt first, InIt last) function in class:llvm::iplist_impl
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/CodeGen/
MachineInstrBuilder.h 308 BB.insert(I, MI);
324 BB.insert(I, MI);
353 BB.insert(I, MI);
363 BB.insert(I, MI);
507 /// Insert MI into this bundle before I which must point to an instruction in
509 MIBundleBuilder &insert(MachineBasicBlock::instr_iterator I, function in class:llvm::MIBundleBuilder
511 MBB.insert(I, MI);
529 /// Insert MI into MBB by prepending it to the instructions in the bundle.
532 return insert(begin(), MI);
535 /// Insert MI into MBB by appending it to the instructions in the bundle
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/IR/
ValueMap.h 175 std::pair<iterator, bool> insert(const std::pair<KeyT, ValueT> &KV) { function in class:llvm::ValueMap
176 auto MapResult = Map.insert(std::make_pair(Wrap(KV.first), KV.second));
180 std::pair<iterator, bool> insert(std::pair<KeyT, ValueT> &&KV) { function in class:llvm::ValueMap
182 Map.insert(std::make_pair(Wrap(KV.first), std::move(KV.second)));
186 /// insert - Range insertion of pairs.
188 void insert(InputIt I, InputIt E) { function in class:llvm::ValueMap
190 insert(*I);
293 Copy.Map->insert(std::make_pair(typed_new_key, std::move(Target)));
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/bits/
stl_vector.h 687 insert(end(), __new_size - size(), __x);
707 insert(end(), __new_size - size(), __x);
950 * This function will insert an object of type T constructed
967 * This function will insert a copy of the given value before
988 insert(iterator __position, value_type&& __x) function in class:vector
1005 insert(iterator __position, initializer_list<value_type> __l) function in class:vector
1023 insert(iterator __position, size_type __n, const value_type& __x) function in class:vector
1044 insert(iterator __position, _InputIterator __first, function in class:vector
1050 insert(iterator __position, _InputIterator __first, function in class:vector
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/cc_hash_table_map_/
cc_ht_map_.hpp 310 insert(const_reference r_val) function in class:__gnu_pbds::detail::PB_DS_CC_HASH_NAME
319 insert(r_key);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/gp_hash_table_map_/
gp_ht_map_.hpp 326 insert(const_reference r_val) function in class:__gnu_pbds::detail::PB_DS_GP_HASH_NAME
338 insert(r_key);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/
throw_allocator.h 105 insert(void* p, size_t size) function in struct:annotate_base
109 std::string error("annotate_base::insert null insert!\n");
117 std::string error("annotate_base::insert double insert!\n");
123 map().insert(make_entry(p, size));
680 insert(a, sizeof(value_type) * __n);
vstring.h 920 * @brief Insert multiple characters.
921 * @param __p Iterator referencing location in string to insert at.
922 * @param __n Number of characters to insert
923 * @param __c The character to insert.
933 insert(iterator __p, size_type __n, _CharT __c) function in class:__versa_string
937 * @brief Insert a range of characters.
938 * @param __p Iterator referencing location in string to insert at.
955 insert(iterator __p, _InputIterator __beg, _InputIterator __end) function in class:__versa_string
960 * @brief Insert an initializer_list of characters.
961 * @param __p Iterator referencing location in string to insert at
966 insert(iterator __p, std::initializer_list<_CharT> __l) function in class:__versa_string
983 insert(size_type __pos1, const __versa_string& __str) function in class:__versa_string
1006 insert(size_type __pos1, const __versa_string& __str, function in class:__versa_string
1029 insert(size_type __pos, const _CharT* __s, size_type __n) function in class:__versa_string
1048 insert(size_type __pos, const _CharT* __s) function in class:__versa_string
1072 insert(size_type __pos, size_type __n, _CharT __c) function in class:__versa_string
1090 insert(iterator __p, _CharT __c) function in class:__versa_string
    [all...]

Completed in 1094 milliseconds

<<41424344454647484950>>