Home | History | Annotate | Download | only in base

Lines Matching defs:base

5 #include "base/tuple.h"
7 #include "base/compiler_specific.h"
10 namespace base {
35 base::Tuple<> t0 = base::MakeTuple();
37 base::Tuple<int> t1(1);
38 base::Tuple<int, const char*> t2 =
39 base::MakeTuple(1, static_cast<const char*>("wee"));
40 base::Tuple<int, int, int> t3(1, 2, 3);
41 base::Tuple<int, int, int, int*> t4(1, 2, 3, &get<0>(t1));
42 base::Tuple<int, int, int, int, int*> t5(1, 2, 3, 4, &get<0>(t4));
43 base::Tuple<int, int, int, int, int, int*> t6(1, 2, 3, 4, 5, &get<0>(t4));
68 DispatchToFunction(&DoAdd, base::MakeTuple(9, 8, 7, &res));
114 base::Tuple<CopyLogger, CopyLogger*, bool*> tuple(logger, &logger, &res);
134 } // namespace base