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

1 2 34 5 6 7 8 91011>>

  /cts/tests/tests/content/SyncAccountAccessStubs/src/com/android/cts/stub/
StubProvider.java 45 public Uri insert(@NonNull Uri uri, @Nullable ContentValues values) { method in class:StubProvider
  /cts/tests/tests/location/src/android/location/cts/
MmsPduProvider.java 52 public Uri insert(Uri uri, ContentValues values) { method in class:MmsPduProvider
  /cts/tests/tests/syncmanager/apps/app1/src/android/content/syncmanager/cts/app/
SyncManagerCtsProvider.java 41 public Uri insert(Uri uri, ContentValues values) { method in class:SyncManagerCtsProvider
  /cts/tests/tests/telephony/src/android/telephony/cts/
MmsPduProvider.java 52 public Uri insert(Uri uri, ContentValues values) { method in class:MmsPduProvider
  /development/samples/ApiDemos/src/com/example/android/apis/os/
MmsFileProvider.java 51 public Uri insert(Uri uri, ContentValues values) { method in class:MmsFileProvider
  /external/clang/include/clang/ARCMigrate/
ARCMT.h 118 virtual void insert(SourceLocation loc, StringRef text) { } function in class:clang::arcmt::MigrationProcess::RewriteListener
  /external/clang/lib/Tooling/
FileMatchTrie.cpp 44 /// An insert of a path
46 /// - If the node is empty, insert 'p' into its storage and abort.
48 /// 's' of 'p2', put a new child into the map at 's' an insert the rest of
50 /// - Insert a new child for the last segment of 'p' and insert the rest of
53 /// An insert operation is linear in the number of a path's segments.
54 void insert(StringRef NewPath, unsigned ConsumedLength = 0) { function in class:clang::tooling::FileMatchTrieNode
75 Children[Element].insert(NewPath, ConsumedLength + Element.size() + 1);
174 void FileMatchTrie::insert(StringRef NewPath) { function in class:FileMatchTrie
175 Root->insert(NewPath)
    [all...]
  /external/deqp/framework/delibs/decpp/
deSTLUtil.hpp 110 bool insert (M& map, const typename M::key_type& key, const typename M::mapped_type& value) function in namespace:de
113 std::pair<typename M::iterator,bool> ret = map.insert(entry);
  /external/eigen/Eigen/src/StlSupport/
StdDeque.h 96 using deque_base::insert;
97 iterator insert(const_iterator position, const value_type& x) function in class:std::deque
98 { return deque_base::insert(position,x); }
99 void insert(const_iterator position, size_type new_size, const value_type& x) function in class:std::deque
100 { deque_base::insert(position, new_size, x); }
108 deque_base::insert(deque_base::end(), new_size - deque_base::size(), x);
118 deque_base::insert(deque_base::end(), new_size - deque_base::size(), x);
  /external/llvm/include/llvm/ADT/
SmallSet.h 68 /// insert - Insert an element into the set if it isn't already there.
75 std::pair<NoneType, bool> insert(const T &V) { function in class:llvm::SmallSet
77 return std::make_pair(None, Set.insert(V).second);
89 Set.insert(Vector.back());
92 Set.insert(V);
97 void insert(IterT I, IterT E) { function in class:llvm::SmallSet
99 insert(*I);
  /external/llvm/include/llvm/MC/
MCObjectStreamer.h 64 void insert(MCFragment *F) { function in class:llvm::MCObjectStreamer
67 CurSection->getFragmentList().insert(CurInsertionPoint, F);
  /external/pdfium/fxjs/xfa/
cjx_list.cpp 20 {"insert", insert_static},
47 CJS_Return CJX_List::insert(CJS_V8* runtime, function in class:CJX_List
57 GetXFAList()->Insert(pNewNode, pBeforeNode);
  /external/python/cpython2/Lib/idlelib/
Percolator.py 11 self.bottom.insert = self.redir.register("insert", self.insert)
23 def insert(self, index, chars, tags=None): member in class:Percolator
25 self.top.insert(index, chars, tags)
62 def insert(self, *args): member in class:_percolator.Tracer
63 print self.name, ": insert", args
64 self.delegate.insert(*args)
  /external/python/cpython3/Lib/idlelib/
percolator.py 12 self.bottom.insert = self.redir.register("insert", self.insert)
26 def insert(self, index, chars, tags=None): member in class:Percolator
28 self.top.insert(index, chars, tags)
66 def insert(self, *args): member in class:_percolator.Tracer
67 print(self.name, ": insert", args)
68 self.delegate.insert(*args)
  /external/sl4a/Common/src/com/googlecode/android_scripting/facade/telephony/
MmsFileProvider.java 48 public Uri insert(Uri uri, ContentValues values) { method in class:MmsFileProvider
  /external/swiftshader/third_party/LLVM/include/llvm/ADT/
SmallSet.h 57 /// insert - Insert an element into the set if it isn't already there.
58 bool insert(const T &V) { function in class:llvm::SmallSet
60 return Set.insert(V).second;
72 Set.insert(Vector.back());
75 Set.insert(V);
80 void insert(IterT I, IterT E) { function in class:llvm::SmallSet
82 insert(*I);
UniqueVector.h 34 /// insert - Append entry to the vector if it doesn't already exist. Returns
36 unsigned insert(const T &Entry) { function in class:llvm::UniqueVector
46 // Insert in vector.
  /external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
SmallSet.h 73 /// insert - Insert an element into the set if it isn't already there.
80 std::pair<NoneType, bool> insert(const T &V) { function in class:llvm::SmallSet
82 return std::make_pair(None, Set.insert(V).second);
94 Set.insert(Vector.back());
97 Set.insert(V);
102 void insert(IterT I, IterT E) { function in class:llvm::SmallSet
104 insert(*I);
  /external/tensorflow/tensorflow/contrib/lookup/
lookup_ops.py 292 Data can be inserted by calling the insert method. It does not support
301 table.insert(keys, values)
416 def insert(self, keys, values, name=None): member in class:MutableHashTable
420 keys: Keys to insert. Can be a tensor of any shape. Must match the
487 Data can be inserted by calling the insert method. It does not support
491 Compared to `MutableHashTable` the insert and lookup operations in a
503 table.insert(keys, values)
530 be used in insert or lookup operations.
620 def insert(self, keys, values, name=None): member in class:MutableDenseHashTable
624 keys: Keys to insert. Can be a tensor of any shape. Must match th
    [all...]
  /external/tensorflow/tensorflow/contrib/training/python/training/
sequence_queueing_state_saver_test.py 371 def insert(which): function in function:SequenceQueueingStateSaverTest.testStateSaverWithManyInputsReadWriteThread
373 # Insert varying length inputs
469 insert, args=(which,)) for which in range(batch_size_value)
524 def insert(insert_key): function in function:SequenceQueueingStateSaverTest.testStateSaverProcessesExamplesInOrder
525 # Insert varying length inputs
537 insert(global_insert_key)
593 # Insert varying length inputs
  /external/tensorflow/tensorflow/python/ops/
script_ops.py 83 def insert(self, func): member in class:FuncRegistry
198 token = _py_funcs.insert(func)
  /external/tensorflow/tensorflow/python/training/
saver_test_utils.py 59 def insert(self, keys, values): member in class:CheckpointedOp
  /external/v8/benchmarks/spinning-balls/
splay-tree.js 62 * @param {number} key Key to insert into the tree.
63 * @param {*} value Value to insert into the tree.
65 SplayTree.prototype.insert = function(key, value) { method in class:SplayTree
114 // Insert the original right child as the right child of the new
  /frameworks/base/core/java/android/database/sqlite/
SqliteWrapper.java 98 public static Uri insert(Context context, ContentResolver resolver, method in class:SqliteWrapper
101 return resolver.insert(uri, values);
103 Log.e(TAG, "Catch a SQLiteException when insert: ", e);
  /frameworks/base/core/java/android/text/
Editable.java 64 public Editable insert(int where, CharSequence text, int start, int end); method in interface:Editable
70 public Editable insert(int where, CharSequence text); method in interface:Editable

Completed in 519 milliseconds

1 2 34 5 6 7 8 91011>>