| /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/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/darwin-x86/clang-4393122/include/llvm/ADT/ |
| SmallVector.h | 479 iterator insert(iterator I, T &&Elt) { function in class:llvm::SmallVectorImpl 509 iterator insert(iterator I, const T &Elt) { function in class:llvm::SmallVectorImpl 538 iterator insert(iterator I, size_type NumToInsert, const T &Elt) { function in class:llvm::SmallVectorImpl 584 // Insert the non-overwritten middle part. 593 iterator insert(iterator I, ItTy From, ItTy To) { function in class:llvm::SmallVectorImpl 644 // Insert the non-overwritten middle part. 649 void insert(iterator I, std::initializer_list<T> IL) { function in class:llvm::SmallVectorImpl 650 insert(I, IL.begin(), IL.end());
|
| StringMap.h | 241 insert(P); 363 /// insert - Insert the specified key/value pair into the map. If the key 365 /// insert it and return true. 366 bool insert(MapEntryTy *KeyValue) { function in class:llvm::StringMap 382 /// insert - Inserts the specified key/value pair into the map if the key 386 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/darwin-x86/clang-4393122/include/llvm/CodeGen/GlobalISel/ |
| RegBankSelect.h | 103 /// before we actually need to insert something. 106 /// Tell if the insert point has already been materialized. 139 /// MachineBasicBlock::insert. I.e., additional code happens 158 /// MachineBasicBlock::insert and ::getPoint. The new code should 171 /// Insert \p MI in the just before ::getPoint() 172 MachineBasicBlock::iterator insert(MachineInstr &MI) { function in class:llvm::RegBankSelect::InsertPoint 173 return getInsertMBB().insert(getPoint(), &MI); 246 // If we try to insert before phis, we should use the insertion 250 // If we try to insert after the terminators, we should use the 305 Insert, [all...] |
| /prebuilts/clang/host/darwin-x86/clang-4393122/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); 503 /// Insert MI into this bundle before I which must point to an instruction in 505 MIBundleBuilder &insert(MachineBasicBlock::instr_iterator I, function in class:llvm::MIBundleBuilder 507 MBB.insert(I, MI); 525 /// Insert MI into MBB by prepending it to the instructions in the bundle. 528 return insert(begin(), MI); 531 /// Insert MI into MBB by appending it to the instructions in the bundle [all...] |
| /prebuilts/clang/host/darwin-x86/clang-4393122/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/darwin-x86/clang-4479392/include/llvm/ADT/ |
| SmallVector.h | 479 iterator insert(iterator I, T &&Elt) { function in class:llvm::SmallVectorImpl 509 iterator insert(iterator I, const T &Elt) { function in class:llvm::SmallVectorImpl 538 iterator insert(iterator I, size_type NumToInsert, const T &Elt) { function in class:llvm::SmallVectorImpl 584 // Insert the non-overwritten middle part. 593 iterator insert(iterator I, ItTy From, ItTy To) { function in class:llvm::SmallVectorImpl 644 // Insert the non-overwritten middle part. 649 void insert(iterator I, std::initializer_list<T> IL) { function in class:llvm::SmallVectorImpl 650 insert(I, IL.begin(), IL.end());
|
| StringMap.h | 241 insert(P); 363 /// insert - Insert the specified key/value pair into the map. If the key 365 /// insert it and return true. 366 bool insert(MapEntryTy *KeyValue) { function in class:llvm::StringMap 382 /// insert - Inserts the specified key/value pair into the map if the key 386 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/darwin-x86/clang-4479392/include/llvm/CodeGen/GlobalISel/ |
| RegBankSelect.h | 103 /// before we actually need to insert something. 106 /// Tell if the insert point has already been materialized. 139 /// MachineBasicBlock::insert. I.e., additional code happens 158 /// MachineBasicBlock::insert and ::getPoint. The new code should 171 /// Insert \p MI in the just before ::getPoint() 172 MachineBasicBlock::iterator insert(MachineInstr &MI) { function in class:llvm::RegBankSelect::InsertPoint 173 return getInsertMBB().insert(getPoint(), &MI); 246 // If we try to insert before phis, we should use the insertion 250 // If we try to insert after the terminators, we should use the 305 Insert, [all...] |
| /prebuilts/clang/host/darwin-x86/clang-4479392/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); 503 /// Insert MI into this bundle before I which must point to an instruction in 505 MIBundleBuilder &insert(MachineBasicBlock::instr_iterator I, function in class:llvm::MIBundleBuilder 507 MBB.insert(I, MI); 525 /// Insert MI into MBB by prepending it to the instructions in the bundle. 528 return insert(begin(), MI); 531 /// Insert MI into MBB by appending it to the instructions in the bundle [all...] |
| /prebuilts/clang/host/darwin-x86/clang-4479392/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/darwin-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/darwin-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/darwin-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/darwin-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/darwin-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/darwin-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/darwin-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
|