HomeSort by relevance Sort by last modified time
    Searched defs:base (Results 376 - 400 of 5760) sorted by null

<<11121314151617181920>>

  /external/libcxx/test/std/containers/container.adaptors/priority.queue/priqueue.cons.alloc/
ctor_alloc.pass.cpp 25 typedef std::priority_queue<T, std::vector<T, test_allocator<T> > > base; typedef in struct:test
26 typedef typename base::container_type container_type;
27 typedef typename base::value_compare value_compare;
29 explicit test(const test_allocator<int>& a) : base(a) {}
31 : base(comp, c, a) {}
33 const test_allocator<int>& a) : base(comp, c, a) {}
36 const test_allocator<int>& a) : base(comp, std::move(c), a) {}
37 test(test&& q, const test_allocator<int>& a) : base(std::move(q), a) {}
41 using base::c;
ctor_comp_alloc.pass.cpp 25 typedef std::priority_queue<T, std::vector<T, test_allocator<T> > > base; typedef in struct:test
26 typedef typename base::container_type container_type;
27 typedef typename base::value_compare value_compare;
29 explicit test(const test_allocator<int>& a) : base(a) {}
31 : base(comp, a) {}
33 const test_allocator<int>& a) : base(comp, c, a) {}
36 const test_allocator<int>& a) : base(comp, std::move(c), a) {}
37 test(test&& q, const test_allocator<int>& a) : base(std::move(q), a) {}
41 using base::c;
  /external/libcxx/test/std/depr/depr.lib.binders/depr.lib.binder.1st/
binder1st.pass.cpp 36 typedef std::binder1st<test_func> base; typedef in class:test
  /external/libcxx/test/std/depr/depr.lib.binders/depr.lib.binder.2nd/
binder2nd.pass.cpp 36 typedef std::binder2nd<test_func> base; typedef in class:test
  /external/libcxx/test/std/experimental/filesystem/fs.op.funcs/fs.op.absolute/
absolute.pass.cpp 14 // path absolute(const path& p, const path& base=current_path());
42 const path base("//net/bar/baz");
46 path ret = absolute(p, base);
53 const path base("//net/bar");
57 // ensure absolute(base) is not recursively called
58 TEST_REQUIRE(base.has_root_name());
59 TEST_REQUIRE(base.has_root_directory());
61 path ret = absolute(p, base);
72 const path base("//net/foo/bar");
76 // absolute is called recursively on base. The following condition
108 const path base = current_path(); local
    [all...]
  /external/libcxx/test/std/experimental/filesystem/fs.op.funcs/fs.op.system_complete/
system_complete.pass.cpp 49 const path base = current_path(); local
52 const path expect = absolute(p, base);
  /external/libcxx/test/std/input.output/iostream.format/ext.manip/
