HomeSort by relevance Sort by last modified time
    Searched full:begin (Results 26 - 50 of 17279) sorted by null

12 3 4 5 6 7 8 91011>>

  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/associative/set/
erase_iter_iter.pass.cpp 42 assert(i == next(m.begin(), 5));
43 assert(*next(m.begin(), 0) == 1);
44 assert(*next(m.begin(), 1) == 2);
45 assert(*next(m.begin(), 2) == 3);
46 assert(*next(m.begin(), 3) == 4);
47 assert(*next(m.begin(), 4) == 5);
48 assert(*next(m.begin(), 5) == 6);
49 assert(*next(m.begin(), 6) == 7);
50 assert(*next(m.begin(), 7) == 8);
54 assert(i == next(m.begin(), 3))
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/re/re.traits/
isctype.pass.cpp 25 assert( t.isctype('_', t.lookup_classname(s.begin(), s.end())));
26 assert( t.isctype('a', t.lookup_classname(s.begin(), s.end())));
27 assert( t.isctype('Z', t.lookup_classname(s.begin(), s.end())));
28 assert( t.isctype('5', t.lookup_classname(s.begin(), s.end())));
29 assert(!t.isctype(' ', t.lookup_classname(s.begin(), s.end())));
30 assert(!t.isctype('-', t.lookup_classname(s.begin(), s.end())));
31 assert(!t.isctype('@', t.lookup_classname(s.begin(), s.end())));
34 assert(!t.isctype('_', t.lookup_classname(s.begin(), s.end())));
35 assert( t.isctype('a', t.lookup_classname(s.begin(), s.end())));
36 assert( t.isctype('Z', t.lookup_classname(s.begin(), s.end())))
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/associative/map/map.modifiers/
erase_iter.pass.cpp 42 assert(i == next(m.begin(), 3));
43 assert(m.begin()->first == 1);
44 assert(m.begin()->second == 1.5);
45 assert(next(m.begin())->first == 2);
46 assert(next(m.begin())->second == 2.5);
47 assert(next(m.begin(), 2)->first == 3);
48 assert(next(m.begin(), 2)->second == 3.5);
49 assert(next(m.begin(), 3)->first == 5);
50 assert(next(m.begin(), 3)->second == 5.5);
51 assert(next(m.begin(), 4)->first == 6)
    [all...]
  /external/chromium_org/third_party/icu/source/common/
