HomeSort by relevance Sort by last modified time
    Searched defs:insert (Results 151 - 175 of 541) sorted by null

1 2 3 4 5 67 8 91011>>

  /cts/tests/tests/provider/src/android/provider/cts/
BrowserTest.java 153 mProvider.insert(uri, value);
157 mProvider.insert(Browser.SEARCHES_URI, value);
255 mProvider.insert(Browser.BOOKMARKS_URI, value);
258 mProvider.insert(Browser.BOOKMARKS_URI, value);
261 mProvider.insert(Browser.BOOKMARKS_URI, value);
294 mProvider.insert(Browser.BOOKMARKS_URI, value);
298 mProvider.insert(Browser.BOOKMARKS_URI, value);
302 mProvider.insert(Browser.BOOKMARKS_URI, value);
421 mProvider.insert(Browser.BOOKMARKS_URI, value);
427 mProvider.insert(Browser.BOOKMARKS_URI, value)
    [all...]
MediaStore_Audio_AlbumsTest.java 77 // do not support direct insert operation of the albums
80 mContentResolver.insert(audioAlbumsUri, new ContentValues());
MediaStore_Audio_ArtistsTest.java 74 // do not support insert operation of the artists
76 mContentResolver.insert(artistsUri, new ContentValues());
MediaStore_Audio_Genres_MembersTest.java 101 Uri uri = mContentResolver.insert(Genres.EXTERNAL_CONTENT_URI, values);
112 // insert audio as the member of the genre
117 assertNotNull(mContentResolver.insert(membersUri, values));
207 uri = mContentResolver.insert(Genres.EXTERNAL_CONTENT_URI, values);
213 // insert the song into the second genre
218 assertNotNull(mContentResolver.insert(members2Uri, values));
278 Uri uri = mContentResolver.insert(Genres.INTERNAL_CONTENT_URI, values);
MediaStore_Images_ThumbnailsTest.java 101 Uri uri = mContentResolver.insert(Thumbnails.INTERNAL_CONTENT_URI, values);
141 // insert the image by bitmap
206 // insert
207 Uri uri = mContentResolver.insert(Thumbnails.EXTERNAL_CONTENT_URI, values);
237 // can not insert any data, so other operations can not be tested
239 mContentResolver.insert(Thumbnails.INTERNAL_CONTENT_URI, new ContentValues());
  /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
  /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/tools/emulator/opengl/system/egl/