get_money.pass.cpp 26 typedef std::basic_streambuf<CharT> base; typedef in struct:testbuf
35 base::setg(const_cast<CharT*>(str_.data()),
get_time.pass.cpp 26 typedef std::basic_streambuf<CharT> base; typedef in struct:testbuf
35 base::setg(const_cast<CharT*>(str_.data()),
  /external/libcxx/test/std/input.output/iostream.format/input.streams/iostreamclass/iostream.assign/
member_swap.pass.cpp 31 typedef std::basic_iostream<CharT> base; typedef in struct:test_iostream
32 test_iostream(testbuf<CharT>* sb) : base(sb) {}
34 void swap(test_iostream& s) {base::swap(s);}
move_assign.pass.cpp 34 typedef std::basic_iostream<CharT> base; typedef in struct:test_iostream
35 test_iostream(testbuf<CharT>* sb) : base(sb) {}
38 {base::operator=(std::move(s)); return *this;}
  /external/libcxx/test/std/input.output/iostream.format/input.streams/istream/istream.assign/
member_swap.pass.cpp 31 typedef std::basic_istream<CharT> base; typedef in struct:test_istream
32 test_istream(testbuf<CharT>* sb) : base(sb) {}
34 void swap(test_istream& s) {base::swap(s);}
move_assign.pass.cpp 34 typedef std::basic_istream<CharT> base; typedef in struct:test_istream
35 test_istream(testbuf<CharT>* sb) : base(sb) {}
38 {base::operator=(std::move(s)); return *this;}
  /external/libcxx/test/std/input.output/iostream.format/output.streams/ostream.assign/
member_swap.pass.cpp 31 typedef std::basic_ostream<CharT> base; typedef in struct:test_ostream
32 test_ostream(testbuf<CharT>* sb) : base(sb) {}
34 void swap(test_ostream& s) {base::swap(s);}
move_assign.pass.cpp 34 typedef std::basic_ostream<CharT> base; typedef in struct:test_ostream
35 test_ostream(testbuf<CharT>* sb) : base(sb) {}
38 {base::operator=(std::move(s)); return *this;}
  /external/libcxx/test/std/input.output/iostream.format/output.streams/ostream.seeks/
seekp.pass.cpp 26 typedef std::basic_streambuf<CharT> base; typedef in struct:testbuf
31 typename base::pos_type
32 seekpos(typename base::pos_type sp, std::ios_base::openmode which)
seekp2.pass.cpp 26 typedef std::basic_streambuf<CharT> base; typedef in struct:testbuf
31 typename base::pos_type
32 seekoff(typename base::off_type off, std::ios_base::seekdir way,
tellp.pass.cpp 26 typedef std::basic_streambuf<CharT> base; typedef in struct:testbuf
31 typename base::pos_type
32 seekoff(typename base::off_type off, std::ios_base::seekdir way, std::ios_base::openmode which)
  /external/libcxx/test/std/input.output/stream.buffers/streambuf/streambuf.protected/streambuf.get.area/
setg.pass.cpp 24 typedef std::basic_streambuf<CharT> base; typedef in struct:test
30 base::setg(gbeg, gnext, gend);
31 assert(base::eback() == gbeg);
32 assert(base::gptr() == gnext);
33 assert(base::egptr() == gend);
  /external/libcxx/test/std/input.output/stream.buffers/streambuf/streambuf.protected/streambuf.put.area/
setp.pass.cpp 24 typedef std::basic_streambuf<CharT> base; typedef in struct:test
30 base::setp(pbeg, pend);
31 assert(base::pbase() == pbeg);
32 assert(base::pptr() == pbeg);
33 assert(base::epptr() == pend);
  /external/libcxx/test/std/input.output/stream.buffers/streambuf/streambuf.virtuals/streambuf.virt.get/
xsgetn.pass.cpp 23 typedef std::basic_streambuf<char> base; typedef in struct:test
29 base::setg(gbeg, gnext, gend);
  /external/libcxx/test/std/input.output/stream.buffers/streambuf/streambuf.virtuals/streambuf.virt.put/
xsputn.pass.cpp 23 typedef std::basic_streambuf<char> base; typedef in struct:test
29 base::setp(pbeg, pend);
  /external/libcxx/test/std/input.output/string.streams/stringbuf/stringbuf.virtuals/
overflow.pass.cpp 26 typedef std::basic_stringbuf<CharT> base; typedef in struct:testbuf
29 : base(str, which) {}
31 typename base::int_type
32 overflow(typename base::int_type c = base::traits_type::eof())
33 {++overflow_called; return base::overflow(c);}
35 void pbump(int n) {base::pbump(n);}
  /external/libcxx/test/std/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op.const/
convert.fail.cpp 30 struct base {}; struct
37 test<base*>(&d);
  /external/libcxx/test/std/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op=/
move_iterator.fail.cpp 32 struct base {}; struct
38 test<base*>(&d);
  /external/libcxx/test/std/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.cons/
reverse_iterator.fail.cpp 30 struct base {}; struct
37 test<base*>(&d);

Completed in 231 milliseconds

<<11121314151617181920>>