Searched defs:insert (Results 176 - 200 of 300) sorted by relevance

1234567891011>>

/external/icu/icu4c/source/common/unicode/
H A Dunistr.h2149 * the insert string
2153 inline UnicodeString& insert(int32_t start,
2166 inline UnicodeString& insert(int32_t start,
2178 * in the insert string
2182 inline UnicodeString& insert(int32_t start,
2196 inline UnicodeString& insert(int32_t start,
2204 * @param srcChar the code unit to insert
2208 inline UnicodeString& insert(int32_t start,
2215 * @param srcChar the code point to insert
2219 inline UnicodeString& insert(int32_
4375 UnicodeString::insert(int32_t start, function in class:UnicodeString
4382 UnicodeString::insert(int32_t start, function in class:UnicodeString
4387 UnicodeString::insert(int32_t start, function in class:UnicodeString
4394 UnicodeString::insert(int32_t start, function in class:UnicodeString
4400 UnicodeString::insert(int32_t start, function in class:UnicodeString
4405 UnicodeString::insert(int32_t start, function in class:UnicodeString
[all...]
/external/libvterm/src/
H A Dvterm_internal.h77 int insert:1; member in struct:VTermState::__anon25029
/external/libxml2/
H A Ddict.c829 xmlDictEntryPtr insert; local
851 insert = NULL;
853 for (insert = &(dict->dict[key]); insert->next != NULL;
854 insert = insert->next) {
856 if ((insert->okey == okey) && (insert->len == l)) {
857 if (!memcmp(insert->name, name, l))
858 return(insert
968 xmlDictEntryPtr insert; local
1077 xmlDictEntryPtr insert; local
[all...]
/external/llvm/include/llvm/ADT/
H A DSmallVector.h476 iterator insert(iterator I, T &&Elt) { function in class:llvm::SmallVectorImpl
506 iterator insert(iterator I, const T &Elt) { function in class:llvm::SmallVectorImpl
535 iterator insert(iterator I, size_type NumToInsert, const T &Elt) { function in class:llvm::SmallVectorImpl
587 iterator insert(iterator I, ItTy From, ItTy To) { function in class:llvm::SmallVectorImpl
H A DStringMap.h307 /// insert - Insert the specified key/value pair into the map. If the key
309 /// insert it and return true.
310 bool insert(MapEntryTy *KeyValue) { function in class:llvm::StringMap
326 /// insert - Inserts the specified key/value pair into the map if the key
330 std::pair<iterator, bool> insert(std::pair<StringRef, ValueTy> KV) { function in class:llvm::StringMap
367 /// exists, return it. Otherwise, default construct a value, insert it, and
371 return *insert(std::make_pair(Key, std::move(Val))).first;
/external/llvm/include/llvm/CodeGen/
H A DMachineInstrBuilder.h256 BB.insert(I, MI);
267 BB.insert(I, MI);
295 BB.insert(I, MI);
305 BB.insert(I, MI);
383 BB.insert(I, MI);
462 MIBundleBuilder &insert(MachineBasicBlock::instr_iterator I, function in class:llvm::MIBundleBuilder
464 MBB.insert(I, MI);
485 return insert(begin(), MI);
491 return insert(end(), MI);
/external/llvm/include/llvm/IR/
H A DValueMap.h136 std::pair<iterator, bool> insert(const std::pair<KeyT, ValueT> &KV) { function in class:llvm::ValueMap
138 Map.insert(std::make_pair(Wrap(KV.first), KV.second));
142 /// insert - Range insertion of pairs.
144 void insert(InputIt I, InputIt E) { function in class:llvm::ValueMap
146 insert(*I);
245 Copy.Map->insert(std::make_pair(typed_new_key, Target));
/external/llvm/include/llvm/Support/
H A DOnDiskHashTable.h91 void insert(Bucket *Buckets, size_t Size, Item *E) { function in class:llvm::OnDiskChainedHashTableGenerator
106 insert(NewBuckets, NewSize, E);
117 void insert(typename Info::key_type_ref Key, function in class:llvm::OnDiskChainedHashTableGenerator
120 insert(Key, Data, InfoObj);
126 void insert(typename Info::key_type_ref Key, function in class:llvm::OnDiskChainedHashTableGenerator
132 insert(Buckets, NumBuckets, new (BA.Allocate()) Item(Key, Data, InfoObj));
/external/mesa3d/src/gallium/drivers/nv50/codegen/
H A Dnv50_ir_util.h102 virtual bool insert(void *) = 0; // insert after current position
184 inline void insert(void *data) { insertTail(data); } function in class:nv50_ir::DLList
200 virtual bool insert(void *data);
360 void insert(void *item, int& id) function in class:nv50_ir::ArrayList
426 void insert(const Interval&);
696 insert(obj, clone);
701 virtual void insert(const void *obj, void *clone) = 0;
723 virtual void insert(const void *obj, void *clone)
757 virtual void insert(cons
[all...]
/external/pdfium/core/src/fxcodec/fx_zlib/zlib_v128/
H A Ddeflate.h159 uInt strstart; /* start of string to insert */
250 uInt insert; /* bytes at end of window left to insert */ member in struct:internal_state
/external/qemu/distrib/zlib-1.2.8/
H A Ddeflate.h159 uInt strstart; /* start of string to insert */
250 uInt insert; /* bytes at end of window left to insert */ member in struct:internal_state
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowContentResolver.java94 public final Uri insert(Uri url, ContentValues values) { method in class:ShadowContentResolver
97 return provider.insert(url, values);
/external/skia/src/core/
H A DSkString.cpp439 void SkString::insert(size_t offset, const char text[]) { function in class:SkString
440 this->insert(offset, text, text ? strlen(text) : 0);
443 void SkString::insert(size_t offset, const char text[], size_t len) { function in class:SkString
456 /* If we're the only owner, and we have room in our allocation for the insert,
502 this->insert(offset, buffer, len);
509 this->insert(offset, buffer, stop - buffer);
515 this->insert(offset, buffer, stop - buffer);
521 this->insert(offset, buffer, stop - buffer);
527 this->insert(offset, buffer, stop - buffer);
549 this->insert(offse
[all...]
/external/skia/src/gpu/
H A DGrRedBlackTree.h33 * is called on insert and remove. Useful for debugging but very slow.
65 Iter insert(const T& t);
343 typename GrRedBlackTree<T,C>::Iter GrRedBlackTree<T,C>::insert(const T& t) { function in class:GrRedBlackTree
/external/skia/src/pdf/
H A DSkPDFTypes.cpp428 SkPDFObject* SkPDFDict::insert(SkPDFName* key, SkPDFObject* value) { function in class:SkPDFDict
437 SkPDFObject* SkPDFDict::insert(const char key[], SkPDFObject* value) { function in class:SkPDFDict
/external/stlport/src/
H A Dlocale_impl.cpp120 void _Locale_impl::insert(_Locale_impl *from, const locale::id& n) { function in class:_Locale_impl
122 this->insert(from->facets_vec[n._M_index], n);
126 locale::facet* _Locale_impl::insert(locale::facet *f, const locale::id& n) { function in class:_Locale_impl
156 this->insert(i2, ctype<char>::id);
157 this->insert(i2, codecvt<char, char, mbstate_t>::id);
159 this->insert(i2, ctype<wchar_t>::id);
160 this->insert(i2, codecvt<wchar_t, char, mbstate_t>::id);
212 this->insert(ct, ctype<char>::id);
213 this->insert(cvt, codecvt<char, char, mbstate_t>::id);
215 this->insert(wc
[all...]
/external/stlport/stlport/stl/
H A D_string_sum.h156 //insert
157 _BString& insert(size_type __pos, const _BString& __s) {return _M_get_storage().insert(__pos, __s);} function in class:__bstr_sum
158 _BString& insert(size_type __pos, const _BString& __s, size_type __beg, size_type __n) function in class:__bstr_sum
159 {return _M_get_storage().insert(__pos, __s, __beg, __n);}
160 _BString& insert(size_type __pos, const _CharT* __s, size_type __n) {return _M_get_storage().insert(__pos, __s, __n);} function in class:__bstr_sum
161 _BString& insert(size_type __pos, const _CharT* __s) {return _M_get_storage().insert(__pos, __s);} function in class:__bstr_sum
162 _BString& insert(size_typ function in class:__bstr_sum
[all...]
/external/stlport/stlport/stl/debug/
H A D_string.h389 _Self& insert(size_type __pos, const _Self& __s) { function in class:basic_string
391 _M_non_dbg_impl.insert(__pos, __s._M_non_dbg_impl);
396 _Self& insert(size_type __pos, const _Self& __s, function in class:basic_string
399 _M_non_dbg_impl.insert(__pos, __s._M_non_dbg_impl, __beg, __n);
404 _Self& insert(size_type __pos, const _CharT* __s, size_type __n) { function in class:basic_string
408 _M_non_dbg_impl.insert(__pos, __s, __n);
413 _Self& insert(size_type __pos, const _CharT* __s) { function in class:basic_string
416 return insert(__pos, __s, _Traits::length(__s));
419 _Self& insert(size_type __pos, size_type __n, _CharT __c) { function in class:basic_string
421 _M_non_dbg_impl.insert(__po
426 iterator insert(iterator __p, _CharT __c) { function in class:basic_string
434 void insert(iterator __p, size_t __n, _CharT __c) { function in class:basic_string
443 void insert(iterator __p, _InputIter __first, _InputIter __last) { function in class:basic_string
455 void insert(iterator __p, const _CharT* __f, const _CharT* __l) { function in class:basic_string
468 void insert(iterator __p, const_iterator __f, const_iterator __l) { function in class:basic_string
478 void insert(iterator __p, iterator __f, iterator __l) { function in class:basic_string
[all...]
/external/stlport/test/unit/
H A Dstring_test.cpp58 CPPUNIT_TEST(insert);
117 void insert();
347 str.insert(1, c_str);
454 void StringTest::insert() function in class:StringTest
467 str.insert(10, str.c_str() + 5, 15);
471 str.insert(15, str.c_str() + 5, 25);
475 str.insert(0, str.c_str() + str.size() - 4, 4);
479 str.insert(0, str.c_str() + str.size() / 2 - 1, str.size() / 2 + 1);
486 str.insert( b, s, e );
490 str.insert(st
[all...]
/external/valgrind/main/coregrind/m_gdbserver/
H A Dtarget.c503 /* insert or remove a breakpoint */
505 int valgrind_point (Bool insert, char type, CORE_ADDR addr, int len) argument
529 if (VG_(gdbserver_point) (kind, insert, addr, len))
542 return valgrind_point (/* insert */ True, type, addr, len);
547 return valgrind_point (/* insert*/ False, type, addr, len);
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
H A DXMPMetaImpl.java1291 * "last()", normalize it and check the insert flags. The order of the
1296 * @param itemIndex the index where to insert the item
1299 * @param insert insert oder overwrite at index position?
1303 PropertyOptions itemOptions, boolean insert) throws XMPException
1308 // in insert mode the index after the last is allowed,
1310 int maxIndex = insert ? arrayNode.getChildrenLength() + 1 : arrayNode.getChildrenLength();
1318 if (!insert)
1302 doSetArrayItem(XMPNode arrayNode, int itemIndex, String itemValue, PropertyOptions itemOptions, boolean insert) argument
/external/zlib/src/
H A Ddeflate.h159 uInt strstart; /* start of string to insert */
250 uInt insert; /* bytes at end of window left to insert */ member in struct:internal_state
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DVector.h680 template<typename U> void insert(size_t position, const U*, size_t);
681 template<typename U> void insert(size_t position, const U&);
682 template<typename U, size_t c, typename V> void insert(size_t position, const Vector<U, c, V>&);
1060 void Vector<T, inlineCapacity, Allocator>::insert(size_t position, const U* data, size_t dataSize) function in class:WTF::Vector::Vector
1077 inline void Vector<T, inlineCapacity, Allocator>::insert(size_t position, const U& val) function in class:WTF::Vector::Vector
1093 inline void Vector<T, inlineCapacity, Allocator>::insert(size_t position, const Vector<U, c, OtherAllocator>& val) function in class:WTF::Vector::Vector
1095 insert(position, val.begin(), val.size());
1101 insert(0, data, dataSize);
1107 insert(0, val);
1113 insert(
[all...]
/external/chromium_org/third_party/WebKit/Source/wtf/text/
H A DWTFString.cpp161 void String::insert(const String& string, unsigned position) function in class:WTF::String
172 insert(string.impl()->characters8(), string.length(), position);
174 insert(string.impl()->characters16(), string.length(), position);
263 void String::insert(const UChar* charactersToInsert, unsigned lengthToInsert, unsigned position) function in class:WTF::String
273 void String::insert(const LChar* charactersToInsert, unsigned lengthToInsert, unsigned position) function in class:WTF::String
/external/chromium_org/third_party/freetype/src/pshinter/
H A Dpshalgo.c1924 PSH_Point* insert; local
1930 for ( insert = strongs + num_strongs; insert > strongs; insert-- )
1932 if ( insert[-1]->org_u <= point->org_u )
1935 insert[0] = insert[-1];
1937 insert[0] = point;

Completed in 8208 milliseconds

1234567891011>>