/external/qemu/telephony/ |
D | gsm.c | 223 gsm_rope_init( GsmRope rope ) in gsm_rope_init() argument 225 rope->data = NULL; in gsm_rope_init() 226 rope->pos = 0; in gsm_rope_init() 227 rope->max = 0; in gsm_rope_init() 228 rope->error = 0; in gsm_rope_init() 232 gsm_rope_init_alloc( GsmRope rope, int count ) in gsm_rope_init_alloc() argument 234 rope->data = rope->data0; in gsm_rope_init_alloc() 235 rope->pos = 0; in gsm_rope_init_alloc() 236 rope->max = sizeof(rope->data0); in gsm_rope_init_alloc() 237 rope->error = 0; in gsm_rope_init_alloc() [all …]
|
D | sms.c | 275 gsm_rope_add_timestamp( GsmRope rope, const SmsTimeStampRec* ts ) in gsm_rope_add_timestamp() argument 277 gsm_rope_add( rope, ts->data, 7 ); in gsm_rope_add_timestamp() 454 gsm_rope_add_address( GsmRope rope, const SmsAddressRec* addr ) in gsm_rope_add_address() argument 456 gsm_rope_add_c( rope, addr->len ); in gsm_rope_add_address() 457 gsm_rope_add_c( rope, addr->toa ); in gsm_rope_add_address() 458 gsm_rope_add( rope, addr->data, (addr->len+1)/2 ); in gsm_rope_add_address() 460 if (!rope->error && rope->data != NULL) in gsm_rope_add_address() 461 rope->data[ rope->pos-1 ] |= 0xf0; in gsm_rope_add_address() 835 GsmRope rope ) in sms_get_text_utf8() argument 874 if (rope != NULL) in sms_get_text_utf8() [all …]
|
D | gsm.h | 188 extern void gsm_rope_init( GsmRope rope ); 189 extern void gsm_rope_init_alloc( GsmRope rope, int alloc ); 190 extern int gsm_rope_done( GsmRope rope ); 191 extern bytes_t gsm_rope_done_acquire( GsmRope rope, int *psize ); 192 extern void gsm_rope_add_c( GsmRope rope, char c ); 193 extern void gsm_rope_add( GsmRope rope, const void* str, int len ); 194 extern void* gsm_rope_reserve( GsmRope rope, int len );
|
/external/stlport/stlport/stl/ |
D | _rope.h | 91 template<class _CharT, _STLP_DFL_TMPL_PARAM(_Alloc, allocator<_CharT>) > class rope; variable 122 : public binary_function<rope<_CharT,_Alloc>, rope<_CharT,_Alloc>, 123 rope<_CharT,_Alloc> > { 124 rope<_CharT,_Alloc> operator() (const rope<_CharT,_Alloc>& __x, 125 const rope<_CharT,_Alloc>& __y) { 132 rope<_CharT,_Alloc> 134 { return rope<_CharT,_Alloc>(); } 653 friend class rope<_CharT,_Alloc>; 658 typedef rope<_CharT,_Alloc> _My_rope; 720 rope<_CharT,_Alloc>* _M_root; // The whole rope. [all …]
|
D | _rope.c | 59 _Rope_iterator<_CharT, _Alloc>::_Rope_iterator(rope<_CharT,_Alloc>* __r, size_t __pos) in _Rope_iterator() 64 _Rope_iterator<_CharT, _Alloc>::_Rope_iterator(rope<_CharT,_Alloc>& __r, size_t __pos): in _Rope_iterator() 364 # define __RopeLeaf__ _STLP_TYPENAME_ON_RETURN_TYPE rope<_CharT,_Alloc>::_RopeLeaf 365 # define __RopeRep__ _STLP_TYPENAME_ON_RETURN_TYPE rope<_CharT,_Alloc>::_RopeRep 369 void rope<_CharT, _Alloc>::_M_throw_out_of_range() const { in _M_throw_out_of_range() 377 rope<_CharT,_Alloc>::_S_leaf_concat_char_iter ( in _S_leaf_concat_char_iter() 413 rope<_CharT,_Alloc>::_S_destr_leaf_concat_char_iter (_RopeLeaf* __r, const _CharT* __iter, size_t _… in _S_destr_leaf_concat_char_iter() 443 rope<_CharT,_Alloc>::_S_tree_concat (_RopeRep* __left, _RopeRep* __right) { in _S_tree_concat() 474 rope<_CharT,_Alloc>::_S_concat_char_iter (_RopeRep* __r, in _S_concat_char_iter() 517 rope<_CharT,_Alloc>::_S_destr_concat_char_iter( in _S_destr_concat_char_iter() [all …]
|
/external/webkit/Source/JavaScriptCore/runtime/ |
D | RopeImpl.cpp | 55 RopeImpl* rope = workQueue.last(); in destructNonRecursive() local 57 rope->derefFibersNonRecursive(workQueue); in destructNonRecursive() 58 delete rope; in destructNonRecursive()
|
D | JSString.cpp | 77 RopeImpl* rope = static_cast<RopeImpl*>(currentFiber); in resolveRope() local 80 unsigned fiberCountMinusOne = rope->fiberCount() - 1; in resolveRope() 82 workQueue.append(rope->fibers()[i]); in resolveRope() 83 currentFiber = rope->fibers()[fiberCountMinusOne]; in resolveRope()
|
D | JSString.h | 177 RopeImpl* rope = static_cast<RopeImpl*>(fiber); in skipRopes() local 180 m_workQueue.append(WorkItem(rope->fibers(), rope->fiberCount())); in skipRopes() 214 JSString(JSGlobalData* globalData, PassRefPtr<RopeImpl> rope) in JSString() argument 216 , m_length(rope->length()) in JSString() 219 m_other.m_fibers[0] = rope.leakRef(); in JSString()
|
/external/stlport/stlport/ |
D | rope | 27 /* Comment following if you want to use rope class even if you ask for 30 # error The rope class is a STLport extension.
|
/external/stlport/test/eh/ |
D | test_rope.cpp | 41 typedef STLPORT::rope<char, eh_allocator(char) > TestRope;
|
/external/chromium/sdch/open-vcdiff/testdata/ |
D | configure.ac.v0.1 | 30 AC_CHECK_HEADERS([ext/rope])
|
D | configure.ac.v0.2 | 32 AC_CHECK_HEADERS([ext/rope])
|
/external/open-vcdiff/testdata/ |
D | configure.ac.v0.2 | 32 AC_CHECK_HEADERS([ext/rope])
|
D | configure.ac.v0.1 | 30 AC_CHECK_HEADERS([ext/rope])
|
/external/stlport/etc/ |
D | msvcincl.dat | 109 rope 110 rope.h
|
D | ChangeLog-4.0 | 476 rope.h typo fixed (thanks to Alex Vanic for the report) 572 * <rope> fixes for Watcom
|
D | ChangeLog-5.1 | 126 bug #1788615 [bug during copy of rope's iterator] and fix; 954 missing null termination in rope constructor from a character 958 for other types than char and wchar_t. rope implementation is 2251 list warning, used in rope implementation. 2322 * test/eh/test_rope.cpp: Restore Borland exception test for rope. 2324 * test/unit/rope_test.cpp: Restore Borland unit test for rope. 2371 This has relation to find(char) in rope. Thanks Cristian Vlasceanu. 2440 * stlport/rope, hash_map, hash_set: Add _STLP_NO_EXTENSIONS check 2445 against _STLP_NO_EXTENSIONS for rope implementation. 2746 * test/eh/test_rope.cpp: Removed rope test for Borland. [all …]
|
D | autoexp.dat | 12 ; TODO: Add visualization for rope.
|
D | ChangeLog | 1368 bug #1788615 [bug during copy of rope's iterator] and fix; 2185 might happen which is in the rope implementation for current use. A future
|
/external/chromium/sdch/open-vcdiff/ |
D | configure.ac | 42 AC_CHECK_HEADERS([ext/rope])
|
/external/chromium/sdch/open-vcdiff/src/ |
D | config.h.in | 6 /* Define to 1 if you have the <ext/rope> header file. */
|
/external/open-vcdiff/ |
D | configure.ac | 38 AC_CHECK_HEADERS([ext/rope])
|
/external/open-vcdiff/src/ |
D | config.h.in | 16 /* Define to 1 if you have the <ext/rope> header file. */
|
/external/webkit/Source/JavaScriptCore/ |
D | ChangeLog-2010-05-24 | 161 a rope - and thus couldn't except - it would be hard to prove this). 1860 a rope for the resulting replacement. 1871 We use this to do a substring find without having to resolve the rope. 1897 (JSC::stringProtoFuncReplace): Don't resolve a rope unless we need to. Do 1898 use our new replaceCharacter function if possible. Do use a rope to 5909 Calling getIndex() on a JSString in rope form may result in a JSException being thrown 7628 JSString::getIndex() calls value() to resolve the string value (is a rope) 7634 Simple fix is to be able to get an index from a rope without resolving to 7837 to ensure that the rope's fibers are also destroyed. 7846 A rope is a recursive data structure where each node in the rope holds a set of [all …]
|
D | ChangeLog-2011-02-16 | 8149 …Creating a substring caused the original string be flattened if it was in the rope form. This coul… 8152 … Add a rope specific substring function that constructs the substring by reusing the rope fibers 8153 instead of flattening the rope. 12322 rather than using a rope), but this approach allows the intermadiate state of the 21892 Simple fix to stop the rope path of single character replacement
|