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

<<11121314151617181920>>

  /external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
SQLiteQueryBuilderTest.java 39 firstRecordId = database.insert(TABLE_NAME, null, values);
45 long secondRecordId = database.insert(TABLE_NAME, null, values);
51 database.insert(TABLE_NAME, null, values);
  /external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
ShadowContentProviderClient.java 63 public Uri insert(Uri url, ContentValues initialValues) throws RemoteException { method in class:ShadowContentProviderClient
64 return provider.insert(url, initialValues);
  /external/skia/src/core/
SkLRUCache.h 58 V* insert(const K& key, V value) { function in class:SkLRUCache
SkRTree.cpp 21 void SkRTree::insert(const SkRect boundsArray[], int N) { function in class:SkRTree
SkTSort.h 125 T insert = std::move(*next); local
130 } while (left < hole && lessThan(insert, *(hole - 1)));
131 *hole = std::move(insert);
  /external/skia/src/pathops/
SkIntersections.cpp 34 int SkIntersections::insert(double one, double two, const SkDPoint& pt) { function in class:SkIntersections
103 (void) insert(one, two, pt1);
  /external/skqp/src/core/
SkLRUCache.h 58 V* insert(const K& key, V value) { function in class:SkLRUCache
SkRTree.cpp 21 void SkRTree::insert(const SkRect boundsArray[], int N) { function in class:SkRTree
SkTSort.h 125 T insert = std::move(*next); local
130 } while (left < hole && lessThan(insert, *(hole - 1)));
131 *hole = std::move(insert);
  /external/skqp/src/pathops/
SkIntersections.cpp 34 int SkIntersections::insert(double one, double two, const SkDPoint& pt) { function in class:SkIntersections
103 (void) insert(one, two, pt1);
  /external/sl4a/ScriptingLayerForAndroid/src/com/googlecode/android_scripting/provider/
ApiProvider.java 84 public Uri insert(Uri uri, ContentValues values) { method in class:ApiProvider
  /external/tensorflow/tensorflow/core/platform/cloud/
expiring_lru_cache.h 44 /// Insert `value` with key `key`. This will replace any previous entry with
46 void Insert(const string& key, const T& value) {
134 auto insert = cache_.insert(std::make_pair(key, entry)); local
135 if (!insert.second) {
136 lru_list_.erase(insert.first->second.lru_iterator);
137 insert.first->second = entry;
  /external/tensorflow/tensorflow/python/kernel_tests/
barrier_ops_test.py 165 # The next insert completes the element with key "c". The next take_t
329 def insert(sess, i): function in function:BarrierTest.testParallelInsertManyTakeMany
340 target=insert, args=(sess, i)) for i in range(num_iterations)
532 def insert(sess, i): function in function:BarrierTest._testParallelInsertManyTakeManyCloseHalfwayThrough
546 target=insert, args=(sess, i)) for i in range(num_iterations)
  /external/toolchain-utils/automation/common/
command.py 50 self._suffix.insert(0, Shell('popd'))
55 self._suffix.insert(0, Shell('unset', env_var))
62 self._suffix.insert(0, Shell('umask', '$%s' % umask_save_var))
98 def insert(self, index, command): member in class:AbstractCommandContainer
99 self._commands.insert(index, self._ValidateCommandType(command))
157 pipe.insert(str(Shell('cat', self._input), 0))
  /external/tremolo/Tremolo/
misc.c 143 int insert; local
182 insert=((head *)ptr)->ptr;
183 insertlist[insert]=pinsert;
184 pinsert=insert;
186 if(pointers[insert]==NULL){
195 pointers[insert]=NULL;
  /external/turbine/java/com/google/turbine/binder/lookup/
TopLevelIndex.java 68 private Node insert(String name, ClassSymbol sym) { method in class:TopLevelIndex.Node
87 // Freeze the index. The immutability of nodes is enforced by making insert private, doing
96 public boolean insert(ClassSymbol sym) { method in class:TopLevelIndex.Builder
104 curr = curr.insert(simpleName, nodeSym);
  /external/turbine/javatests/com/google/turbine/binder/lookup/
TopLevelIndexTest.java 36 builder.insert(new ClassSymbol("java/util/Map"));
37 builder.insert(new ClassSymbol("java/util/List"));
38 builder.insert(new ClassSymbol("com/google/common/base/Optional"));
80 builder.insert(new ClassSymbol("java/Foo"));
81 assertThat(builder.insert(new ClassSymbol("java/Foo/Bar"))).isFalse();
91 builder.insert(new ClassSymbol("java/Foo/Bar"));
92 assertThat(builder.insert(new ClassSymbol("java/Foo"))).isFalse();
  /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) { method in class:SplayTree
209 // Insert the original right child as the right child of the new
  /external/v8/src/zone/
zone-handle-set.h 42 void insert(Handle<T> handle, Zone* zone) { function in class:v8::internal::final
105 that.insert(value, zone);
  /frameworks/av/media/libmedia/include/media/
IMediaSource.h 167 uint64_t insert(const sp<IMemory> &mem) { function in struct:android::BnMediaSource::IndexCache
  /frameworks/av/media/libstagefright/codecs/amrwb/src/
lagconceal.cpp 102 void insert(int16 array[], int16 num, int16 x);
339 insert(array, i, array[i]);
347 void insert(int16 array[], int16 n, int16 x) function
  /frameworks/base/core/java/android/provider/
SearchIndexablesProvider.java 187 public final Uri insert(Uri uri, ContentValues values) { method in class:SearchIndexablesProvider
188 throw new UnsupportedOperationException("Insert not supported");
  /frameworks/base/media/java/android/media/
MediaInserter.java 48 public void insert(Uri tableUri, ContentValues values) throws RemoteException { method in class:MediaInserter
49 insert(tableUri, values, false); method
53 insert(tableUri, values, true); method
56 private void insert(Uri tableUri, ContentValues values, boolean priority) throws RemoteException { method in class:MediaInserter
  /frameworks/base/services/core/java/com/android/server/am/
DumpHeapProvider.java 62 public Uri insert(Uri uri, ContentValues values) { method in class:DumpHeapProvider
  /frameworks/base/test-mock/src/android/test/mock/
MockIContentProvider.java 64 public Uri insert(String callingPackage, Uri url, ContentValues initialValues) method in class:MockIContentProvider

Completed in 1634 milliseconds

<<11121314151617181920>>