/packages/apps/Calculator/src/com/android/calculator2/ |
CalculatorDisplay.java | 115 void insert(String delta) { method in class:CalculatorDisplay 118 editor.getText().insert(cursor, delta);
|
/packages/apps/Contacts/tests/src/com/android/contacts/tests/calllog/ |
FillCallLogTestActivity.java | 138 /** The number of items to insert when done. */ 157 // number of entries to insert, whichever is smaller. 187 /** The number of items to insert. */ 237 // Insert into the call log the newly generated entry. 243 contentProvider.insert(Calls.CONTENT_URI, values); 247 Log.d(TAG, "insert failed", e);
|
/packages/apps/Email/src/com/android/email/provider/ |
AttachmentProvider.java | 231 public Uri insert(Uri uri, ContentValues values) { method in class:AttachmentProvider
|
/packages/apps/Email/tests/src/com/android/email/ |
DBTestHelper.java | 114 public Uri insert(Uri uri, ContentValues values) { method in class:DBTestHelper.MyProvider
|
/packages/apps/Exchange/tests/src/com/android/exchange/provider/ |
MockProvider.java | 50 * insert() acts as expected, returning a Uri that can be directly used in a query 116 public Uri insert(Uri uri, ContentValues values) { method in class:MockProvider
|
/packages/apps/Gallery2/src/com/android/gallery3d/provider/ |
GalleryProvider.java | 96 public Uri insert(Uri uri, ContentValues values) { method in class:GalleryProvider
|
/packages/apps/Gallery2/tests/src/com/android/gallery3d/common/ |
BlobCacheTest.java | 141 // insert one blob 143 bc.insert(KEY_0, DATA_0); 158 // insert with the same key (but using a different blob) 160 bc.insert(KEY_0, DATA_0); 175 // insert another key and make sure we can get both key. 178 bc.insert(KEY_1, DATA_1); 202 // insert one blob 204 bc.insert(-123, DATA_0); 214 bc.insert(123, data); 223 // insert one blo [all...] |
/packages/apps/KeyChain/src/com/android/keychain/ |
KeyChainService.java | 215 db.insert(TABLE_GRANTS, GRANTS_ALIAS, values);
|
/packages/apps/Mms/src/com/android/mms/data/ |
RecipientIdCache.java | 276 cr.insert(sAllCanonical, values);
|
/packages/apps/Mms/src/com/android/mms/util/ |
RateController.java | 97 SqliteWrapper.insert(mContext, mContext.getContentResolver(),
|
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/ |
ShortcutsProvider.java | 74 public Uri insert(Uri uri, ContentValues values) { method in class:ShortcutsProvider
|
/packages/experimental/AndroidVendorSecurityTool/src/com/android/vending/sectool/v1/ |
GoogleSettingsContract.java | 53 resolver.insert(uri, values); 59 // ContentResolver.insert() throws IllegalArgumentException if there is no
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/ |
UserDictionary.java | 198 // Insert new entry. 199 client.insert(Words.CONTENT_URI, values); 204 // See ContentResolver#insert, inside the catch(){}
|
/packages/providers/CalendarProvider/src/com/android/providers/calendar/ |
SQLiteContentProvider.java | 60 * The equivalent of the {@link #insert} method, but invoked within a transaction. 88 public Uri insert(Uri uri, ContentValues values) { method in class:SQLiteContentProvider
|
/packages/providers/ContactsProvider/src/com/android/providers/contacts/ |
AbstractContactsProvider.java | 105 public Uri insert(Uri uri, ContentValues values) { method in class:AbstractContactsProvider 156 insert(uri, values[i]); method
|
CallLogProvider.java | 182 public Uri insert(Uri uri, ContentValues values) { method in class:CallLogProvider 200 long rowId = getDatabaseModifier(mCallsInserter).insert(copiedValues); 268 * Same as {@link #getDatabaseModifier(SQLiteDatabase)} but used for insert helper operations 305 * insert and update operations to check that ContentValues with voicemail
|
DataRowHandlerForStructuredName.java | 45 public long insert(SQLiteDatabase db, TransactionContext txContext, long rawContactId, method in class:DataRowHandlerForStructuredName 49 long dataId = super.insert(db, txContext, rawContactId, values);
|
DbModifierWithNotification.java | 98 public long insert(String table, String nullColumnHack, ContentValues values) { method in class:DbModifierWithNotification 100 long rowId = mDb.insert(table, nullColumnHack, values); 112 public long insert(ContentValues values) { method in class:DbModifierWithNotification 114 long rowId = mInsertHelper.insert(values); 168 * where clause. When called from an insert operation an empty set returned by this method 185 * Returns the source package that gets affected (in an insert/update operation) by the supplied
|
PhotoStore.java | 165 * @param photoProcessor A photo processor containing the photo data to insert. 169 public long insert(PhotoProcessor photoProcessor) { method in class:PhotoStore 170 return insert(photoProcessor, false); 177 * @param photoProcessor A photo processor containing the photo data to insert. 183 public long insert(PhotoProcessor photoProcessor, boolean allowSmallImageStorage) { method in class:PhotoStore 205 long id = mDb.insert(Tables.PHOTO_FILES, null, values);
|
VoicemailContentTable.java | 99 public Uri insert(UriData uriData, ContentValues values) { method in class:VoicemailContentTable 120 long rowId = getDatabaseModifier(db).insert(mTableName, null, copiedValues); 133 "Cannot insert URI: %s. Inserted URIs should not contain an id.", 154 // checks that are already done as part of insert request.
|
/packages/providers/UserDictionaryProvider/src/com/android/providers/userdictionary/ |
UserDictionaryProvider.java | 156 public Uri insert(Uri uri, ContentValues initialValues) { method in class:UserDictionaryProvider 184 long rowId = db.insert(USERDICT_TABLE_NAME, Words.WORD, values); 192 throw new SQLException("Failed to insert row into " + uri);
|
/prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/bits/ |
stl_map.h | 289 this->insert(__l.begin(), __l.end()); 450 __i = insert(__i, value_type(__k, mapped_type())); 483 * @brief Attempts to insert a std::pair into the %map. 492 * This function attempts to insert a (key, value) %pair into the %map. 499 insert(const value_type& __x) function in class:map 504 * @brief Attempts to insert a list of std::pairs into the %map. 511 insert(std::initializer_list<value_type> __list) function in class:map 512 { insert (__list.begin(), __list.end()); } 516 * @brief Attempts to insert a std::pair into the %map. 527 * single-argument insert() does. Note that the firs 539 insert(iterator __position, const value_type& __x) function in class:map 552 insert(_InputIterator __first, _InputIterator __last) function in class:map [all...] |
stl_multimap.h | 286 this->insert(__l.begin(), __l.end()); 437 insert(const value_type& __x) function in class:multimap 461 insert(iterator __position, const value_type& __x) function in class:multimap 465 * @brief A template function that attempts to insert a range 475 insert(_InputIterator __first, _InputIterator __last) function in class:multimap 480 * @brief Attempts to insert a list of std::pairs into the %multimap. 487 insert(initializer_list<value_type> __l) function in class:multimap 488 { this->insert(__l.begin(), __l.end()); }
|
stl_multiset.h | 258 this->insert(__l.begin(), __l.end()); 386 // insert/erase 399 insert(const value_type& __x) function in class:multiset 423 insert(iterator __position, const value_type& __x) function in class:multiset 427 * @brief A template function that attempts to insert a range of elements. 436 insert(_InputIterator __first, _InputIterator __last) function in class:multiset 441 * @brief Attempts to insert a list of elements into the %multiset. 448 insert(initializer_list<value_type> __l) function in class:multiset 449 { this->insert(__l.begin(), __l.end()); }
|
stl_set.h | 265 this->insert(__l.begin(), __l.end()); 393 // insert/erase 395 * @brief Attempts to insert an element into the %set. 401 * This function attempts to insert an element into the %set. A %set 408 insert(const value_type& __x) function in class:set 416 * @brief Attempts to insert an element into the %set. 424 * and thus does not return a boolean like the single-argument insert() 435 insert(iterator __position, const value_type& __x) function in class:set 439 * @brief A template function that attempts to insert a range 449 insert(_InputIterator __first, _InputIterator __last function in class:set 461 insert(initializer_list<value_type> __l) function in class:set [all...] |