/ndk/sources/cxx-stl/llvm-libc++/test/containers/sequences/list/list.ops/ |
splice_pos_list_iter.pass.cpp | 24 l1.splice(l1.end(), l2, l2.begin()); 26 assert(distance(l1.begin(), l1.end()) == 1); 28 assert(distance(l2.begin(), l2.end()) == 0); 29 std::list<int>::const_iterator i = l1.begin(); 35 l1.splice(l1.end(), l2, l2.begin()); 37 assert(distance(l1.begin(), l1.end()) == 1); 39 assert(distance(l2.begin(), l2.end()) == 1); 40 std::list<int>::const_iterator i = l1.begin(); 42 i = l2.begin(); 48 l1.splice(l1.end(), l2, next(l2.begin())); [all...] |
/external/marisa-trie/lib/marisa/ |
range.h | 11 Range(UInt32 begin, UInt32 end, UInt32 pos) 12 : begin_(begin), end_(end), pos_(pos) {} 14 void set_begin(UInt32 begin) { 15 begin_ = begin; 24 UInt32 begin() const { function in class:marisa::Range 45 WRange(UInt32 begin, UInt32 end, UInt32 pos, double weight) 46 : range_(begin, end, pos), weight_(weight) {} 48 void set_begin(UInt32 begin) { 49 range_.set_begin(begin); 64 UInt32 begin() const function in class:marisa::WRange [all...] |
/external/marisa-trie/v0_1_5/lib/marisa_alpha/ |
range.h | 11 Range(UInt32 begin, UInt32 end, UInt32 pos) 12 : begin_(begin), end_(end), pos_(pos) {} 14 void set_begin(UInt32 begin) { 15 begin_ = begin; 24 UInt32 begin() const { function in class:marisa_alpha::Range 45 WRange(UInt32 begin, UInt32 end, UInt32 pos, double weight) 46 : range_(begin, end, pos), weight_(weight) {} 48 void set_begin(UInt32 begin) { 49 range_.set_begin(begin); 64 UInt32 begin() const function in class:marisa_alpha::WRange [all...] |
/ndk/sources/cxx-stl/llvm-libc++/test/containers/sequences/forwardlist/forwardlist.modifiers/ |
resize_size_value.pass.cpp | 25 C c(std::begin(t), std::end(t)); 28 assert(distance(c.begin(), c.end()) == 3); 29 assert(*next(c.begin(), 0) == 0); 30 assert(*next(c.begin(), 1) == 1); 31 assert(*next(c.begin(), 2) == 2); 34 assert(distance(c.begin(), c.end()) == 6); 35 assert(*next(c.begin(), 0) == 0); 36 assert(*next(c.begin(), 1) == 1); 37 assert(*next(c.begin(), 2) == 2); 38 assert(*next(c.begin(), 3) == 10) [all...] |
resize_size.pass.cpp | 26 assert(distance(c.begin(), c.end()) == 0); 28 assert(distance(c.begin(), c.end()) == 10); 30 assert(distance(c.begin(), c.end()) == 20); 32 assert(distance(c.begin(), c.end()) == 5); 34 assert(distance(c.begin(), c.end()) == 0); 40 C c(std::begin(t), std::end(t)); 43 assert(distance(c.begin(), c.end()) == 3); 44 assert(*next(c.begin(), 0) == 0); 45 assert(*next(c.begin(), 1) == 1); 46 assert(*next(c.begin(), 2) == 2) [all...] |
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/parallel/ |
sort.h | 61 parallel_sort(RandomAccessIterator begin, RandomAccessIterator end, 67 * @param begin Begin iterator of input sequence. 74 parallel_sort(RandomAccessIterator begin, RandomAccessIterator end, 77 _GLIBCXX_CALL(end - begin) 81 (begin, end, comp, parallelism.get_num_threads()); 84 (begin, end, comp, parallelism.get_num_threads()); 90 * @param begin Begin iterator of input sequence. 97 parallel_sort(RandomAccessIterator begin, RandomAccessIterator end [all...] |
/ndk/sources/cxx-stl/llvm-libc++/test/containers/associative/multiset/multiset.cons/ |
copy.pass.cpp | 45 assert(distance(m.begin(), m.end()) == 9); 46 assert(*next(m.begin(), 0) == 1); 47 assert(*next(m.begin(), 1) == 1); 48 assert(*next(m.begin(), 2) == 1); 49 assert(*next(m.begin(), 3) == 2); 50 assert(*next(m.begin(), 4) == 2); 51 assert(*next(m.begin(), 5) == 2); 52 assert(*next(m.begin(), 6) == 3); 53 assert(*next(m.begin(), 7) == 3); 54 assert(*next(m.begin(), 8) == 3) [all...] |
copy_assign.pass.cpp | 46 assert(distance(m.begin(), m.end()) == 9); 47 assert(*next(m.begin(), 0) == 1); 48 assert(*next(m.begin(), 1) == 1); 49 assert(*next(m.begin(), 2) == 1); 50 assert(*next(m.begin(), 3) == 2); 51 assert(*next(m.begin(), 4) == 2); 52 assert(*next(m.begin(), 5) == 2); 53 assert(*next(m.begin(), 6) == 3); 54 assert(*next(m.begin(), 7) == 3); 55 assert(*next(m.begin(), 8) == 3) [all...] |
/external/quake/quake/src/QW/server/ |
qwsv.dsp | 24 # Begin Project
83 # Begin Target
87 # Begin Group "Source Files"
90 # Begin Source File
94 # Begin Source File
98 # Begin Source File
102 # Begin Source File
106 # Begin Source File
110 # Begin Source File
114 # Begin Source File [all...] |
/ndk/sources/cxx-stl/llvm-libc++/test/containers/associative/multiset/ |
erase_iter_iter.pass.cpp | 40 assert(i == next(m.begin(), 5)); 41 assert(*next(m.begin(), 0) == 1); 42 assert(*next(m.begin(), 1) == 2); 43 assert(*next(m.begin(), 2) == 3); 44 assert(*next(m.begin(), 3) == 4); 45 assert(*next(m.begin(), 4) == 5); 46 assert(*next(m.begin(), 5) == 6); 47 assert(*next(m.begin(), 6) == 7); 48 assert(*next(m.begin(), 7) == 8); 52 assert(i == next(m.begin(), 3)) [all...] |
/ndk/sources/cxx-stl/llvm-libc++/test/containers/associative/set/ |
erase_iter_iter.pass.cpp | 40 assert(i == next(m.begin(), 5)); 41 assert(*next(m.begin(), 0) == 1); 42 assert(*next(m.begin(), 1) == 2); 43 assert(*next(m.begin(), 2) == 3); 44 assert(*next(m.begin(), 3) == 4); 45 assert(*next(m.begin(), 4) == 5); 46 assert(*next(m.begin(), 5) == 6); 47 assert(*next(m.begin(), 6) == 7); 48 assert(*next(m.begin(), 7) == 8); 52 assert(i == next(m.begin(), 3)) [all...] |
/external/webkit/Tools/MiniBrowser/win/ |
MiniBrowser.rc | 21 BEGIN
23 BEGIN
29 BEGIN
41 BEGIN
53 BEGIN
59 BEGIN
|
/external/stlport/test/unit/ |
rndshf_test.cpp | 56 __iota(v1.begin(), v1.end(), 0); 61 random_shuffle(v1.begin(), v1.end(), r); 62 CPPUNIT_ASSERT(count(v1.begin(), v1.end(), 0)==1); 63 CPPUNIT_ASSERT(count(v1.begin(), v1.end(), 1)==1); 64 CPPUNIT_ASSERT(count(v1.begin(), v1.end(), 2)==1); 65 CPPUNIT_ASSERT(count(v1.begin(), v1.end(), 3)==1); 66 CPPUNIT_ASSERT(count(v1.begin(), v1.end(), 4)==1); 67 CPPUNIT_ASSERT(count(v1.begin(), v1.end(), 5)==1); 68 CPPUNIT_ASSERT(count(v1.begin(), v1.end(), 6)==1); 69 CPPUNIT_ASSERT(count(v1.begin(), v1.end(), 7)==1) [all...] |
/ndk/tests/device/test-gnustl-full/unit/ |
rndshf_test.cpp | 56 __iota(v1.begin(), v1.end(), 0); 61 random_shuffle(v1.begin(), v1.end(), r); 62 CPPUNIT_ASSERT(count(v1.begin(), v1.end(), 0)==1); 63 CPPUNIT_ASSERT(count(v1.begin(), v1.end(), 1)==1); 64 CPPUNIT_ASSERT(count(v1.begin(), v1.end(), 2)==1); 65 CPPUNIT_ASSERT(count(v1.begin(), v1.end(), 3)==1); 66 CPPUNIT_ASSERT(count(v1.begin(), v1.end(), 4)==1); 67 CPPUNIT_ASSERT(count(v1.begin(), v1.end(), 5)==1); 68 CPPUNIT_ASSERT(count(v1.begin(), v1.end(), 6)==1); 69 CPPUNIT_ASSERT(count(v1.begin(), v1.end(), 7)==1) [all...] |
/ndk/tests/device/test-stlport/unit/ |
rndshf_test.cpp | 56 __iota(v1.begin(), v1.end(), 0); 61 random_shuffle(v1.begin(), v1.end(), r); 62 CPPUNIT_ASSERT(count(v1.begin(), v1.end(), 0)==1); 63 CPPUNIT_ASSERT(count(v1.begin(), v1.end(), 1)==1); 64 CPPUNIT_ASSERT(count(v1.begin(), v1.end(), 2)==1); 65 CPPUNIT_ASSERT(count(v1.begin(), v1.end(), 3)==1); 66 CPPUNIT_ASSERT(count(v1.begin(), v1.end(), 4)==1); 67 CPPUNIT_ASSERT(count(v1.begin(), v1.end(), 5)==1); 68 CPPUNIT_ASSERT(count(v1.begin(), v1.end(), 6)==1); 69 CPPUNIT_ASSERT(count(v1.begin(), v1.end(), 7)==1) [all...] |
/external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/ |
t032subrulePredict.g | 6 a: 'BEGIN' b WS+ 'END';
|
/external/antlr/antlr-3.4/runtime/Python/tests/ |
t032subrulePredict.g | 6 a: 'BEGIN' b WS+ 'END';
|
/external/e2fsprogs/ |
.missing-copyright | 3 find . -type f \! -name \*~ \! -exec grep -q Begin-Header \{\} \; -print \
|
/external/qemu/distrib/sdl-1.2.15/VisualCE/ |
SDL.vcw | 14 Begin Project Dependency 17 Begin Project Dependency 44 Begin Project Dependency 59 Begin Project Dependency 62 Begin Project Dependency 77 Begin Project Dependency 80 Begin Project Dependency 95 Begin Project Dependency 98 Begin Project Dependency
|
/external/qemu/distrib/sdl-1.2.15/src/main/win32/ |
version.rc | 19 BEGIN 21 BEGIN 23 BEGIN 35 BEGIN
|
/external/stlport/stlport/stl/ |
_relops_cont.h | 10 equal(__x.begin(), __x.end(), __y.begin()); 17 return lexicographical_compare(__x.begin(), __x.end(), 18 __y.begin(), __y.end());
|
/external/webkit/Tools/WinLauncher/ |
WinLauncher.rc | 42 BEGIN 44 BEGIN 49 BEGIN 61 BEGIN 76 BEGIN 91 BEGIN 96 BEGIN 104 BEGIN 118 BEGIN
|
/frameworks/opt/vcard/tests/res/raw/ |
v21_backslash.vcf | 0 BEGIN:VCARD
|
v21_invalid_multiple_line.vcf | 0 BEGIN:VCARD
|
v21_malformed_photo.vcf | 0 BEGIN:VCARD
|