HomeSort by relevance Sort by last modified time
    Searched refs:Tuple (Results 26 - 40 of 40) sorted by null

12

  /external/clang/test/CXX/temp/temp.param/
p15-cxx0x.cpp 169 template <class... Types> class Tuple;
  /external/ceres-solver/internal/ceres/gmock/
gmock.h 236 // tr1/tuple. gmock-port.h does this via gtest-port.h, which is
237 // guaranteed to pull in the tuple header.
286 // MatcherTuple<T>::type is a tuple type where each field is a Matcher
287 // for the corresponding field in tuple type T.
288 template <typename Tuple>
292 struct MatcherTuple< ::std::tr1::tuple<> > {
293 typedef ::std::tr1::tuple< > type;
297 struct MatcherTuple< ::std::tr1::tuple<A1> > {
298 typedef ::std::tr1::tuple<Matcher<A1> > type;
302 struct MatcherTuple< ::std::tr1::tuple<A1, A2> >
    [all...]
  /external/ceres-solver/internal/ceres/gtest/
gtest.h 157 // GTEST_HAS_TR1_TUPLE - Define it to 1/0 to indicate tr1::tuple
167 // Test's own tr1 tuple implementation should be
527 // Determines whether Google Test can use tr1/tuple. You can define
528 // this macro to 0 to prevent Google Test from using tuple (any
529 // feature depending on tuple with be disabled in this mode).
535 // Determines whether Google Test's own tr1 tuple implementation
540 // We use our own TR1 tuple if we aren't sure the user has an
542 // 2010 are the only mainstream compilers that come with a TR1 tuple
544 // defining __GNUC__ and friends, but cannot compile GCC's tuple
545 // implementation. MSVC 2008 (9.0) provides TR1 tuple in a 323 M
736 class tuple<> { class in namespace:std::tr1
738 tuple() {} function in class:std::tr1::tuple
739 tuple(const tuple& \/* t *\/) {} function in class:std::tr1::tuple
748 tuple() : f0_() {} function
752 tuple(const tuple& t) : f0_(t.f0_) {} function
780 tuple() : f0_(), f1_() {} function
785 tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_) {} function
790 tuple(const ::std::pair<U0, U1>& p) : f0_(p.first), f1_(p.second) {} function
823 tuple() : f0_(), f1_(), f2_() {} function
828 tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_) {} function
860 tuple() : f0_(), f1_(), f2_(), f3_() {} function
866 tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), f3_(t.f3_) {} function
901 tuple() : f0_(), f1_(), f2_(), f3_(), f4_() {} function
907 tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), f3_(t.f3_), function
945 tuple() : f0_(), f1_(), f2_(), f3_(), f4_(), f5_() {} function
952 tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), f3_(t.f3_), function
992 tuple() : f0_(), f1_(), f2_(), f3_(), f4_(), f5_(), f6_() {} function
999 tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), f3_(t.f3_), function
1041 tuple() : f0_(), f1_(), f2_(), f3_(), f4_(), f5_(), f6_(), f7_() {} function
1049 tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), f3_(t.f3_), function
1093 tuple() : f0_(), f1_(), f2_(), f3_(), f4_(), f5_(), f6_(), f7_(), f8_() {} function
1101 tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), f3_(t.f3_), function
1143 class tuple { class in namespace:std::tr1
1147 tuple() : f0_(), f1_(), f2_(), f3_(), f4_(), f5_(), f6_(), f7_(), f8_(), function in class:std::tr1::tuple
1156 tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), f3_(t.f3_), function in class:std::tr1::tuple
    [all...]
  /external/openfst/src/include/fst/
compose.h 266 const StateTuple &tuple = state_table_->Tuple(s); local
267 StateId s1 = tuple.state_id1;
268 StateId s2 = tuple.state_id2;
269 filter_->SetState(s1, s2, tuple.filter_state);
333 StateTuple tuple(arc1.nextstate, arc2.nextstate, f);
335 state_table_->FindState(tuple));
349 StateTuple tuple(s1, s2, f);
350 return state_table_->FindState(tuple);
354 const StateTuple &tuple = state_table_->Tuple(s) local
    [all...]
accumulator.h 630 return state_table_->Tuple(s);
700 StateTuple tuple = data_->GetTuple(s); local
701 fst_id_ = tuple.fst_id - 1; // Replace FST ID is 1-based
702 data_->GetAccumulator(fst_id_)->SetState(tuple.fst_state);
703 if ((tuple.prefix_id != 0) &&
704 (data_->GetFst(fst_id_)->Final(tuple.fst_state) != Weight::Zero())) {
706 offset_weight_ = data_->GetFst(fst_id_)->Final(tuple.fst_state);
  /external/chromium/testing/gmock/include/gmock/internal/
gmock-generated-internal-utils.h 64 // MatcherTuple<T>::type is a tuple type where each field is a Matcher
65 // for the corresponding field in tuple type T.
66 template <typename Tuple>
70 struct MatcherTuple< ::std::tr1::tuple<> > {
71 typedef ::std::tr1::tuple< > type;
75 struct MatcherTuple< ::std::tr1::tuple<A1> > {
76 typedef ::std::tr1::tuple<Matcher<A1> > type;
80 struct MatcherTuple< ::std::tr1::tuple<A1, A2> > {
81 typedef ::std::tr1::tuple<Matcher<A1>, Matcher<A2> > type;
85 struct MatcherTuple< ::std::tr1::tuple<A1, A2, A3> >
    [all...]
  /external/chromium/testing/gmock/include/gmock/
gmock-matchers.h 503 // An internal helper class for doing compile-time loop on a tuple's
    [all...]
gmock-generated-actions.h 47 // InvokeHelper<F> knows how to unpack an N-tuple and invoke an N-ary
54 class InvokeHelper<R, ::std::tr1::tuple<> > {
57 static R Invoke(Function function, const ::std::tr1::tuple<>&) {
64 const ::std::tr1::tuple<>&) {
70 class InvokeHelper<R, ::std::tr1::tuple<A1> > {
73 static R Invoke(Function function, const ::std::tr1::tuple<A1>& args) {
81 const ::std::tr1::tuple<A1>& args) {
88 class InvokeHelper<R, ::std::tr1::tuple<A1, A2> > {
91 static R Invoke(Function function, const ::std::tr1::tuple<A1, A2>& args) {
99 const ::std::tr1::tuple<A1, A2>& args)
    [all...]
  /external/llvm/utils/TableGen/
CodeGenRegisters.cpp 621 std::vector<Init*> Tuple;
627 Tuple.push_back(DefInit::get(Reg));
654 // Replace the sub-register list with Tuple.
656 RV.setValue(ListInit::get(Tuple, RegisterRecTy));
662 // CostPerUse is aggregated from all Tuple members.
    [all...]
  /prebuilts/devtools/tools/lib/
jython-2.5.3.jar 
  /prebuilts/misc/common/jython/
jython.jar 
  /prebuilts/tools/common/m2/repository/org/python/jython/2.5.3/
jython-2.5.3.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
ant-nodeps.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.jface.text_3.6.1.r361_v20100825-0800.jar 
  /prebuilts/misc/common/groovy/
groovy-all-1.7.0.jar 

Completed in 2773 milliseconds

12