/external/llvm/include/llvm/ADT/ |
DenseMap.h | 151 std::pair<iterator, bool> insert(const std::pair<KeyT, ValueT> &KV) { function in class:llvm::DenseMapBase 157 // Otherwise, insert the new element. 166 std::pair<iterator, bool> insert(std::pair<KeyT, ValueT> &&KV) { function in class:llvm::DenseMapBase 172 // Otherwise, insert the new element. 180 /// insert - Range insertion of pairs. 182 void insert(InputIt I, InputIt E) { function in class:llvm::DenseMapBase 184 insert(*I); 279 // Insert all the old elements. 285 // Insert the key/value into the new table. 492 // Insert it and return the default value [all...] |
ilist.h | 410 iterator insert(iterator where, NodeTy *New) { function in class:llvm::iplist 428 return insert(begin(), New); 430 return insert(++where, New); 551 void push_front(NodeTy *val) { insert(begin(), val); } 552 void push_back(NodeTy *val) { insert(end(), val); } 562 // Special forms of insert... 563 template<class InIt> void insert(iterator where, InIt first, InIt last) { function in class:llvm::iplist 564 for (; first != last; ++first) insert(where, *first); 644 insert(this->begin(), right.begin(), right.end()); 647 insert(this->begin(), count, NodeTy()) 662 iterator insert(iterator where, const NodeTy &val) { function in struct:llvm::ilist 671 void insert(iterator where, size_type count, const NodeTy &val) { function in struct:llvm::ilist [all...] |
/external/llvm/include/llvm/CodeGen/ |
MachineBasicBlock.h | 421 /// not a PHI or a label. This is the correct point to insert copies at the 452 /// Insert MI into the instruction list before I, possibly inside a bundle. 457 /// MIBundleBuilder::insert() for a more reliable way of doing that. 458 instr_iterator insert(instr_iterator I, MachineInstr *M); 460 /// Insert a range of instructions into the instruction list before I. 462 void insert(iterator I, IT S, IT E) { function in class:llvm::MachineBasicBlock 463 Insts.insert(I.getInstrIterator(), S, E); 466 /// Insert MI into the instruction list before I. 467 iterator insert(iterator I, MachineInstr *MI) { function in class:llvm::MachineBasicBlock 469 "Cannot insert instruction with bundle flags") [all...] |
/external/skia/src/pipe/ |
SkGPipeWrite.cpp | 180 virtual bool insert(const SkBitmap& bitmap, int32_t slot) SK_OVERRIDE; 184 * insert will crash. 770 int32_t bitmapIndex = fBitmapHeap->insert(bm); 1232 bool BitmapShuttle::insert(const SkBitmap& bitmap, int32_t slot) { function in class:BitmapShuttle [all...] |
/external/stlport/stlport/stl/ |
_bvector.h | 439 __pos = insert(__pos, *__first); 600 insert(end(), __n - size(), __x); 633 insert(end(), __first, __last); 646 insert(end(), __mid, __last); 685 iterator insert(iterator __position, bool __x = bool()) { function in class:__BVECTOR_QUALIFIED 713 void insert(iterator __position, function in class:__BVECTOR_QUALIFIED 719 void insert(iterator __position, function in class:__BVECTOR_QUALIFIED 741 void insert(iterator __position, const bool* __first, const bool* __last) { function in class:__BVECTOR_QUALIFIED 783 void insert(iterator __position, size_type __n, bool __x) { function in class:__BVECTOR_QUALIFIED 804 insert(end(), __new_size - size(), __x) [all...] |
_deque.h | 590 insert(end(), __n - size(), __val); 630 insert(end(), __first, __last); 643 insert(end(), __mid, __last); 657 insert(end(), __mid, __last); 727 public: // Insert 730 iterator insert(iterator __pos, const value_type& __x = _STLP_DEFAULT_CONSTRUCTED(_Tp)) { function in class:deque 732 iterator insert(iterator __pos, const value_type& __x) { 753 iterator insert(iterator __pos) function in class:deque 754 { return insert(__pos, _STLP_DEFAULT_CONSTRUCTED(_Tp)); } 757 void insert(iterator __pos, size_type __n, const value_type& __x function in class:deque 783 void insert(iterator __pos, _InputIterator __first, _InputIterator __last) { function in class:deque [all...] |
/frameworks/base/cmds/content/src/com/android/commands/content/ |
Content.java | 34 * can insert, update, and remove records in a content provider. For example, 41 * adb shell content insert --uri content://settings/secure --bind name:s:new_setting 68 + "usage: adb shell content insert --uri <URI> [--user <USER_ID>]" 78 + " adb shell content insert --uri content://settings/secure --bind name:s:new_setting" 115 private static final String ARGUMENT_INSERT = "insert"; 406 provider.insert(null, mUri, mContentValues);
|
/frameworks/base/services/java/com/android/server/ |
LockSettingsService.java | 405 db.insert(TABLE, null, cv); 495 "INSERT OR REPLACE INTO locksettings(name,user,value) VALUES(?,?,?);");
|
/libcore/luni/src/test/java/libcore/java/sql/ |
OldConnectionTest.java | 396 st.execute("insert into zoo (id, name, family) values (3, 'Chichichi', 'monkey');"); 423 st.execute("insert into zoo (id, name, family) values (4, 'Burenka', 'cow');"); 474 st.execute("insert into zoo (id, name, family) values (3, 'ChiChiChi', 'monkey');"); 488 st.execute("insert into zoo (id, name, family) values (3, 'ChiChiChi', 'monkey');"); 502 st.executeUpdate("insert into zoo (id, name, family) values (4, 'ChaChaCha', 'monkey');"); 516 st.execute("insert into zoo (id, name, family) values (4, 'ChiChiChi', 'monkey');"); 567 st.execute("insert into zoo (id, name, family) values (4, 'ChiChiChi', 'monkey');"); 579 st.execute("insert into zoo (id, name, family) values (4, 'ChiChiChi', 'monkey');"); 834 "insert into zoo (id, name, family) values (3, 'Chichichi', 'monkey');", 839 "insert into zoo (id, name, family) values (3, 'Chichichi', 'monkey');" 1179 String insert = "insert into zoo (id, name, family) values (?, ?, ?);"; local 1188 String insert = "insert into zoo (id, name, family) values (?, ?, ?);"; local 1858 String insert = "insert into zoo (id, name, family) values (?, ?, ?);"; local 2089 String insert = "insert into zoo (id, name, family) values (?, ?, ?);"; local [all...] |
OldPreparedStatementTest.java | 70 "insert into type (BoolVal, IntVal, LongVal, Bint, Tint, Sint, Mint," 116 .prepareStatement("INSERT INTO zoo VALUES (3,'Tuzik', ?);"); 117 ps.addBatch("INSERT INTO zoo VALUES (?,'Burenka', ?); "); 118 ps.addBatch("INSERT INTO zoo VALUES (?,'Mashka','cat')"); 149 .prepareStatement("INSERT INTO zoo VALUES (3,'Tuzik', ?);"); 162 .prepareStatement("INSERT INTO zoo VALUES (3,'Tuzik', ?);"); 181 String query = "insert into zoo(id, family, name) values(?, ?, 'unknown animal')"; 274 "insert into hutch (id, animal_id, address) values (1, ?,'Birds-house, 1');", 275 "insert into hutch (id, animal_id, address) values (?, 1, 'Horse-house, 5');", 327 String[] queries1 = { "insert into hutch (id, animal_id, address) values (1, ?, 'Birds-house, 1');" 1586 String insert local 1615 String insert local [all...] |
OldStatementTest.java | 35 st.addBatch("INSERT INTO zoo VALUES (3,'Tuzik','dog')"); 36 st.addBatch("INSERT INTO zoo VALUES (4,'Mashka','cat')"); 168 st.addBatch("INSERT INTO zoo VALUES (3,'Tuzik','dog'); "); 169 st.addBatch("INSERT INTO zoo VALUES (4,'Mashka','cat')"); 220 "insert into hutch (id, animal_id, address) values (1, 2, 'Birds-house, 1');", 221 "insert into hutch (id, animal_id, address) values (2, 1, 'Horse-house, 5');", 247 "insert into hutch (id, animal_id, address) values (1, 2, 10);", 274 "insert into hutch (id, animal_id, address) values (1, 2, 'Birds-house, 1');", 275 "insert into hutch (id, animal_id, address) values (2, 1, 'Horse-house, 5');", 537 "insert into zoo (id, name, family) values (3, 'Vorobey', 'sparrow');" 988 String insert = "insert into zoo (id, name, family) values (8, 'Tuzik', 'dog');"; local 1177 String insert = "insert into zoo (id, name, family) values (4, 'Vorobuy', 'bear');"; local [all...] |
/ndk/sources/cxx-stl/stlport/stlport/stl/ |
_bvector.h | 439 __pos = insert(__pos, *__first); 600 insert(end(), __n - size(), __x); 633 insert(end(), __first, __last); 646 insert(end(), __mid, __last); 685 iterator insert(iterator __position, bool __x = bool()) { function in class:__BVECTOR_QUALIFIED 713 void insert(iterator __position, function in class:__BVECTOR_QUALIFIED 719 void insert(iterator __position, function in class:__BVECTOR_QUALIFIED 741 void insert(iterator __position, const bool* __first, const bool* __last) { function in class:__BVECTOR_QUALIFIED 783 void insert(iterator __position, size_type __n, bool __x) { function in class:__BVECTOR_QUALIFIED 804 insert(end(), __new_size - size(), __x) [all...] |
_deque.h | 590 insert(end(), __n - size(), __val); 630 insert(end(), __first, __last); 643 insert(end(), __mid, __last); 657 insert(end(), __mid, __last); 727 public: // Insert 730 iterator insert(iterator __pos, const value_type& __x = _STLP_DEFAULT_CONSTRUCTED(_Tp)) { function in class:deque 732 iterator insert(iterator __pos, const value_type& __x) { 753 iterator insert(iterator __pos) function in class:deque 754 { return insert(__pos, _STLP_DEFAULT_CONSTRUCTED(_Tp)); } 757 void insert(iterator __pos, size_type __n, const value_type& __x function in class:deque 783 void insert(iterator __pos, _InputIterator __first, _InputIterator __last) { function in class:deque [all...] |
/packages/apps/ContactsCommon/tests/src/com/android/contacts/common/ |
RawContactDeltaListTests.java | 305 final RawContactDelta insert = getInsert(); local 306 final RawContactDeltaList set = buildSet(insert); 327 final RawContactDelta insert = getInsert(); local 328 final RawContactDeltaList set = buildSet(update, insert); 330 // New insert should only create one rule 413 // insert, since RED was deleted on remote side 453 // Insert new phone locally 462 // Merge in the second version, verify that our insert remains 478 // Add new contact locally, should remain insert 491 // Merge in the second version, verify that our insert remain [all...] |
/packages/apps/Dialer/tests/src/com/android/dialer/calllog/ |
CallLogFragmentTest.java | 146 // Insert the first batch of entries. 198 insert(TEST_NUMBER, Calls.PRESENTATION_ALLOWED, NOW, 0, Calls.INCOMING_TYPE); method 307 insert(TEST_NUMBER, Calls.PRESENTATION_ALLOWED, NOW, 0, Calls.INCOMING_TYPE); method 318 insert(TEST_NUMBER, Calls.PRESENTATION_ALLOWED, NOW, 0, Calls.INCOMING_TYPE); method 455 // HELPERS to insert numbers in the call log DB. 459 * Insert a certain number of random numbers in the DB. Makes sure 479 * Insert a new call entry in the test DB. 493 insert(number, Calls.PRESENTATION_ALLOWED, date, duration, type); method 510 * Insert a new call entry in the test DB. 518 private void insert(String number, int presentation, long date, int duration, int type) method in class:CallLogFragmentTest [all...] |
/packages/apps/Exchange/src/com/android/exchange/provider/ |
ExchangeDirectoryProvider.java | 638 public Uri insert(Uri uri, ContentValues values) { method in class:ExchangeDirectoryProvider
|
/packages/apps/Launcher2/src/com/android/launcher2/ |
WidgetPreviewLoader.java | 349 db.insert(CacheDb.TABLE_NAME, null, values);
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/dictionarypack/ |
MetadataDbHelper.java | 203 db.insert(CLIENT_TABLE_NAME, null, defaultMetadataValues); [all...] |
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/ |
BinaryDictionaryFileDumper.java | 455 client.insert(metadataContentUri, metadataValues); 467 client.insert(Uri.withAppendedPath(dictionaryContentUriBase, info.mId),
|
/packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/ |
OpenWnnDictionaryImpl.java | 466 /* If link search is enabled, insert information of the previous word */ [all...] |
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/ |
LegacyContactsProviderTest.java | 71 Uri uri = mResolver.insert(People.CONTENT_URI, values); 80 Uri uri = mResolver.insert(People.CONTENT_URI, values); 99 Uri personId = mResolver.insert(People.CONTENT_URI, values); 116 mResolver.insert(People.CONTENT_URI, values); 120 mResolver.insert(People.CONTENT_URI, values); 124 mResolver.insert(People.CONTENT_URI, values); 135 Uri personUri = mResolver.insert(People.CONTENT_URI, values); 141 final Uri personUri = mResolver.insert(People.CONTENT_URI, values); 150 Uri orgUri1 = mResolver.insert(Organizations.CONTENT_URI, values); 157 Uri orgUri2 = mResolver.insert(Organizations.CONTENT_URI, values) [all...] |
/packages/providers/TelephonyProvider/src/com/android/providers/telephony/ |
MmsSmsDatabaseHelper.java | 159 " AFTER INSERT ON part " + 482 db.insert(TABLE_WORDS, Telephony.MmsSms.WordsTable.INDEXED_TEXT, cv); 515 db.insert(TABLE_WORDS, Telephony.MmsSms.WordsTable.INDEXED_TEXT, cv); 533 // id of one of the trigger insert not the original row insert. [all...] |
/prebuilts/devtools/tools/lib/ |
asm-tree-4.0.jar | |
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/bits/ |
basic_string.h | 1023 insert(iterator __p, size_type __n, _CharT __c) function in class:basic_string 1039 insert(iterator __p, _InputIterator __beg, _InputIterator __end) function in class:basic_string 1050 insert(iterator __p, initializer_list<_CharT> __l) function in class:basic_string 1066 insert(size_type __pos1, const basic_string& __str) function in class:basic_string 1088 insert(size_type __pos1, const basic_string& __str, function in class:basic_string 1129 insert(size_type __pos, const _CharT* __s) function in class:basic_string 1152 insert(size_type __pos, size_type __n, _CharT __c) function in class:basic_string 1169 insert(iterator __p, _CharT __c) function in class:basic_string [all...] |
stl_deque.h | 1303 insert(iterator __position, value_type&& __x) function in class:deque 1316 insert(iterator __p, initializer_list<value_type> __l) function in class:deque 1330 insert(iterator __position, size_type __n, const value_type& __x) function in class:deque 1345 insert(iterator __position, _InputIterator __first, function in class:deque [all...] |