HomeSort by relevance Sort by last modified time
    Searched defs:insert (Results 601 - 625 of 1909) sorted by null

<<21222324252627282930>>

  /cts/tests/tests/provider/src/android/provider/cts/
MockFontProvider.java 256 public Uri insert(Uri uri, ContentValues values) { method in class:MockFontProvider
257 throw new UnsupportedOperationException("insert is not supported.");
  /cts/tests/tests/provider/src/android/provider/cts/contacts/
DatabaseAsserts.java 51 resolver.insert(uri, values);
52 Assert.fail("insert operation should have failed with UnsupportedOperationException on"
DummyGalProvider.java 109 public Uri insert(Uri uri, ContentValues values) { method in class:DummyGalProvider
  /dalvik/dexgen/src/com/android/dexgen/util/
IntList.java 228 * that index up one. May not be used to insert at an index beyond the
232 * @param n {@code >= 0, <=size();} index of where to insert
233 * @param value value to insert
235 public void insert(int n, int value) { method in class:IntList
  /dalvik/dx/src/com/android/dx/util/
IntList.java 228 * that index up one. May not be used to insert at an index beyond the
232 * @param n {@code >= 0, <=size();} index of where to insert
233 * @param value value to insert
235 public void insert(int n, int value) { method in class:IntList
  /developers/build/prebuilts/androidtv/leanback/app/src/main/java/com/example/android/tvleanback/recommendation/
RecommendationBuilder.java 202 public Uri insert(Uri uri, ContentValues values) { method in class:RecommendationBuilder.RecommendationBackgroundContentProvider
  /developers/build/prebuilts/gradle/BasicSyncAdapter/Application/src/main/java/com/example/android/basicsyncadapter/provider/
FeedProvider.java 119 * Insert a new entry into the database.
122 public Uri insert(Uri uri, ContentValues values) { method in class:FeedProvider
133 throw new UnsupportedOperationException("Insert not supported on URI: " + uri);
  /developers/build/prebuilts/gradle/ContentProviderPaging/app/src/main/java/com/example/android/contentproviderpaging/
ImageProvider.java 154 public Uri insert(@NonNull Uri uri, @Nullable ContentValues contentValues) { method in class:ImageProvider
  /developers/build/prebuilts/gradle/SpeedTracker/Application/src/main/java/com/example/android/wearable/speedtracker/db/
LocationDbHelper.java 83 public final long insert(LocationEntry entry) { method in class:LocationDbHelper
97 // Insert the new row, returning the primary key value of the new row
98 return db.insert(TABLE_NAME, "null", values);
  /developers/samples/android/connectivity/sync/BasicSyncAdapter/Application/src/main/java/com/example/android/basicsyncadapter/provider/
FeedProvider.java 119 * Insert a new entry into the database.
122 public Uri insert(Uri uri, ContentValues values) { method in class:FeedProvider
133 throw new UnsupportedOperationException("Insert not supported on URI: " + uri);
  /developers/samples/android/content/documentsUi/ContentProviderPaging/app/src/main/java/com/example/android/contentproviderpaging/
ImageProvider.java 154 public Uri insert(@NonNull Uri uri, @Nullable ContentValues contentValues) { method in class:ImageProvider
  /developers/samples/android/wearable/wear/SpeedTracker/Application/src/main/java/com/example/android/wearable/speedtracker/db/
LocationDbHelper.java 83 public final long insert(LocationEntry entry) { method in class:LocationDbHelper
97 // Insert the new row, returning the primary key value of the new row
98 return db.insert(TABLE_NAME, "null", values);
  /development/samples/NotePad/src/com/example/android/notepad/
NotePadProvider.java 458 * {@link android.content.ContentResolver#insert(Uri, ContentValues)}.
466 public Uri insert(Uri uri, ContentValues initialValues) { method in class:NotePadProvider
513 // Performs the insert and returns the ID of the new note.
514 long rowId = db.insert(
515 NotePad.Notes.TABLE_NAME, // The table to insert into.
518 values // A map of column names, and the values to insert
522 // If the insert succeeded, the row ID exists.
532 // If the insert didn't succeed, then the rowID is <= 0. Throws an exception.
533 throw new SQLException("Failed to insert row into " + uri);
710 * so it can insert test data into the database. The test case class is responsible fo
    [all...]
  /development/samples/VoicemailProviderDemo/src/com/example/android/voicemail/common/core/
VoicemailProviderHelpers.java 95 public Uri insert(Voicemail voicemail) { method in class:VoicemailProviderHelpers
106 return mContentResolver.insert(mBaseUri, contentValues);
  /development/samples/browseable/BasicSyncAdapter/src/com.example.android.basicsyncadapter/provider/
FeedProvider.java 119 * Insert a new entry into the database.
122 public Uri insert(Uri uri, ContentValues values) { method in class:FeedProvider
133 throw new UnsupportedOperationException("Insert not supported on URI: " + uri);
  /development/samples/browseable/SpeedTracker/Application/src/com.example.android.wearable.speedtracker/db/
LocationDbHelper.java 83 public final long insert(LocationEntry entry) { method in class:LocationDbHelper
97 // Insert the new row, returning the primary key value of the new row
98 return db.insert(TABLE_NAME, "null", values);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
sre_parse.py 147 def insert(self, index, code): member in class:SubPattern
148 self.data.insert(index, code)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
sre_parse.py 136 def insert(self, index, code): member in class:SubPattern
137 self.data.insert(index, code)
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/Library/
Misc.py 337 ## insert support
339 def insert(self, Key, Newkey, Newvalue, Order): member in class:Sdict
342 self._key_list.insert(Index, Newkey)
345 self._key_list.insert(Index + 1, Newkey)
    [all...]
  /external/antlr/antlr-3.4/runtime/C/include/
antlr3string.h 115 pANTLR3_UINT8 (*insert) (struct ANTLR3_STRING_struct * string, ANTLR3_UINT32 point, const char * newbit); member in struct:ANTLR3_STRING_struct
  /external/autotest/tko/
db.py 53 # if not present, insert statuses
348 def insert(self, table, data, commit=None): member in class:db_sql
350 'insert into table (keys) values (%s ... %s)', values
356 @param data: The insert data.
362 cmd = ('insert into %s (%s) values (%s)' %
437 """Insert a tko job.
478 self.insert('tko_jobs', data, commit=commit)
502 self.insert('tko_job_keyvals', data, commit=commit)
531 self.insert('tko_tests', data, commit=commit)
540 self.insert('tko_iteration_attributes', data
    [all...]
  /external/clang/include/clang/AST/
ASTVector.h 216 iterator insert(const ASTContext &C, iterator I, const T &Elt) { function in class:clang::ASTVector
237 iterator insert(const ASTContext &C, iterator I, size_type NumToInsert, function in class:clang::ASTVector
280 // Insert the non-overwritten middle part.
286 iterator insert(const ASTContext &C, iterator I, ItTy From, ItTy To) { function in class:clang::ASTVector
333 // Insert the non-overwritten middle part.
  /external/clang/include/clang/Analysis/Support/
BumpVector.h 165 /// insert - Insert some number of copies of element into a position. Return
167 iterator insert(iterator I, size_t Cnt, const_reference E, function in class:clang::BumpVector
  /external/clang/lib/Serialization/
ASTReaderInternals.h 56 void insert(DeclID ID) { function in struct:clang::serialization::reader::ASTDeclContextNameLookupTrait::data_type_builder
68 Found.insert(Data.begin(), Data.end());
71 if (Found.insert(ID).second)
107 To.insert(ID);
MultiOnDiskHashTable.h 114 Files.insert(PendingOverrides.begin(), PendingOverrides.end());
196 PendingOverrides.insert(PendingOverrides.end(), OverriddenFiles.begin(),
285 void insert(typename WriterInfo::key_type_ref Key, function in class:clang::serialization::MultiOnDiskHashTableGenerator
287 Gen.insert(Key, Data, Info);
311 Gen.insert(KV.first, Info.ImportData(KV.second), Info);

Completed in 1698 milliseconds

<<21222324252627282930>>