Searched refs:crope (Results 1 - 7 of 7) sorted by relevance

/external/chromium_org/sdch/open-vcdiff/src/
H A Doutput_string_crope.h17 // crope type, so that cropes can be passed as output arguments to the encoder
29 // *** OutputString interface for crope (OutputCrope)
31 // crope::reserve(), if defined, does nothing
33 void OutputString<__gnu_cxx::crope>::ReserveAdditionalBytes(
36 typedef OutputString<__gnu_cxx::crope> OutputCrope;
H A Doutput_string_test.cc76 typedef __gnu_cxx::crope crope; typedef in class:open_vcdiff::__anon10655::OutputCRopeTest
83 crope crope_;
89 crope expected_abcd("abcd");
95 crope expected_empty;
101 crope expected_abc("abc");
H A Dvcencoder_test.cc33 using __gnu_cxx::crope;
308 // Test that the crope class can be used in place of a string for encoding
311 crope delta_crope, result_crope;
318 // crope can't guarantee that its characters are contiguous, so the decoding
320 for (crope::const_iterator it = delta_crope.begin();
326 crope expected_target(kTarget);
/external/stlport/test/unit/
H A Drope_test.cpp61 crope rstr(cstr);
76 crope r("Fuzzy Wuzzy was a bear");
77 crope::size_type n = r.find( "hair" );
78 CPPUNIT_ASSERT( n == crope::npos );
89 crope r("Fuzzy Wuzzy was a bear");
90 crope::size_type n = r.find( 'e' );
98 crope r('1');
108 //first create a rope bigger than crope::_S_copy_max = 23
110 crope evilRope("12345678901234567890123_");
111 //crope* pSevenCharRop
[all...]
H A Dmvctor_declaration_test.cpp191 //crope, wrope:
192 CPPUNIT_ASSERT( is_movable(crope()) );
194 CPPUNIT_ASSERT( is_move_complete(crope()) );
196 CPPUNIT_ASSERT( !is_move_complete(crope()) );
H A Dhash_test.cpp79 typedef hash_map<char, crope, hash<char>, equal_to<char> > maptype;
93 pair<maptype::iterator, bool> p = m.insert(pair<const char, crope>('c', crope("100")));
97 p = m.insert(pair<const char, crope>('c', crope("100")));
/external/stlport/stlport/stl/
H A D_rope.h2299 typedef rope<char, allocator<char> > crope; typedef
2304 inline crope::reference __mutable_reference_at(crope& __c, size_t __i)
2318 inline void swap(crope& __x, crope& __y) { __x.swap(__y); }
2327 _STLP_TEMPLATE_NULL struct hash<crope> {
2328 size_t operator()(const crope& __str) const {

Completed in 257 milliseconds