eglDisplay.cpp 305 char *insert = ext; local
310 if (ext != insert) {
311 memcpy(insert, ext, len+1); // including space
313 insert += (len + 1);
319 *insert = '\0';
  /external/astl/src/
string.cpp 418 // array of char we insert the terminating '\0'.
535 string::iterator string::insert(iterator iter, char c) { function in class:std::string
  /external/bouncycastle/src/main/java/org/bouncycastle/asn1/x500/style/
IETFUtils.java 215 vBuf.insert(index, "\\");
  /external/clang/include/clang/AST/
ASTVector.h 213 iterator insert(ASTContext &C, iterator I, const T &Elt) { function in class:clang::ASTVector
234 iterator insert(ASTContext &C, iterator I, size_type NumToInsert, function in class:clang::ASTVector
277 // Insert the non-overwritten middle part.
283 iterator insert(ASTContext &C, iterator I, ItTy From, ItTy To) { function in class:clang::ASTVector
329 // Insert the non-overwritten middle part.
  /external/clang/include/clang/Analysis/Support/
BumpVector.h 160 /// insert - Insert some number of copies of element into a position. Return
162 iterator insert(iterator I, size_t Cnt, const_reference E, function in class:clang::BumpVector
  /external/clang/include/clang/Rewrite/
RewriteRope.h 53 /// For example, we could have a 1M RopePiece and want to insert something
165 void insert(unsigned Offset, const RopePiece &R);
210 Chunks.insert(0, MakeRopeString(Start, End));
213 void insert(unsigned Offset, const char *Start, const char *End) { function in class:clang::RewriteRope
214 assert(Offset <= size() && "Invalid position to insert!");
216 Chunks.insert(Offset, MakeRopeString(Start, End));
  /external/clang/tools/arcmt-test/
arcmt-test.cpp 89 virtual void insert(SourceLocation loc, StringRef text) { function in class:__anon5332::PrintTransforms
91 OS << "Insert: ";
  /external/jdiff/src/jdiff/
API.java 298 sb.insert(i+1, "EsS_tHaN");
301 sb.insert(i+1, "Nd_cHaR");
304 sb.insert(i+1, "uote_cHaR");
399 sb.insert(i, "/");
416 sb.insert(i+1, "#045;");
425 sb.insert(i, ">");
  /external/libvpx/examples/includes/HTML-Toc-0.91/
TocInsertor.pm 2 # function: Insert Table of Contents HTML::Toc, generated by
55 # Bias to not insert ToC
138 # No, insert only;
177 # No, insert;
191 # function: Insert ToC in string.
201 # Generate & insert ToC
205 # No, just insert ToC
206 # Insert by parsing file
215 # function: Do insert generated ToCs in file.
216 # args: - $aToc: (reference to array of) ToC object(s) to insert
718 sub insert { subroutine
    [all...]
  /external/libxml2/
hash.c 491 xmlHashEntryPtr insert; local
522 insert = NULL;
525 for (insert = &(table->table[key]); insert->next != NULL;
526 insert = insert->next) {
527 if ((insert->name == name) &&
528 (insert->name2 == name2) &&
529 (insert->name3 == name3))
533 if ((insert->name == name) &
607 xmlHashEntryPtr insert; local
    [all...]
  /external/llvm/include/llvm/ADT/
EquivalenceClasses.h 25 /// supports three efficient operations: insert an element into a class of its
37 /// EC.unionSets(1, 2); // insert 1, 2 into the same set
38 /// EC.insert(4); EC.insert(5); // insert 4, 5 into own sets
125 member_iterator LeaderIt = member_begin(insert(*MI));
127 unionSets(LeaderIt, member_begin(insert(*MI)));
173 member_iterator MI = findLeader(insert(V));
191 /// insert - Insert a new value into the union/find set, ignoring the reques
193 iterator insert(const ElemTy &Data) { function in class:llvm::EquivalenceClasses
    [all...]
ScopedHashTable.h 17 // HT.insert(0, 0);
18 // HT.insert(1, 1);
21 // HT.insert(0, 42);
187 void insert(const K &Key, const V &Val) { function in class:llvm::ScopedHashTable
206 /// (possibly not the current) scope. While it is ok to insert into a scope
207 /// that isn't the current one, it isn't ok to insert *underneath* an existing
SmallPtrSet.h 247 insert(I, E);
250 /// insert - This returns true if the pointer was new to the set, false if it
252 bool insert(PtrType Ptr) { function in class:llvm::SmallPtrSet
268 void insert(IterT I, IterT E) { function in class:llvm::SmallPtrSet
270 insert(*I);
  /external/llvm/include/llvm/MC/
MCInst.h 154 iterator insert(iterator I, const MCOperand &Op) { function in class:llvm::MCInst
155 return Operands.insert(I, Op);
  /external/opencv/cv/src/
_cvkdtree.hpp 156 // insert given points into the tree; return created node
158 int insert(__instype * first, __instype * last, __valuector ctor) { function in class:CvKDTree
174 node & n = *nodes.insert(nodes.end(), node());
185 // note that recursive insert may invalidate this ref
186 node & n = *nodes.insert(nodes.end(), node());
191 int left = insert(first, split, ctor);
193 int right = insert(split, last, ctor);
267 root_node = insert(first, last, ctor);
  /external/qemu/distrib/sdl-1.2.12/src/cdrom/bsdi/
SDL_syscdrom.c 301 char *insert; local
305 insert = SDL_strchr(drive, '?');
306 if ( insert != NULL ) {
307 *insert = j;
  /external/qemu/distrib/sdl-1.2.12/src/cdrom/linux/
SDL_syscdrom.c 340 char *insert; local
344 insert = SDL_strchr(drive, '?');
345 if ( insert != NULL ) {
346 *insert = j;

Completed in 2102 milliseconds

1 2 3 4 5 67 8 91011>>