/prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/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
|
/prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/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/8/sources/cxx-stl/gnu-libstdc++/4.7/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/8/sources/cxx-stl/gnu-libstdc++/4.7/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
|
/prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.6/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/9/sources/cxx-stl/gnu-libstdc++/4.6/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/9/sources/cxx-stl/gnu-libstdc++/4.6/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
|
/prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.7/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/9/sources/cxx-stl/gnu-libstdc++/4.7/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/9/sources/cxx-stl/gnu-libstdc++/4.7/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
|
/prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/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/9/sources/cxx-stl/gnu-libstdc++/4.8/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/9/sources/cxx-stl/gnu-libstdc++/4.8/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/chromium_org/third_party/WebKit/Source/core/dom/ |
RawDataDocumentParser.h | 54 virtual void insert(const SegmentedString&) function in class:WebCore::RawDataDocumentParser
|
/external/llvm/include/llvm/ADT/ |
StringSet.h | 27 /// insert - Insert the specified key into the set. If the key already 28 /// exists in the set, return false and ignore the request, otherwise insert 30 bool insert(StringRef Key) { function in class:llvm::StringSet 32 // type will be default constructed which we use to detect insert.
|
/frameworks/compile/mclinker/lib/Core/ |
InputTree.cpp | 44 InputTree& InputTree::insert(TreeIteratorBase pRoot, function in class:InputTree
|
/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/llvm/include/llvm/MC/ |
MCObjectStreamer.h | 61 void insert(MCFragment *F) const { function in class:llvm::MCObjectStreamer 62 CurSectionData->getFragmentList().insert(CurInsertionPoint, F);
|
/external/marisa-trie/lib/marisa/ |
container.h | 19 void insert(std::size_t, const T &value) const { function in class:marisa::Container 40 void insert(std::size_t i, const T &value) { function in class:marisa::Container
|
query.h | 15 void insert(std::string *str) const { function in class:marisa::Query 16 str->insert(0, ptr_, length_); 41 void insert(std::string *str) const { function in class:marisa::CQuery 42 str->insert(0, str_);
|
/external/marisa-trie/v0_1_5/lib/marisa_alpha/ |
container.h | 19 void insert(std::size_t, const T &value) const { function in class:marisa_alpha::Container 40 void insert(std::size_t i, const T &value) { function in class:marisa_alpha::Container
|
query.h | 15 void insert(std::string *str) const { function in class:marisa_alpha::Query 16 str->insert(0, ptr_, length_); 41 void insert(std::string *str) const { function in class:marisa_alpha::CQuery 42 str->insert(0, str_);
|
/packages/providers/ContactsProvider/src/com/android/providers/contacts/ |
DatabaseModifier.java | 25 * An interface which wraps key database modify operations (insert, update, delete) to perform 31 * Use this method to insert a value which you would otherwise do using the 32 * {@link SQLiteDatabase#insert(String, String, ContentValues)} method. 34 public abstract long insert(String table, String nullColumnHack, ContentValues values); method in interface:DatabaseModifier 36 * Use this method to insert a value which you would otherwise do using the 37 * {@link DatabaseUtils.InsertHelper#insert(ContentValues)} method. 39 public abstract long insert(ContentValues values); method in interface:DatabaseModifier
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/dictionarypack/ |
PrivateLog.java | 75 insert(db, "Created table"); method 84 insert(db, "Upgrade finished"); method 87 private static void insert(SQLiteDatabase db, String event) { method in class:PrivateLog.DebugHelper 92 db.insert(LOG_TABLE_NAME, null, c); 100 DebugHelper.insert(l, event);
|
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/ |
ShadowSpannableStringBuilder.java | 36 public Editable insert(int where, CharSequence text) { method in class:ShadowSpannableStringBuilder 37 builder.insert(where, text);
|