Searched defs:insert (Results 1 - 10 of 10) sorted by relevance

/system/core/libmemunreachable/
H A DLinkedList.h28 void insert(LinkedList<T>& node) { function in class:LinkedList
/system/chre/util/include/chre/util/
H A Ddynamic_vector_impl.h159 bool DynamicVector<ElementType>::insert(size_t index, function in class:chre::DynamicVector
169 bool DynamicVector<ElementType>::insert(size_t index, ElementType&& element) { function in class:chre::DynamicVector
187 // we'll insert it
/system/core/libutils/
H A DString16.cpp260 status_t String16::insert(size_t pos, const char16_t* chrs) function in class:android::String16
262 return insert(pos, chrs, strlen16(chrs));
265 status_t String16::insert(size_t pos, const char16_t* chrs, size_t len) function in class:android::String16
/system/libvintf/test/
H A Dmain.cpp91 intf.instances.insert("default");
370 static bool insert(std::map<std::string, HalInterface>* map, HalInterface&& intf) { function in namespace:android::vintf
379 EXPECT_TRUE(insert(&mh.interfaces, {"IBetterCamera", {"default", "great"}}));
380 EXPECT_TRUE(insert(&mh.interfaces, {"ICamera", {"default"}}));
/system/core/include/sysutils/
H A DList.h169 insert(begin(), src.begin(), src.end());
208 void push_front(const T& val) { insert(begin(), val); }
209 void push_back(const T& val) { insert(end(), val); }
211 /* insert before the current node; returns iterator at new node */
212 iterator insert(iterator posn, const T& val) function in class:android::sysutils::List
222 /* insert a range of elements before the current node */
223 void insert(iterator posn, const_iterator first, const_iterator last) { function in class:android::sysutils::List
225 insert(posn, *first);
327 insert(lastDst, firstSrc, lastSrc); // copy remaining over
/system/core/include/utils/
H A DList.h168 insert(begin(), src.begin(), src.end());
207 void push_front(const T& val) { insert(begin(), val); }
208 void push_back(const T& val) { insert(end(), val); }
210 /* insert before the current node; returns iterator at new node */
211 iterator insert(iterator posn, const T& val) function in class:android::List
221 /* insert a range of elements before the current node */
222 void insert(iterator posn, const_iterator first, const_iterator last) { function in class:android::List
224 insert(posn, *first);
326 insert(lastDst, firstSrc, lastSrc); // copy remaining over
/system/core/libsysutils/include/sysutils/
H A DList.h169 insert(begin(), src.begin(), src.end());
208 void push_front(const T& val) { insert(begin(), val); }
209 void push_back(const T& val) { insert(end(), val); }
211 /* insert before the current node; returns iterator at new node */
212 iterator insert(iterator posn, const T& val) function in class:android::sysutils::List
222 /* insert a range of elements before the current node */
223 void insert(iterator posn, const_iterator first, const_iterator last) { function in class:android::sysutils::List
225 insert(posn, *first);
327 insert(lastDst, firstSrc, lastSrc); // copy remaining over
/system/core/libutils/include/utils/
H A DList.h168 insert(begin(), src.begin(), src.end());
207 void push_front(const T& val) { insert(begin(), val); }
208 void push_back(const T& val) { insert(end(), val); }
210 /* insert before the current node; returns iterator at new node */
211 iterator insert(iterator posn, const T& val) function in class:android::List
221 /* insert a range of elements before the current node */
222 void insert(iterator posn, const_iterator first, const_iterator last) { function in class:android::List
224 insert(posn, *first);
326 insert(lastDst, firstSrc, lastSrc); // copy remaining over
/system/keymaster/
H A DList.h168 insert(begin(), src.begin(), src.end());
207 void push_front(const T& val) { insert(begin(), val); }
208 void push_back(const T& val) { insert(end(), val); }
210 /* insert before the current node; returns iterator at new node */
211 iterator insert(iterator posn, const T& val) function in class:android::List
221 /* insert a range of elements before the current node */
222 void insert(iterator posn, const_iterator first, const_iterator last) { function in class:android::List
224 insert(posn, *first);
326 insert(lastDst, firstSrc, lastSrc); // copy remaining over
/system/security/keystore/
H A Dkey_store_service.cpp168 KeyStoreServiceReturnCode KeyStoreService::insert(const String16& name, function in class:KeyStoreService

Completed in 262 milliseconds