HomeSort by relevance Sort by last modified time
    Searched defs:insert (Results 1 - 25 of 1140) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/core/java/android/content/
ContentInsertHandler.java 27 * Interface to insert data to ContentResolver
32 * insert data from InputStream to ContentResolver
38 public void insert(ContentResolver contentResolver, InputStream in) method in interface:ContentInsertHandler
42 * insert data from String to ContentResolver
47 public void insert(ContentResolver contentResolver, String in) method in interface:ContentInsertHandler
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/list_update_map_/
insert_fn_imps.hpp 46 insert(const_reference r_val) function in class:PB_DS_CLASS_C_DEC
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/rb_tree_map_/
insert_fn_imps.hpp 44 insert(const_reference r_value) function in class:PB_DS_CLASS_C_DEC
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/splay_tree_/
insert_fn_imps.hpp 44 insert(const_reference r_value) function in class:PB_DS_CLASS_C_DEC
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/list_update_map_/
insert_fn_imps.hpp 46 insert(const_reference r_val) function in class:PB_DS_CLASS_C_DEC
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/rb_tree_map_/
insert_fn_imps.hpp 44 insert(const_reference r_value) function in class:PB_DS_CLASS_C_DEC
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/splay_tree_/
insert_fn_imps.hpp 44 insert(const_reference r_value) function in class:PB_DS_CLASS_C_DEC
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/pb_ds/detail/list_update_map_/
insert_fn_imps.hpp 46 insert(const_reference r_val) function in class:PB_DS_CLASS_C_DEC
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/pb_ds/detail/rb_tree_map_/
insert_fn_imps.hpp 44 insert(const_reference r_value) function in class:PB_DS_CLASS_C_DEC
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/pb_ds/detail/splay_tree_/
insert_fn_imps.hpp 44 insert(const_reference r_value) function in class:PB_DS_CLASS_C_DEC
  /prebuilts/go/darwin-x86/src/go/types/
objset.go 17 // insert attempts to insert an object obj into objset s.
19 // the same name, insert leaves s unchanged and returns alt.
21 func (s *objset) insert(obj Object) Object { func
labels.go 50 // insert records a new label declaration for the current block.
52 func (b *block) insert(s *ast.LabeledStmt) { func
135 if alt := all.Insert(lbl); alt != nil {
140 b.insert(s)
  /prebuilts/go/linux-x86/src/go/types/
objset.go 17 // insert attempts to insert an object obj into objset s.
19 // the same name, insert leaves s unchanged and returns alt.
21 func (s *objset) insert(obj Object) Object { func
labels.go 50 // insert records a new label declaration for the current block.
52 func (b *block) insert(s *ast.LabeledStmt) { func
135 if alt := all.Insert(lbl); alt != nil {
140 b.insert(s)
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/ext/pb_ds/detail/list_update_map_/
insert_fn_imps.hpp 46 insert(const_reference r_val) function in class:PB_DS_CLASS_C_DEC
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/ext/pb_ds/detail/rb_tree_map_/
insert_fn_imps.hpp 44 insert(const_reference r_value) function in class:PB_DS_CLASS_C_DEC
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/ext/pb_ds/detail/splay_tree_/
insert_fn_imps.hpp 44 insert(const_reference r_value) function in class:PB_DS_CLASS_C_DEC
  /external/llvm/include/llvm/ADT/
StringSet.h 29 insert(X);
32 std::pair<typename base::iterator, bool> insert(StringRef Key) { function in class:llvm::StringSet
34 return base::insert(std::make_pair(Key, '\0'));
  /prebuilts/go/darwin-x86/doc/play/
tree.go 77 t = insert(t, (1+v)*k)
82 func insert(t *Tree, v int) *Tree { func
87 t.Left = insert(t.Left, v)
90 t.Right = insert(t.Right, v)
  /prebuilts/go/linux-x86/doc/play/
tree.go 77 t = insert(t, (1+v)*k)
82 func insert(t *Tree, v int) *Tree { func
87 t.Left = insert(t.Left, v)
90 t.Right = insert(t.Right, v)
  /external/eigen/Eigen/src/StlSupport/
StdVector.h 91 using vector_base::insert;
92 iterator insert(const_iterator position, const value_type& x) function in class:std::vector
93 { return vector_base::insert(position,x); }
94 void insert(const_iterator position, size_type new_size, const value_type& x) function in class:std::vector
95 { vector_base::insert(position, new_size, x); }
110 vector_base::insert(vector_base::end(), new_size - vector_base::size(), x);
120 vector_base::insert(vector_base::end(), new_size - vector_base::size(), x);
  /external/opencv3/3rdparty/openexr/IlmImf/
ImfFrameBuffer.cpp 77 FrameBuffer::insert (const char name[], const Slice &slice) function in class:Imf::FrameBuffer
90 FrameBuffer::insert (const string &name, const Slice &slice) function in class:Imf::FrameBuffer
92 insert (name.c_str(), slice);
  /frameworks/compile/mclinker/lib/Core/
InputTree.cpp 41 InputTree& InputTree::insert(TreeIteratorBase pRoot, function in class:mcld::InputTree
  /frameworks/compile/mclinker/lib/LD/
ELFSegmentFactory.cpp 83 ELFSegment* ELFSegmentFactory::insert(iterator pPosition, function in class:mcld::ELFSegmentFactory
86 return *(m_Segments.insert(pPosition, ELFSegment::Create(pType, pFlag)));
  /packages/providers/BookmarkProvider/src/com/android/bookmarkstore/
BookmarkProvider.java 44 public Uri insert(Uri uri, ContentValues values) { method in class:BookmarkProvider

Completed in 9067 milliseconds

1 2 3 4 5 6 7 8 91011>>