| /external/python/cpython2/Lib/ |
| _abcoll.py | 645 __getitem__, __setitem__, __delitem__, __len__, and insert(). 658 def insert(self, index, value): member in class:MutableSequence 659 'S.insert(index, object) -- insert object before index' 664 self.insert(len(self), value)
|
| /external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/ |
| SQLiteOpenHelperTest.java | 146 db.insert(table, null, cv);
|
| /external/skia/src/core/ |
| SkString.cpp | 372 void SkString::insert(size_t offset, const char text[]) { function in class:SkString 373 this->insert(offset, text, text ? strlen(text) : 0); 376 void SkString::insert(size_t offset, const char text[], size_t len) { function in class:SkString 389 /* If we're the only owner, and we have room in our allocation for the insert, 435 this->insert(offset, buffer, len); 442 this->insert(offset, buffer, stop - buffer); 448 this->insert(offset, buffer, stop - buffer); 454 this->insert(offset, buffer, stop - buffer); 460 this->insert(offset, buffer, stop - buffer); 480 this->insert(offset, p, buffer + sizeof(buffer) - p) [all...] |
| /external/skia/src/pathops/ |
| SkOpSegment.h | 233 SkOpSpan* insert(SkOpSpan* prev) { function in class:SkOpSegment
|
| /external/skqp/src/pathops/ |
| SkOpSegment.h | 233 SkOpSpan* insert(SkOpSpan* prev) { function in class:SkOpSegment
|
| /external/swiftshader/third_party/LLVM/include/llvm/ADT/ |
| DenseMap.h | 63 insert(I, E); 162 std::pair<iterator, bool> insert(const std::pair<KeyT, ValueT> &KV) { function in class:llvm::DenseMap 168 // Otherwise, insert the new element. 174 /// insert - Range insertion of pairs. 176 void insert(InputIt I, InputIt E) { function in class:llvm::DenseMap 178 insert(*I); 351 // Insert it and return the default value. 408 // Insert all the old elements. 413 // Insert the key/value into the new table.
|
| StringMap.h | 318 /// insert - Insert the specified key/value pair into the map. If the key 320 /// insert it and return true. 321 bool insert(MapEntryTy *KeyValue) { function in class:llvm::StringMap 355 /// exists, return it. Otherwise, default construct a value, insert it, and
|
| ValueMap.h | 135 std::pair<iterator, bool> insert(const std::pair<KeyT, ValueT> &KV) { function in class:llvm::ValueMap 137 Map.insert(std::make_pair(Wrap(KV.first), KV.second)); 141 /// insert - Range insertion of pairs. 143 void insert(InputIt I, InputIt E) { function in class:llvm::ValueMap 145 insert(*I); 239 Copy.Map->insert(std::make_pair(typed_new_key, Target));
|
| /external/swiftshader/third_party/LLVM/tools/llvm-diff/ |
| DifferenceEngine.cpp | 50 /// Insert a new value on the heap. 51 void insert(const T &V) { function in class:__anon36459::PriorityQueue 171 Queue.insert(BlockPair(L, R)); 215 TentativeValues.insert(std::make_pair(LeftI, RightI)); 525 TentativeValues.insert(std::make_pair(&*LI, &*RI)); 655 LNames.insert(LFn->getName());
|
| /external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/ |
| StringMap.h | 243 insert(P); 345 /// insert - Insert the specified key/value pair into the map. If the key 347 /// insert it and return true. 348 bool insert(MapEntryTy *KeyValue) { function in class:llvm::StringMap 364 /// insert - Inserts the specified key/value pair into the map if the key 368 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...] |
| /external/tensorflow/tensorflow/core/lib/gtl/ |
| flatmap.h | 83 insert(first, last); 229 std::pair<iterator, bool> insert(const P& p) { function in class:tensorflow::gtl::FlatMap 230 return Insert(p.first, p.second); 232 std::pair<iterator, bool> insert(const std::pair<const Key, Val>& p) { function in class:tensorflow::gtl::FlatMap 233 return Insert(p.first, p.second); 236 void insert(InputIter first, InputIter last) { function in class:tensorflow::gtl::FlatMap 238 insert(*first); 350 return Insert(std::forward<decltype(p.first)>(p.first), 355 std::pair<iterator, bool> Insert(K&& k, V&& v) {
|
| flatset.h | 66 insert(first, last); 171 std::pair<iterator, bool> insert(const Key& k) { return Insert(k); } function in class:tensorflow::gtl::FlatSet 173 void insert(InputIter first, InputIter last) { function in class:tensorflow::gtl::FlatSet 175 insert(*first); 268 std::pair<iterator, bool> Insert(const Key& k) {
|
| /external/tensorflow/tensorflow/python/debug/cli/ |
| debugger_cli_common.py | 1141 def insert(self, index, item): member in class:Menu [all...] |
| /external/vixl/src/ |
| invalset-vixl.h | 104 // It is illegal to insert an element already present in the set. 105 void insert(const ElementType& element); 349 void InvalSet<TEMPLATE_INVALSET_P_DEF>::insert(const ElementType& element) { function in class:vixl::InvalSet
|
| /frameworks/base/core/java/android/content/ |
| ContentProviderClient.java | 273 /** See {@link ContentProvider#insert ContentProvider.insert} */ 274 public @Nullable Uri insert(@NonNull Uri url, @Nullable ContentValues initialValues) method in class:ContentProviderClient 280 return mContentProvider.insert(mPackageName, url, initialValues);
|
| /frameworks/base/core/java/android/widget/ |
| ArrayAdapter.java | 284 * @param object The object to insert into the array. 288 public void insert(@Nullable T object, int index) { method in class:ArrayAdapter 360 * {@link #addAll(Object[])}, {@link #insert}, {@link #remove}, {@link #clear},
|
| /frameworks/base/core/tests/coretests/src/android/content/ |
| ContentProviderOperationTest.java | 57 public Uri insert(Uri uri, ContentValues values) { 70 public Uri insert(Uri uri, ContentValues values) { 85 public Uri insert(Uri uri, ContentValues values) { 109 public Uri insert(Uri uri, ContentValues values) { 127 public Uri insert(Uri uri, ContentValues values) { 538 public Uri insert(Uri uri, ContentValues values) { method in class:ContentProviderOperationTest.TestContentProvider
|
| /frameworks/base/core/tests/coretests/src/android/provider/ |
| SettingsProviderTest.java | 108 r.insert(table, v);
|
| /frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/ |
| SettingsHelper.java | 167 cr.insert(destination, contentValues);
|
| /frameworks/base/packages/WAPPushManager/src/com/android/smspush/ |
| WapPushManager.java | 274 boolean insert = false; 285 insert = true; 289 insert = true; 293 if (insert) { 304 db.insert(APPID_TABLE_NAME, null, values);
|
| /frameworks/base/tests/JankBench/app/src/main/java/com/android/benchmark/results/ |
| GlobalResultsStore.java | 119 db.insert(UI_RESULTS_TABLE, null, cv);
|
| /frameworks/opt/telephony/src/java/com/android/internal/telephony/ |
| IccProvider.java | 161 public Uri insert(Uri url, ContentValues initialValues) { method in class:IccProvider 167 if (DBG) log("insert"); 195 "Cannot insert into URL: " + url); 286 "Cannot insert into URL: " + url); 372 "Cannot insert into URL: " + url);
|
| /frameworks/support/compat/src/androidTest/java/androidx/core/provider/ |
| MockFontProvider.java | 302 public Uri insert(Uri uri, ContentValues values) { method in class:MockFontProvider 303 throw new UnsupportedOperationException("insert is not supported.");
|
| /frameworks/support/compat/src/main/java/androidx/core/content/ |
| FileProvider.java | 512 public Uri insert(@NonNull Uri uri, ContentValues values) { method in class:FileProvider [all...] |