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

1 2 3 45 6 7 8 91011>>

  /cts/tests/tests/provider/src/android/provider/cts/
MediaStore_Audio_Artists_AlbumsTest.java 92 // do not support insert operation of the albums
94 mContentResolver.insert(artistsAlbumsUri, new ContentValues());
MediaStore_Video_MediaTest.java 95 // insert
96 Uri uri = mContentResolver.insert(Media.EXTERNAL_CONTENT_URI, values);
189 // can not insert any data, so other operations can not be tested
191 mContentResolver.insert(Media.INTERNAL_CONTENT_URI, new ContentValues());
  /dalvik/vm/hprof/
HprofOutput.cpp 254 unsigned char *insert = rec->body + rec->length; local
256 U2_TO_BUF_BE(insert, 0, *values++);
257 insert += sizeof(*values);
279 unsigned char *insert = rec->body + rec->length; local
281 U4_TO_BUF_BE(insert, 0, *values++);
282 insert += sizeof(*values);
304 unsigned char *insert = rec->body + rec->length; local
306 U8_TO_BUF_BE(insert, 0, *values++);
307 insert += sizeof(*values);
  /development/samples/MySampleRss/src/com/example/codelab/rssexample/
RssContentProvider.java 180 public Uri insert(Uri requestUri, ContentValues initialValues) { method in class:RssContentProvider
185 rowId = mDb.insert(DATABASE_TABLE_NAME, "rawcontent", initialValues);
  /development/samples/SearchableDictionary/src/com/example/android/searchabledict/
DictionaryProvider.java 189 public Uri insert(Uri uri, ContentValues values) { method in class:DictionaryProvider
  /external/blktrace/btt/
proc.c 157 static void insert(struct p_info *pip) function
218 insert(pip);
  /external/libvpx/examples/includes/HTML-Toc-0.91/
TocUpdator.pm 438 #--- HTML::TocUpdator::insert() -----------------------------------------------
439 # function: Insert ToC in string.
441 # - $aString: string to insert ToC in.
444 sub insert { subroutine
447 # Do start insert
449 } # insert()
453 # function: Insert ToC in file.
455 # - $aFile: File to insert ToC in.
461 # Do start insert
520 # - $aToc: Reference to ToC to insert
    [all...]
  /external/libxslt/libxslt/
templates.c 198 xmlNodePtr oldInsert, insert = NULL; local
213 insert = xmlNewDocNode(ctxt->output, NULL,
215 if (insert == NULL) {
220 oldInsert = ctxt->insert;
221 ctxt->insert = insert;
227 ctxt->insert = oldInsert;
229 ret = xmlNodeGetContent(insert);
230 if (insert != NULL)
231 xmlFreeNode(insert);
    [all...]
  /external/llvm/include/llvm/ADT/
DenseSet.h 115 std::pair<iterator, bool> insert(const ValueT &V) { function in class:llvm::DenseSet
116 return TheMap.insert(std::make_pair(V, 0));
121 void insert(InputIt I, InputIt E) { function in class:llvm::DenseSet
123 insert(*I);
  /external/llvm/include/llvm/Analysis/
LoopIterator.h 148 return DFS.PostNumbers.insert(std::make_pair(BB, 0)).second;
172 bool insert(BasicBlock *BB) { function in class:llvm::LoopBlocksTraversal
  /external/mesa3d/src/glsl/
loop_analysis.cpp 52 loop_state::insert(ir_loop *ir) function in class:loop_state
76 loop_variable_state::insert(ir_variable *var) function in class:loop_variable_state
91 loop_variable_state::insert(ir_if *if_stmt) function in class:loop_variable_state
167 lv = ls->insert(var);
197 loop_variable_state *ls = this->loops->insert(ir);
219 ls->insert(if_stmt);
  /external/qemu/distrib/sdl-1.2.12/src/cdrom/freebsd/
SDL_syscdrom.c 188 char *insert; local
192 insert = SDL_strchr(drive, '?');
193 if ( insert != NULL ) {
194 *insert = j;
  /external/qemu/distrib/sdl-1.2.12/src/cdrom/openbsd/
SDL_syscdrom.c 197 char *insert; local
201 insert = SDL_strchr(drive, '?');
202 if ( insert != NULL ) {
203 *insert = j;
  /external/skia/gpu/include/
GrTDArray.h 94 * index may be [0..count], so that you can insert at the end (like append)
96 T* insert(int index) { function in class:GrTDArray
  /external/skia/src/animator/
SkTDArray_Experimental.h 57 int32_t* insert(U16CPU index, U16CPU count, const int32_t* src);
129 T* insert(U16CPU index) { return this->insert(index, 1, NULL); } function in class:SkTDS32Array
130 T* insert(U16CPU index, U16CPU count, const T* src = NULL) { function in class:SkTDS32Array
131 return (T*) SkDS32Array::insert(index, count, (const int32_t*) src); }
  /external/skia/src/pdf/
SkPDFImage.cpp 280 insert("SMask", new SkPDFObjRef(mask))->unref();
320 insert("Type", new SkPDFName("XObject"))->unref();
321 insert("Subtype", new SkPDFName("Image"))->unref();
328 insert("Width", one.get());
329 insert("Height", one.get());
331 insert("Width", new SkPDFInt(srcRect.width()))->unref();
332 insert("Height", new SkPDFInt(srcRect.height()))->unref();
337 insert("ColorSpace", new SkPDFName("DeviceGray"))->unref();
340 insert("ColorSpace",
343 insert("ColorSpace", new SkPDFName("DeviceRGB"))->unref()
376 SkPDFObject* SkPDFImage::insert(SkPDFName* key, SkPDFObject* value) { function in class:SkPDFImage
380 SkPDFObject* SkPDFImage::insert(const char key[], SkPDFObject* value) { function in class:SkPDFImage
    [all...]
  /external/stlport/stlport/stl/
_vector.c 223 vector<_Tp, _Alloc>::insert(iterator __pos, const _Tp& __x) { function in class:_Alloc
  /external/stlport/test/unit/
deque_test.cpp 25 CPPUNIT_TEST(insert);
37 void insert();
80 void DequeTest::insert() function in class:DequeTest
91 dit = d.insert(d.begin(), 3);
98 dit = d.insert(d.begin() + 1, 4);
105 dit = d.insert(d.end(), 5);
112 dit = d.insert(d.end() - 1, 6);
119 d.insert(d.begin(), 2, 7);
125 //There is more elements to insert than elements before insertion position
126 d.insert(d.begin() + 1, 2, 8)
    [all...]
  /external/v8/benchmarks/
splay.js 72 // Insert new node with a unique key.
78 splayTree.insert(key, payload);
157 * @param {number} key Key to insert into the tree.
158 * @param {*} value Value to insert into the tree.
160 SplayTree.prototype.insert = function(key, value) {
209 // Insert the original right child as the right child of the new
  /external/v8/tools/
splaytree.js 64 * @param {number} key Key to insert into the tree.
65 * @param {*} value Value to insert into the tree.
67 SplayTree.prototype.insert = function(key, value) {
116 // Insert the original right child as the right child of the new
  /external/webkit/PerformanceTests/SunSpider/tests/v8-v4/
v8-splay.js 67 // Insert new node with a unique key.
72 splayTree.insert(key, GeneratePayloadTree(kSplayTreePayloadDepth, key));
151 * @param {number} key Key to insert into the tree.
152 * @param {*} value Value to insert into the tree.
154 SplayTree.prototype.insert = function(key, value) {
203 // Insert the original right child as the right child of the new
  /external/webkit/PerformanceTests/SunSpider/tests/v8-v5/
v8-splay.js 67 // Insert new node with a unique key.
72 splayTree.insert(key, GeneratePayloadTree(kSplayTreePayloadDepth, key));
151 * @param {number} key Key to insert into the tree.
152 * @param {*} value Value to insert into the tree.
154 SplayTree.prototype.insert = function(key, value) {
203 // Insert the original right child as the right child of the new
  /external/webkit/PerformanceTests/SunSpider/tests/v8-v6/
v8-splay.js 67 // Insert new node with a unique key.
73 splayTree.insert(key, payload);
152 * @param {number} key Key to insert into the tree.
153 * @param {*} value Value to insert into the tree.
155 SplayTree.prototype.insert = function(key, value) {
204 // Insert the original right child as the right child of the new
  /external/webkit/Source/WebCore/dom/
XMLDocumentParser.cpp 119 void XMLDocumentParser::insert(const SegmentedString&) function in class:WebCore::XMLDocumentParser
  /frameworks/base/core/java/android/text/method/
CharacterPickerDialog.java 52 * the sense of <code>insert</code>) into <code>text</code>.
56 boolean insert) {
62 mInsert = insert;
96 mText.insert(selEnd, replace);

Completed in 2438 milliseconds

1 2 3 45 6 7 8 91011>>