chariter.cpp 22 : textLength(0), pos(0), begin(0), end(0) {
26 : textLength(length), pos(0), begin(0), end(length) {
33 : textLength(length), pos(position), begin(0), end(length) {
45 : textLength(length), pos(position), begin(textBegin), end(textEnd) {
49 if(begin < 0) {
50 begin = 0;
51 } else if(begin > textLength) {
52 begin = textLength;
54 if(end < begin) {
55 end = begin;
    [all...]
  /external/clang/test/CodeGen/
2002-07-17-StringConstant.c 4 char * foo() { return "\\begin{"; }
  /external/e2fsprogs/misc/
profile-to-c.awk 2 BEGIN {
  /external/icu4c/common/
chariter.cpp 22 : textLength(0), pos(0), begin(0), end(0) {
26 : textLength(length), pos(0), begin(0), end(length) {
33 : textLength(length), pos(position), begin(0), end(length) {
45 : textLength(length), pos(position), begin(textBegin), end(textEnd) {
49 if(begin < 0) {
50 begin = 0;
51 } else if(begin > textLength) {
52 begin = textLength;
54 if(end < begin) {
55 end = begin;
    [all...]
  /frameworks/opt/vcard/tests/res/raw/
v30_multibyte_param.vcf 0 BEGIN:VCARD
v30_pause_wait.vcf 0 BEGIN:VCARD
  /external/chromium_org/third_party/JSON/JSON-2.59/t/
00_load.t 3 BEGIN { plan tests => 5 };
5 BEGIN { $ENV{PERL_JSON_BACKEND} = "JSON::backportPP"; }
7 BEGIN {
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/forwardlist/forwardlist.modifiers/
resize_size.pass.cpp 27 assert(distance(c.begin(), c.end()) == 0);
29 assert(distance(c.begin(), c.end()) == 10);
31 assert(distance(c.begin(), c.end()) == 20);
33 assert(distance(c.begin(), c.end()) == 5);
35 assert(distance(c.begin(), c.end()) == 0);
41 C c(std::begin(t), std::end(t));
44 assert(distance(c.begin(), c.end()) == 3);
45 assert(*next(c.begin(), 0) == 0);
46 assert(*next(c.begin(), 1) == 1);
47 assert(*next(c.begin(), 2) == 2)
    [all...]
insert_after_const.pass.cpp 27 assert(i == c.begin());
30 assert(distance(c.begin(), c.end()) == 1);
33 assert(i == next(c.begin()));
35 assert(*next(c.begin()) == 1);
36 assert(distance(c.begin(), c.end()) == 2);
39 assert(i == next(c.begin(), 2));
41 assert(*next(c.begin()) == 1);
42 assert(*next(c.begin(), 2) == 2);
43 assert(distance(c.begin(), c.end()) == 3);
46 assert(i == next(c.begin()));
    [all...]
insert_after_init.pass.cpp 29 assert(distance(c.begin(), c.end()) == 0);
33 assert(distance(c.begin(), c.end()) == 3);
34 assert(*next(c.begin(), 0) == 0);
35 assert(*next(c.begin(), 1) == 1);
36 assert(*next(c.begin(), 2) == 2);
38 i = c.insert_after(c.begin(), {3, 4});
39 assert(i == next(c.begin(), 2));
40 assert(distance(c.begin(), c.end()) == 5);
41 assert(*next(c.begin(), 0) == 0);
42 assert(*next(c.begin(), 1) == 3)
    [all...]
insert_after_range.pass.cpp 33 assert(distance(c.begin(), c.end()) == 0);
37 assert(distance(c.begin(), c.end()) == 3);
38 assert(*next(c.begin(), 0) == 0);
39 assert(*next(c.begin(), 1) == 1);
40 assert(*next(c.begin(), 2) == 2);
42 i = c.insert_after(c.begin(), J(t+3), J(t+5));
43 assert(i == next(c.begin(), 2));
44 assert(distance(c.begin(), c.end()) == 5);
45 assert(*next(c.begin(), 0) == 0);
46 assert(*next(c.begin(), 1) == 3)
    [all...]
insert_after_size_value.pass.cpp 28 assert(distance(c.begin(), c.end()) == 0);
32 assert(distance(c.begin(), c.end()) == 3);
33 assert(*next(c.begin(), 0) == 3);
34 assert(*next(c.begin(), 1) == 3);
35 assert(*next(c.begin(), 2) == 3);
37 i = c.insert_after(c.begin(), 2, 2);
38 assert(i == next(c.begin(), 2));
39 assert(distance(c.begin(), c.end()) == 5);
40 assert(*next(c.begin(), 0) == 3);
41 assert(*next(c.begin(), 1) == 2)
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/list/list.ops/
splice_pos_list_iter.pass.cpp 30 l1.splice(l1.end(), l2, l2.begin());
32 assert(distance(l1.begin(), l1.end()) == 1);
34 assert(distance(l2.begin(), l2.end()) == 0);
35 std::list<int>::const_iterator i = l1.begin();
41 l1.splice(l1.end(), l2, l2.begin());
43 assert(distance(l1.begin(), l1.end()) == 1);
45 assert(distance(l2.begin(), l2.end()) == 1);
46 std::list<int>::const_iterator i = l1.begin();
48 i = l2.begin();
54 l1.splice(l1.end(), l2, next(l2.begin()));
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/associative/multimap/multimap.modifiers/
erase_key.pass.cpp 44 assert(next(m.begin(), 0)->first == 1);
45 assert(next(m.begin(), 0)->second == 1);
46 assert(next(m.begin(), 1)->first == 1);
47 assert(next(m.begin(), 1)->second == 1.5);
48 assert(next(m.begin(), 2)->first == 1);
49 assert(next(m.begin(), 2)->second == 2);
50 assert(next(m.begin(), 3)->first == 3);
51 assert(next(m.begin(), 3)->second == 1);
52 assert(next(m.begin(), 4)->first == 3);
53 assert(next(m.begin(), 4)->second == 1.5)
    [all...]
  /external/qemu/distrib/sdl-1.2.15/VisualC/SDL/
SDL.dsp 24 # Begin Project
85 # Begin Target
89 # Begin Source File
93 # Begin Source File
97 # Begin Source File
101 # Begin Source File
105 # Begin Source File
109 # Begin Source File
113 # Begin Source File
117 # Begin Source Fil
    [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++/libcxx/test/containers/associative/multiset/
equal_range.pass.cpp 43 assert(r.first == next(m.begin(), 0));
44 assert(r.second == next(m.begin(), 0));
46 assert(r.first == next(m.begin(), 0));
47 assert(r.second == next(m.begin(), 3));
49 assert(r.first == next(m.begin(), 3));
50 assert(r.second == next(m.begin(), 3));
52 assert(r.first == next(m.begin(), 3));
53 assert(r.second == next(m.begin(), 6));
55 assert(r.first == next(m.begin(), 6));
56 assert(r.second == next(m.begin(), 6))
    [all...]
  /external/chromium_org/tools/deep_memory_profiler/tests/
range_dict_tests.py 44 for begin, end, attr in ranges.iter_range(20, 40):
45 result.append({'begin': begin, 'end':end, 'attr':attr.get()})
47 {'begin': 20, 'end': 40, 'attr': 0},
55 for begin, end, attr in ranges.iter_range(20, 20):
56 result.append({'begin': begin, 'end':end, 'attr':attr.get()})
62 for begin, end, attr in ranges.iter_range(20, 30):
64 for begin, end, attr in ranges.iter_range(30, 40):
68 for begin, end, attr in ranges.iter_range(20, 40)
    [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++/libcxx/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...]

Completed in 1141 milliseconds

12 3 4 5 6 7 8 91011>>