HomeSort by relevance Sort by last modified time
    Searched refs:insert (Results 301 - 325 of 562) sorted by null

<<11121314151617181920>>

  /packages/apps/Browser/tests/src/com/android/browser/
BrowserProviderTests.java 152 return getContext().getContentResolver().insert(android.provider.Browser.BOOKMARKS_URI,
  /packages/providers/CalendarProvider/src/com/android/providers/calendar/
SQLiteContentProvider.java 57 * The equivalent of the {@link #insert} method, but invoked within a transaction.
83 public Uri insert(Uri uri, ContentValues values) { method in class:SQLiteContentProvider
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
SQLiteContentProvider.java 62 * The equivalent of the {@link #insert} method, but invoked within a transaction.
88 public Uri insert(Uri uri, ContentValues values) { method in class:SQLiteContentProvider
  /bionic/linker/
Android.mk 71 # hand, as we want to insert an extra step that is not supported by the build system, and
  /cts/tests/tests/provider/src/android/provider/cts/
MediaStore_Video_MediaTest.java 89 // insert
90 Uri uri = mContentResolver.insert(Media.EXTERNAL_CONTENT_URI, values);
183 // can not insert any data, so other operations can not be tested
185 mContentResolver.insert(Media.INTERNAL_CONTENT_URI, new ContentValues());
MediaStore_Audio_Playlists_MembersTest.java 174 // insert
175 Uri uri = mContentResolver.insert(Playlists.EXTERNAL_CONTENT_URI, values);
181 // insert audio as the member of the playlist
187 Uri audioUri = mContentResolver.insert(membersUri, values);
290 Uri uri = mContentResolver.insert(Playlists.INTERNAL_CONTENT_URI, values);
  /development/apps/Development/src/com/android/development/
EnterURL.java 282 db.insert("History", null, m);
289 db.insert("FieldState", null, m);
  /external/icu4c/test/intltest/
mnkytst.cpp 224 newRules.insert(0, baseRules);
239 newRules.insert(0, baseRules);
  /external/webkit/JavaScriptCore/jit/
ExecutableAllocatorFixedVMPool.cpp 144 // calling insert directly, to avoid multiple entries beging added with the
155 // m_freeList already contain an entry for this size - insert this node into the chain.
159 m_freeList.insert(entry);
307 m_freeList.insert(new FreeListEntry(m_base, m_totalHeapSize));
  /external/webkit/WebKitTools/Scripts/webkitpy/layout_tests/layout_package/
json_results_generator.py 237 # Insert the number of tests that failed.
251 # Insert the pass/skip/failure summary dictionary.
255 # Insert the number of all the tests that are supposed to pass.
267 item: Number or string to insert into the list.
268 key: Key in results_for_builder for the list to insert into.
275 raw_list.insert(0, item)
283 item: String or number to insert.
294 encoded_results.insert(0, [1, item])
326 """ Insert a test item with its results to the given tests dictionary.
  /frameworks/base/core/java/android/text/format/
DateFormat.java 561 tb.insert(0, "-");
564 tb.insert(0, "+");
  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothOppManager.java 278 * Fork a thread to insert share info to db.
307 * Thread to insert share info to db. In multiple files (say 100 files)
312 * device (device 2), we need insert all these share info to db.
329 super("Insert ShareInfo Thread");
362 * Insert multiple sending sessions to db, only used by Opp application.
382 final Uri contentUri = mContext.getContentResolver().insert(
384 if (V) Log.v(TAG, "Insert contentUri: " + contentUri + " to device: "
390 * Insert single sending session to db, only used by Opp application.
398 final Uri contentUri = mContext.getContentResolver().insert(BluetoothShare.CONTENT_URI,
400 if (V) Log.v(TAG, "Insert contentUri: " + contentUri + " to device:
    [all...]
  /external/icu4c/i18n/
nfsubs.cpp 572 * @param toInsertInto The string we insert the result into
575 * position to determine exactly where to insert the new text)
597 toInsertInto.insert(_pos + this->pos, temp);
606 * @param toInsertInto The string we insert the result into
609 * position to determine exactly where to insert the new text)
631 toInsertInto.insert(_pos + this->pos, temp);
    [all...]
  /external/webkit/WebCore/rendering/
RenderLayerBacking.cpp     [all...]
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
ContactsProvider2Test.java 101 Uri rowUri = mResolver.insert(RawContacts.CONTENT_URI, values);
114 Uri dataUri = mResolver.insert(Data.CONTENT_URI, values);
159 Uri rawContactUri = mResolver.insert(RawContacts.CONTENT_URI, values);
222 Uri rawContactUri = mResolver.insert(RawContacts.CONTENT_URI, values);
254 Uri rawContactUri = mResolver.insert(RawContacts.CONTENT_URI, values);
293 Uri rawContactUri = mResolver.insert(RawContacts.CONTENT_URI, values);
515 Uri rawContactUri = mResolver.insert(RawContacts.CONTENT_URI, values);
595 Uri rowUri = mResolver.insert(Groups.CONTENT_URI, values);
    [all...]
  /packages/providers/MediaProvider/src/com/android/providers/media/
MediaProvider.java 324 // This could happen if we unplug the sd card during insert/update/delete
1636 public Uri insert(Uri uri, ContentValues initialValues) method in class:MediaProvider
    [all...]
  /external/dnsmasq/src/
cache.c 199 /* insert a new cache entry at the head of the list (youngest entry) */
347 insert due to error.
402 insert. Once in this state, all inserts will probably fail. */
505 struct crec *next, **up, **insert = NULL, **chainp = &ans; local
534 if (insert && (crecp->flags & (F_REVERSE | F_IMMORTAL)) == ins_flags)
537 crecp->hash_next = *insert;
538 *insert = crecp;
539 insert = &crecp->hash_next;
543 if (!insert)
545 insert = up
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/ui/
EditContactActivity.java 1307 EntityDelta insert = new EntityDelta(ValuesDelta.fromAfter(values)); local
    [all...]
  /frameworks/base/core/java/android/webkit/
WebViewDatabase.java 158 // use InsertHelper to improve insert performance by 40%
518 mDatabase.insert(mTableNames[TABLE_COOKIES_ID], null, cookieVal);
843 mDatabase.insert(mTableNames[TABLE_PASSWORD_ID], PASSWORD_HOST_COL,
    [all...]
  /packages/apps/IM/src/com/android/im/provider/
ImpsProvider.java 721 // Insert a default presence for newly inserted contact
723 "AFTER INSERT ON " + contactsTableName +
726 "INSERT INTO presence (contact_id) VALUES (NEW._id);" +
1052 public final Uri insert(final Uri url, final ContentValues values) { method in class:ImpsProvider
    [all...]
  /cts/tests/tests/content/src/android/content/cts/
AsyncQueryHandlerTest.java 54 private static final Object INSERT_COOKIE = "insert cookie";
87 mResolver.insert(DummyProvider.CONTENT_URI, values0);
91 mResolver.insert(DummyProvider.CONTENT_URI, values1);
95 mResolver.insert(DummyProvider.CONTENT_URI, values2);
148 // insert without cancelling.
157 // insert will be cancelled.
  /external/opencore/protocols/systems/3g-324m_pvterminal/h223/src/
h223types.cpp 230 // insert into the list of olcs
485 insert(OlcList::value_type(key, param));
751 lcns.insert(TPVMuxDescriptorSlotList::value_type(slot.lcn, slot_info));
778 lcns.insert(TPVMuxDescriptorSlotList::value_type(slot_info.lcn, slot_info));
  /external/webkit/WebKit/qt/tests/qwebplugindatabase/
tst_qwebplugindatabase.cpp 184 pluginsMap.insert(mimeType, plugin);
225 pluginsMap.insert(mimeType, plugin);
315 pluginsMap.insert(mimeType, plugin);
  /frameworks/base/libs/utils/
String16.cpp 467 status_t String16::insert(size_t pos, const char16_t* chrs) function in class:android::String16
469 return insert(pos, chrs, strlen16(chrs));
472 status_t String16::insert(size_t pos, const char16_t* chrs, size_t len) function in class:android::String16
485 printf("Insert in to %s: pos=%d, len=%d, myLen=%d, chrs=%s\n",
  /packages/providers/TelephonyProvider/src/com/android/providers/telephony/
SmsProvider.java 339 public Uri insert(Uri url, ContentValues initialValues) { method in class:SmsProvider
446 // the insert below, but we'd have to query to find the old _id
471 Log.e(TAG, "insert: query contact uri " + uri + " caught ", ex);
490 rowID = db.insert(table, "body", values);
504 db.insert(TABLE_WORDS, Telephony.MmsSms.WordsTable.INDEXED_TEXT, cv);
510 Log.d(TAG, "insert " + uri + " succeeded");
515 Log.e(TAG,"insert: failed! " + values.toString());

Completed in 1079 milliseconds

<<11121314151617181920>>