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

1 2 34 5 6 7 8 91011>>

  /frameworks/base/libs/surfaceflinger/
MessageQueue.cpp 32 void MessageList::insert(const sp<MessageBase>& node) function in class:android::MessageList
38 mList.insert(cur, node);
43 mList.insert(++end, node);
161 mMessages.insert(message);
  /packages/apps/Calendar/src/com/android/calendar/
CalendarApplication.java 47 public void insert(Screen node) { method in class:CalendarApplication.Screen
  /packages/experimental/RpcPerformance/src/com/android/rpc_performance/
Provider.java 39 public Uri insert(Uri uri, ContentValues values) { method in class:Provider
  /cts/tests/tests/provider/src/android/provider/cts/
MediaStoreTest.java 60 mContentResolver.insert(mScannerUri, values);
79 // insert
82 mContentResolver.insert(mScannerUri, values));
  /external/icu4c/test/intltest/
itrbnfp.cpp 150 us.insert(0, (UChar)'"');
163 us.insert(0, (UChar)'"');
  /external/stlport/src/
message_facets.h 39 void insert(nl_catd_type key, const locale& L);
85 messages_base::catalog insert(nl_catd_type cat)
messages.cpp 29 void _Catalog_locale_map::insert(nl_catd_type key, const locale& L) { function in class:_Catalog_locale_map
46 M->insert(map_type::value_type(key, L));
72 messages_base::catalog _Catalog_nl_catd_map::insert(nl_catd_type cat) { function in class:_Catalog_nl_catd_map
130 _M_map->insert(result, L);
132 return _STLP_MUTABLE(_Messages_impl, _M_cat).insert( result );
  /frameworks/base/core/java/android/content/
ContentProviderClient.java 57 /** see {@link ContentProvider#insert} */
58 public Uri insert(Uri url, ContentValues initialValues) method in class:ContentProviderClient
60 return mContentProvider.insert(url, initialValues);
DefaultDataHandler.java 35 * Insert one row:
47 * Use first row's uri to insert into another table,
61 * Insert multiple rows in to same table and same attributes:
87 public void insert(ContentResolver contentResolver, InputStream in) method in class:DefaultDataHandler
93 public void insert(ContentResolver contentResolver, String in) method in class:DefaultDataHandler
128 Uri u = mContentResolver.insert(mUris.lastElement(), mValues);
137 // case 2, <Col> before <Row> insert last uri
143 throw new SAXException("insert to uri " +
  /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/webkit/WebCore/bridge/qt/
qt_class.cpp 89 qtinst->m_methods.insert(name, val);
106 qtinst->m_methods.insert(name, val);
170 qtinst->m_fields.insert(objName, f);
179 qtinst->m_fields.insert(objName, f);
190 qtinst->m_fields.insert(objName, f);
209 qtinst->m_fields.insert(objName, f);
  /external/stlport/stlport/stl/pointers/
_slist.h 287 iterator insert(iterator __pos, const value_type& __x = _STLP_DEFAULT_CONSTRUCTED(value_type)) function in class:slist
289 iterator insert(iterator __pos, const value_type& __x)
291 { return iterator(_M_impl.insert(_BaseIte(__pos._M_node),
295 iterator insert(iterator __pos) function in class:slist
296 { return iterator(_M_impl.insert(_BaseIte(__pos._M_node))._M_node); }
299 void insert(iterator __pos, size_type __n, const value_type& __x) function in class:slist
300 { _M_impl.insert(_BaseIte(__pos._M_node), __n, cast_traits::to_storage_type_cref(__x)); }
308 _M_impl.insert(_BaseIte(__pos._M_node), __n, __val);
315 _M_impl.insert(_BaseIte(__pos._M_node), _STLP_TYPENAME _STLP_PRIV _IteWrapper<_StorageType, _Tp, _InputIterator>::_Ite(__first),
323 void insert(iterator __pos, _InputIterator __first, _InputIterator __last) function in class:slist
334 void insert(iterator __pos, const_iterator __first, const_iterator __last) function in class:slist
336 void insert(iterator __pos, const value_type* __first, const value_type* __last) function in class:slist
    [all...]
  /external/stlport/stlport/stl/
_list.h 311 { this->insert(begin(), __n, _STLP_DEFAULT_CONSTRUCTED(value_type)); }
314 { this->insert(begin(), __n, __val); }
318 { this->insert(begin(), __n, __val); }
321 // We don't need any dispatching tricks here, because insert does all of
420 iterator insert(iterator __pos, const_reference __x = value_type()) function in class:list
422 iterator insert(iterator __pos, const_reference __x)
456 insert(__pos, *__first);
462 insert(__pos, *__first);
468 void insert(iterator __pos, _InputIterator __first, _InputIterator __last) { function in class:list
485 void insert(iterator __pos, const value_type* __first, const value_type* __last)
498 void insert(iterator __pos, size_type __n, const_reference __x) function in class:list
512 iterator insert(iterator __pos) function in class:list
    [all...]
_list.c 103 insert(end(), __new_size - __len, __x);
118 insert(__last1, __first2, __last2);
129 insert(end(), __n, __val);
193 __first1 = __that.insert(__first1, *__first2);
199 __that.insert(__first1, __first2, __last2);
_unordered_map.h 133 pair<iterator,bool> insert(const value_type& __obj) function in class:unordered_map
135 iterator insert(const_iterator /*__hint*/, const value_type& __obj) function in class:unordered_map
139 void insert(_InputIterator __f, _InputIterator __l) function in class:unordered_map
141 void insert(const value_type* __f, const value_type* __l)
143 void insert(const_iterator __f, const_iterator __l)
301 iterator insert(const value_type& __obj) function in class:unordered_multimap
303 iterator insert(const_iterator /*__hint*/, const value_type& __obj) function in class:unordered_multimap
307 void insert(_InputIterator __f, _InputIterator __l) function in class:unordered_multimap
309 void insert(const value_type* __f, const value_type* __l)
311 void insert(const_iterator __f, const_iterator __l
    [all...]
_unordered_set.h 127 pair<iterator, bool> insert(const value_type& __obj) function in class:unordered_set
129 iterator insert(const_iterator /*__hint*/, const value_type& __obj) function in class:unordered_set
133 void insert(_InputIterator __f, _InputIterator __l) function in class:unordered_set
135 void insert(const_iterator __f, const_iterator __l)
137 void insert(const value_type* __f, const value_type* __l)
277 iterator insert(const value_type& __obj) function in class:unordered_multiset
279 iterator insert(const_iterator /*__hint*/, const value_type& __obj) function in class:unordered_multiset
283 void insert(_InputIterator __f, _InputIterator __l) function in class:unordered_multiset
285 void insert(const value_type* __f, const value_type* __l)
287 void insert(const_iterator __f, const_iterator __l
    [all...]
  /external/elfutils/libelf-po/
Makefile 330 DISTFILES.common.extra1 = quot.sed boldquot.sed en@quot.header en@boldquot.header insert-header.sin Rules-quot
332 .SUFFIXES: .insert-header .po-update-en
337 .insert-header.po-update-en:
345 if $(MSGINIT) -i $(DOMAIN).pot --no-translator -l $$ll -o - 2>/dev/null | sed -f $$tmpdir/$$lang.insert-header | $(MSGCONV) -t UTF-8 | $(MSGFILTER) sed -f `echo $$lang | sed -e 's/.*@//'`.sed 2>/dev/null > $$tmpdir/$$lang.new.po; then \
361 en@quot.insert-header: insert-header.sin
362 sed -e '/^#/d' -e 's/HEADER/en@quot.header/g' $(srcdir)/insert-header.sin > en@quot.insert-header
364 en@boldquot.insert-header: insert-header.si
    [all...]
  /external/elfutils/po/
Makefile 361 DISTFILES.common.extra1 = quot.sed boldquot.sed en@quot.header en@boldquot.header insert-header.sin Rules-quot
363 .SUFFIXES: .insert-header .po-update-en
368 .insert-header.po-update-en:
376 if $(MSGINIT) -i $(DOMAIN).pot --no-translator -l $$ll -o - 2>/dev/null | sed -f $$tmpdir/$$lang.insert-header | $(MSGCONV) -t UTF-8 | $(MSGFILTER) sed -f `echo $$lang | sed -e 's/.*@//'`.sed 2>/dev/null > $$tmpdir/$$lang.new.po; then \
392 en@quot.insert-header: insert-header.sin
393 sed -e '/^#/d' -e 's/HEADER/en@quot.header/g' $(srcdir)/insert-header.sin > en@quot.insert-header
395 en@boldquot.insert-header: insert-header.si
    [all...]
  /frameworks/base/media/libdrm/mobile2/src/util/ustl-1.0/
ustring.h 91 inline void append (size_type n, wvalue_type c) { insert (size(), c, n); }
92 inline void append (const_wpointer s1, const_wpointer s2) { insert (size(), s1, s2); }
129 void insert (const uoff_t ip, wvalue_type c, size_type n = 1);
130 void insert (const uoff_t ip, const_wpointer first, const_wpointer last, const size_type n = 1);
131 iterator insert (iterator start, const_reference c, size_type n = 1);
132 iterator insert (iterator start, const_pointer s, size_type n = 1);
133 iterator insert (iterator start, const_pointer first, const_iterator last, size_type n = 1);
134 inline void insert (uoff_t ip, const_pointer s, size_type nlen) { insert (iat(ip), s, s + nlen); } function in class:ustl::string
135 inline void insert (uoff_t ip, size_type n, value_type c) { insert (iat(ip), c, n); function in class:ustl::string
136 inline void insert (uoff_t ip, const string& s, uoff_t sp, size_type slen) { insert (iat(ip), s.iat(sp), s.iat(sp + slen)); } function in class:ustl::string
    [all...]
  /packages/apps/Contacts/tests/src/com/android/contacts/
RecentCallsListActivityTests.java 119 // Insert the first batch of entries.
236 // HELPERS to insert numbers in the call log DB.
240 * Insert a certain number of random numbers in the DB. Makes sure
260 * Insert a new call entry in the test DB.
267 private void insert(String number, long date, int duration, int type) { method in class:RecentCallsListActivityTests
289 * Insert a new private call entry in the test DB.
294 insert(CallerInfo.PRIVATE_NUMBER, date, duration, Calls.INCOMING_TYPE); method
298 * Insert a new unknown call entry in the test DB.
303 insert(CallerInfo.UNKNOWN_NUMBER, date, duration, Calls.INCOMING_TYPE); method
307 * Insert a new voicemail call entry in the test DB
314 insert(mVoicemail, date, duration, Calls.OUTGOING_TYPE); method
351 insert(number, NOW, RAND_DURATION, inout); method
    [all...]
  /cts/tests/tests/text/src/android/text/cts/
SpannableStringBuilderTest.java 547 method = "insert",
553 builder.insert(1, "abcd", 1, 3);
557 builder.insert(2, "abcd", 0, 4);
561 builder.insert(-1, "abcd", 1, 3);
567 builder.insert(100, "abcd", 1, 3);
573 builder.insert(1, "abcd", 3, 2);
579 builder.insert(1, "abcd", -3, 2);
585 builder.insert(0, null, 0, 1);
593 method = "insert",
599 builder.insert(1, "abcd")
    [all...]
  /external/opencore/codecs_v2/audio/gsm_amr/amr_wb/dec/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
  /external/opencore/oscl/oscl/osclbase/src/
oscl_vector.h 141 * @param pos iterator at insert position.
144 OSCL_IMPORT_REF OsclAny* insert(OsclAny* pos, const OsclAny* x);
310 * @param pos position at which to insert the new element.
313 iterator insert(iterator pos, const T& x) function in class:Oscl_Vector
315 return (iterator)Oscl_Vector_Base::insert(pos, &x);
  /frameworks/base/core/java/android/provider/
SyncStateContract.java 103 provider.insert(uri, values);
106 public static Uri insert(ContentProviderClient provider, Uri uri, method in class:SyncStateContract.Helpers
112 return provider.insert(uri, values);
  /frameworks/base/core/java/android/text/method/
CharacterPickerDialog.java 52 * the sense of <code>insert</code>) into <code>text</code>.
56 boolean insert) {
62 mInsert = insert;
96 mText.insert(selEnd, replace);

Completed in 345 milliseconds

1 2 34 5 6 7 8 91011>>