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

<<11121314151617181920>>

  /cts/tests/tests/database/src/android/database/sqlite/cts/
SQLiteFtsTest.java 115 mDatabase.insert(table, null, values);
  /cts/tests/tests/provider/src/android/provider/cts/
MediaStoreTest.java 55 mContentResolver.insert(mScannerUri, values);
70 // insert
73 mContentResolver.insert(mScannerUri, values));
MediaStore_Audio_Artists_AlbumsTest.java 80 // do not support insert operation of the albums
82 mContentResolver.insert(artistsAlbumsUri, new ContentValues());
  /development/samples/ApiDemos/src/com/example/android/apis/content/
FileProvider.java 90 public Uri insert(Uri uri, ContentValues values) { method in class:FileProvider
  /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
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/classes/
bitvec.py 131 def insert(self, index, item): member in class:BitVec
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
UserList.py 77 def insert(self, i, item): self.data.insert(i, item) member in class:UserList
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_bisect.py 202 def insert(self, index, item): member in class:TestInsort.test_listDerived.List
203 self.data.insert(index, item)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/webchecker/
wcgui.py 178 self.__rootentry.insert(END, root)
285 self.__bad.insert(url)
296 self.__done.insert(url)
298 self.__todo.insert(url)
303 self.__done.insert(url)
309 self.__errors.insert((url, ''))
350 def insert(self, url): member in class:ListPanel
356 self.list.insert(i, self.checker.format_url(url))
358 self.items.insert(i, url)
391 self.text.insert(END, s)
    [all...]
  /external/annotation-tools/scene-lib/src/annotations/io/classfile/
ClassFileWriter.java 34 = "usage: insert-annotations [options] class1 indexfile1 class2 indexfile2 ..."
39 + "the index file a.b.C.jaif and insert them into the class a.b.C, then"
54 * tool, one should probably use the insert() methods instead.
82 System.out.printf("insert-annotations (%s)",
114 System.out.println("Run insert-annotations --help for usage information");
123 // annotations loaded from index file into scene, now insert them
128 insert(scene, className, true); method
133 insert(scene, className, outputFileName, true); method
139 System.out.println("Unknown error trying to insert annotations from: " +
157 * @param scene the scene containing the annotations to insert into a clas
169 public static void insert( method in class:ClassFileWriter
206 public static void insert(AScene scene, InputStream in, method in class:ClassFileWriter
235 public static void insert(AScene scene, method in class:ClassFileWriter
    [all...]
  /external/autotest/client/site_tests/firmware_TouchMTB/
firmware_log.py 118 """Insert the key to this metric."""
412 """Insert a msg into the details."""
454 """Insert the gesture log into the round log."""
520 def insert(self, key, value): member in class:SimpleTable
521 """Insert a row. If the key exists already, the value is appended."""
620 self.log_table.insert(key, vlog)
  /external/blktrace/btt/
proc.c 157 static void insert(struct p_info *pip) function
218 insert(pip);
  /external/clang/include/clang/Rewrite/Core/
RewriteRope.h 55 /// For example, we could have a 1M RopePiece and want to insert something
153 void insert(unsigned Offset, const RopePiece &R);
193 Chunks.insert(0, MakeRopeString(Start, End));
196 void insert(unsigned Offset, const char *Start, const char *End) { function in class:clang::RewriteRope
197 assert(Offset <= size() && "Invalid position to insert!");
199 Chunks.insert(Offset, MakeRopeString(Start, End));
  /external/clang/lib/Edit/
Commit.cpp 43 bool Commit::insert(SourceLocation loc, StringRef text, function in class:Commit
100 bool commitableBefore = insert(range.getBegin(), before, /*afterToken=*/false,
106 commitableAfter = insert(range.getEnd(), after);
  /external/clang/test/SemaCXX/
flexible-array-test.cpp 6 void insert(const Key &, const T &);
12 void QMap<Key, T>::insert(const Key &, const T &avalue) function in class:QMap
41 eventForId.insert(ptr->wd, *ptr);
  /external/icu/android_icu4j/src/main/java/android/icu/impl/number/
Padder.java 113 string.insert(index, paddingString, null);
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/
UTF16Util.java 132 buffer.insert(i, (char)ch);
134 buffer.insert(i, (char)(0xd7c0 + (ch >> 10))).insert(i + 1, (char)(0xdc00 + (ch & 0x3ff)));
162 buffer.insert(i+1, (char)(0xdc00 + (ch & 0x3ff)));
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/number/
Padder.java 109 string.insert(index, paddingString, null);
  /external/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/test/
UTF16Util.java 128 buffer.insert(i, (char)ch);
130 buffer.insert(i, (char)(0xd7c0 + (ch >> 10))).insert(i + 1, (char)(0xdc00 + (ch & 0x3ff)));
158 buffer.insert(i+1, (char)(0xdc00 + (ch & 0x3ff)));
  /external/libchrome/base/memory/
scoped_vector.h 112 iterator insert(iterator position, T* x) { function in class:ScopedVector
113 return v_.insert(position, x);
116 iterator insert(iterator position, std::unique_ptr<T> x) { function in class:ScopedVector
117 return v_.insert(position, x.release());
122 void insert(iterator position, InputIterator first, InputIterator last) { function in class:ScopedVector
123 v_.insert(position, first, last);
  /external/libcups/cups/
options.c 71 int insert, /* Insertion point */ local
94 insert = 0;
99 insert = cups_find_option(name, num_options, *options, num_options - 1,
103 insert ++;
113 insert));
128 if (insert < num_options)
131 (int)(num_options - insert)));
132 memmove(temp + insert + 1, temp + insert, (size_t)(num_options - insert) * sizeof(cups_option_t))
    [all...]
  /external/linux-kselftest/tools/testing/selftests/timers/
leap-a-day.c 7 * This test signals the kernel to insert a leap second
184 int insert = 1; local
261 /* Set the leap second insert flag */
263 if (insert)
320 if (insert)
360 insert = !insert;
  /external/llvm/include/llvm/ADT/
MapVector.h 77 std::pair<typename MapType::iterator, bool> Result = Map.insert(Pair);
91 std::pair<iterator, bool> insert(const std::pair<KeyT, ValueT> &KV) { function in class:llvm::MapVector
93 std::pair<typename MapType::iterator, bool> Result = Map.insert(Pair);
PriorityWorklist.h 40 /// ignored. It is an error to insert such a value, and popping elements will
86 /// Insert a new element into the PriorityWorklist.
88 bool insert(const T &X) { function in class:llvm::PriorityWorklist
89 assert(X != T() && "Cannot insert a null (default constructed) value!");
90 auto InsertResult = M.insert({X, V.size()});

Completed in 1987 milliseconds

<<11121314151617181920>>