| /external/webrtc/webrtc/system_wrappers/include/ |
| scoped_vector.h | 124 iterator insert(iterator position, T* x) { function in class:webrtc::ScopedVector 125 return v_.insert(position, x); 130 void insert(iterator position, InputIterator first, InputIterator last) { function in class:webrtc::ScopedVector 131 v_.insert(position, first, last);
|
| /frameworks/av/media/libmedia/ |
| IMediaSource.cpp | 163 mMemoryCache.insert(index, mem); 236 void insert(uint64_t index, const sp<IMemory> &mem) { function in struct:android::BpMediaSource::MemoryCache 397 index = mIndexCache.insert(transferBuf->mMemory);
|
| /frameworks/av/media/libstagefright/foundation/ |
| AString.cpp | 287 void AString::insert(const AString &from, size_t insertionPos) { function in class:android::AString 288 insert(from.c_str(), from.size(), insertionPos); 291 void AString::insert(const char *from, size_t size, size_t insertionPos) { function in class:android::AString
|
| /frameworks/base/core/java/android/content/ |
| DefaultDataHandler.java | 35 * Insert one row: 47 * Use first row's uri to insert into another table, 61 * Insert multiple rows in to same table and same attributes: 87 public void insert(ContentResolver contentResolver, InputStream in) method in class:DefaultDataHandler 93 public void insert(ContentResolver contentResolver, String in) method in class:DefaultDataHandler 128 Uri u = mContentResolver.insert(mUris.lastElement(), mValues); 137 // case 2, <Col> before <Row> insert last uri 143 throw new SAXException("insert to uri " +
|
| SearchRecentSuggestionsProvider.java | 272 public Uri insert(Uri uri, ContentValues values) { method in class:SearchRecentSuggestionsProvider 279 // Note: This table has on-conflict-replace semantics, so insert() may actually replace() 285 rowID = db.insert(sSuggestions, NULL_COLUMN, values);
|
| /frameworks/base/core/java/android/net/nsd/ |
| DnsSdTxtRecord.java | 103 insert(keyBytes, valBytes, currentLoc); method 168 private void insert(byte[] keyBytes, byte[] value, int index) { method in class:DnsSdTxtRecord
|
| /frameworks/base/core/java/android/provider/ |
| SearchRecentSuggestions.java | 192 // Use content resolver (not cursor) to insert/update this query 201 cr.insert(mSuggestionsUri, values);
|
| /frameworks/base/core/tests/coretests/src/android/app/activity/ |
| LocalProvider.java | 72 // insert alarms 78 return "INSERT INTO " + TABLE_DATA_NAME 178 public Uri insert(Uri url, ContentValues initialValues) { method in class:LocalProvider
|
| /frameworks/base/core/tests/coretests/src/android/database/sqlite/ |
| SQLiteCursorTest.java | 84 // insert more than 1MB of data in the table. this should ensure that the entire tabledata 91 mDatabase.insert(testTable, null, values); 124 mDatabase.insert(testTable, null, values); 164 mDatabase.execSQL("INSERT INTO Tst VALUES (?)", new Object[]{testArr});
|
| /frameworks/base/core/tests/coretests/src/android/provider/ |
| MockFontProvider.java | 253 public Uri insert(Uri uri, ContentValues values) { method in class:MockFontProvider 254 throw new UnsupportedOperationException("insert is not supported.");
|
| /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/unit/ |
| MediaInserterTest.java | 134 mMediaInserter.insert(uri, values);
|
| /frameworks/base/tools/locked_region_code_injection/src/lockedregioncodeinjection/ |
| LockFindingClassVisitor.java | 42 * 1. Finds all the MONITOR_ENTER / MONITOR_EXIT in the byte code and insert the corresponding pre 45 * 2. Find all methods that are synchronized and insert pre method calls in the beginning and post 192 instructions.insert(node, end); 200 instructions.insert(node, start); 213 instructions.insert(node, end); 217 instructions.insert(node, call); 222 instructions.insert(node, start);
|
| /frameworks/compile/mclinker/include/mcld/ |
| InputTree.h | 277 InputTree& insert(TreeIteratorBase pRoot, Input& pInput); 283 InputTree& insert(TreeIteratorBase pRoot, const Mover& pMover, Input& pInput); 313 mcld::InputTree& mcld::InputTree::insert(mcld::TreeIteratorBase pRoot, function in class:mcld::InputTree
|
| /frameworks/ex/common/java/com/android/common/content/ |
| SQLiteContentProvider.java | 69 * The equivalent of the {@link #insert} method, but invoked within a transaction. 95 public Uri insert(Uri uri, ContentValues values) { method in class:SQLiteContentProvider
|
| /frameworks/opt/telephony/src/java/com/android/internal/telephony/ |
| CarrierInfoManager.java | 134 mContentResolver.insert(Telephony.CarrierColumns.CONTENT_URI, contentValues); 136 Log.i(LOG_TAG, "Insert failed, updating imsiEncryptionInfo into db");
|
| /frameworks/support/room/integration-tests/testapp/src/androidTest/java/androidx/room/integration/testapp/dao/ |
| UserDao.java | 25 import androidx.room.Insert; 71 @Insert 72 public abstract void insert(User user); method in class:UserDao 74 @Insert(onConflict = OnConflictStrategy.REPLACE) 92 @Insert 184 insert(a); 185 insert(b); 194 insert(a); 195 insert(b); method 231 insert(a) [all...] |
| /frameworks/support/room/integration-tests/testapp/src/androidTest/java/androidx/room/integration/testapp/test/ |
| CollationTest.java | 29 import androidx.room.Insert; 66 mDao.insert(mItem1); 67 mDao.insert(mItem2); 68 mDao.insert(mItem3); 69 mDao.insert(mItem4); 183 @Insert 184 void insert(CollateEntity... entities); method in interface:CollationTest.CollateDao
|
| /frameworks/support/slices/core/src/main/java/androidx/slice/ |
| SliceProvider.java | 352 public final Uri insert(@NonNull Uri uri, @Nullable ContentValues values) { method in class:SliceProvider
|
| /libcore/luni/src/main/java/javax/xml/datatype/ |
| Duration.java | [all...] |
| /packages/apps/Bluetooth/src/com/android/bluetooth/opp/ |
| BluetoothOppProvider.java | 202 public Uri insert(Uri uri, ContentValues values) { method in class:BluetoothOppProvider 206 throw new IllegalArgumentException("insert: Unknown/Invalid URI " + uri); 247 long rowID = db.insert(DB_TABLE, null, filteredValues); 250 Log.w(TAG, "couldn't insert " + uri + "into btopp database");
|
| /packages/apps/CellBroadcastReceiver/src/com/android/cellbroadcastreceiver/ |
| CellBroadcastContentProvider.java | 150 * Insert a new row. This throws an exception, as the database can only be modified by 157 public Uri insert(Uri uri, ContentValues values) { method in class:CellBroadcastContentProvider 158 throw new UnsupportedOperationException("insert not supported"); 187 * Internal method to insert a new Cell Broadcast into the database and notify observers. 188 * @param message the message to insert 200 long rowId = db.insert(CellBroadcastDatabaseHelper.TABLE_NAME, null, cv); 202 Log.e(TAG, "failed to insert new broadcast into database");
|
| CellBroadcastDatabaseHelper.java | 324 db.insert(TABLE_NAME, null, cv);
|
| /packages/apps/DeskClock/src/com/android/deskclock/provider/ |
| ClockDatabaseHelper.java | 115 // insert default alarms 118 String insertMe = "INSERT INTO " + ALARMS_TABLE_NAME + " (" + 181 db.insert(ALARMS_TABLE_NAME, null, Alarm.createContentValues(alarm)); 184 db.insert(INSTANCES_TABLE_NAME, null, 197 // insert an already used id? 220 rowId = db.insert(ALARMS_TABLE_NAME, ClockContract.AlarmsColumns.RINGTONE, values); 226 throw new SQLException("Failed to insert row");
|
| /packages/apps/DevCamera/src/com/android/devcamera/ |
| MediaSaver.java | 151 cr.insert(MediaStore.Images.Media.EXTERNAL_CONTENT_URI, values);
|
| /packages/apps/Dialer/java/com/android/dialer/calllog/database/ |
| AnnotatedCallLogContentProvider.java | 190 public Uri insert(@NonNull Uri uri, @Nullable ContentValues values) { method in class:AnnotatedCallLogContentProvider 220 long id = database.insert(AnnotatedCallLog.TABLE, null, values); 223 "AnnotatedCallLogContentProvider.insert", 364 * as well as insert row A. When row A gets inserted, row Z will be deleted via the
|