Searched defs:tuple (Results 26 - 50 of 54) sorted by relevance

123

/external/clang/lib/Frontend/
H A DInitPreprocessor.cpp529 VersionTuple tuple = LangOpts.ObjCRuntime.getVersion(); local
532 if (tuple.getMinor().hasValue())
533 minor = tuple.getMinor().getValue();
536 if (tuple.getSubminor().hasValue())
537 subminor = tuple.getSubminor().getValue();
540 Twine(tuple.getMajor() * 10000 + minor * 100 +
/external/clang/test/CXX/temp/temp.decls/temp.variadic/
H A Dexample-bind.cpp54 template<typename... Values> class tuple;
56 // Basis case: zero-length tuple
57 template<> class tuple<> { }; class
60 class tuple<Head, Tail...> : private tuple<Tail...> { class in inherits:tuple
61 typedef tuple<Tail...> inherited;
64 tuple() { } function in class:tuple
67 // Construct tuple from separate arguments.
68 tuple(typename add_const_reference<Head>::type v, function in class:tuple
72 // Construct tuple fro
73 template<typename... VValues> tuple(const tuple<VValues...>& other) function in class:tuple
143 get(const tuple<Head, Values...>& t) argument
152 get(const tuple<Head, Values...>& t) argument
168 operator ==(const tuple<&, const tuple<>&) argument
171 operator ==(const tuple<T, TTail...>& t, const tuple<U, UTail...>& u) argument
180 operator <(const tuple<&, const tuple<>&) argument
183 operator <(const tuple<T, TTail...>& t, const tuple<U, UTail...>& u) argument
283 mu(reference_wrapper<T>& bound_arg, const tuple<Args&...>&) argument
316 mu(Bound& bound_arg, const tuple<Args&...>&) argument
[all...]
/external/clang/test/SemaCXX/
H A Dfor-range-examples.cpp75 struct tuple : tuple_elem<A>... { struct in namespace:map_range
76 tuple() : tuple_elem<A>()... {} function in struct:map_range::tuple
77 tuple(A... a) : tuple_elem<A>(a)... {} function in struct:map_range::tuple
141 typedef map_range::tuple<int, double> T;
/external/google-breakpad/src/testing/gtest/test/
H A Dgtest-param-test_test.cc69 using ::std::tr1::tuple;
97 ::std::string PrintValue(const tuple<T1, T2>& value) { argument
104 ::std::string PrintValue(const tuple<T1, T2, T3>& value) { argument
114 const tuple<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10>& value) {
466 const ParamGenerator<tuple<const char*, int> > gen =
469 tuple<const char*, int> expected_values[] = {
477 const ParamGenerator<tuple<int, int, int> > gen = Combine(Values(0, 1),
480 tuple<int, int, int> expected_values[] = {
492 const ParamGenerator<tuple<int, int> > gen = Combine(Values(42),
495 tuple<in
113 PrintValue( const tuple<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10>& value) argument
[all...]
/external/gtest/test/
H A Dgtest-param-test_test.cc69 using ::std::tr1::tuple;
97 ::std::string PrintValue(const tuple<T1, T2>& value) { argument
104 ::std::string PrintValue(const tuple<T1, T2, T3>& value) { argument
114 const tuple<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10>& value) {
466 const ParamGenerator<tuple<const char*, int> > gen =
469 tuple<const char*, int> expected_values[] = {
477 const ParamGenerator<tuple<int, int, int> > gen = Combine(Values(0, 1),
480 tuple<int, int, int> expected_values[] = {
492 const ParamGenerator<tuple<int, int> > gen = Combine(Values(42),
495 tuple<in
113 PrintValue( const tuple<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10>& value) argument
[all...]
/external/protobuf/gtest/test/
H A Dgtest-param-test_test.cc69 using ::std::tr1::tuple;
97 ::std::string PrintValue(const tuple<T1, T2>& value) { argument
104 ::std::string PrintValue(const tuple<T1, T2, T3>& value) { argument
114 const tuple<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10>& value) {
466 const ParamGenerator<tuple<const char*, int> > gen =
469 tuple<const char*, int> expected_values[] = {
477 const ParamGenerator<tuple<int, int, int> > gen = Combine(Values(0, 1),
480 tuple<int, int, int> expected_values[] = {
492 const ParamGenerator<tuple<int, int> > gen = Combine(Values(42),
495 tuple<in
113 PrintValue( const tuple<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10>& value) argument
[all...]
/external/google-breakpad/src/testing/test/
H A Dgmock-actions_test.cc49 using ::std::tr1::tuple;
330 virtual int Perform(const tuple<bool, int>& args) { argument
344 // it a tuple whose size and type are compatible with F's argument
346 // 0-tuple; if F is void(bool, int), then Perform() takes a
347 // tuple<bool, int>, and so on.
394 virtual bool Perform(const tuple<int>& arg) {
438 Result Perform(const tuple<>&) const { return 0; }
543 action.Perform(tuple<>());
H A Dgmock-generated-actions_test.cc51 using ::std::tr1::tuple;
371 virtual int Perform(const tuple<int, int>& args) { argument
639 // Tests that the body of ACTION() can reference the argument tuple
642 StaticAssertTypeEq< ::std::tr1::tuple<int, char, int*>, args_type>();
692 EXPECT_EQ(&b, a.Perform(tuple<int, const bool&>(0, b)));
704 EXPECT_EQ(&n, a.Perform(tuple<int&, bool, int>(n, true, 1)));
973 const tuple<> empty = make_tuple();
H A Dgmock-matchers_test.cc73 using std::tr1::tuple;
1802 typedef ::std::tr1::tuple<long, int> Tuple2; // NOLINT
1804 // Tests that Eq() matches a 2-tuple where the first field == the
1818 // Tests that Ge() matches a 2-tuple where the first field >= the
1833 // Tests that Gt() matches a 2-tuple where the first field > the
1848 // Tests that Le() matches a 2-tuple where the first field <= the
1863 // Tests that Lt() matches a 2-tuple where the first field < the
1878 // Tests that Ne() matches a 2-tuple where the first field != the
4082 bool MatchAndExplain(const tuple<T1, T2>& a_pair, argument
4185 const Matcher<tuple<cons
[all...]
/external/iptables/extensions/
H A Dlibxt_conntrack.c44 struct ip_conntrack_old_tuple tuple[IP_CT_DIR_MAX]; member in struct:xt_conntrack_info
349 sinfo->tuple[IP_CT_DIR_ORIGINAL].dst.protonum = cb->val.protocol;
352 if (sinfo->tuple[IP_CT_DIR_ORIGINAL].dst.protonum == 0
362 sinfo->tuple[IP_CT_DIR_ORIGINAL].src.ip = cb->val.haddr.ip;
368 sinfo->tuple[IP_CT_DIR_ORIGINAL].dst.ip = cb->val.haddr.ip;
374 sinfo->tuple[IP_CT_DIR_REPLY].src.ip = cb->val.haddr.ip;
380 sinfo->tuple[IP_CT_DIR_REPLY].dst.ip = cb->val.haddr.ip;
709 printf(" %u", sinfo->tuple[IP_CT_DIR_ORIGINAL].dst.protonum);
718 (struct in_addr *)&sinfo->tuple[IP_CT_DIR_ORIGINAL].src.ip,
730 (struct in_addr *)&sinfo->tuple[IP_CT_DIR_ORIGINA
[all...]
/external/libxml2/python/
H A Dtypes.c488 PyObject *tuple; local
493 tuple = PyTuple_New(2);
494 PyTuple_SetItem(tuple, 0, node);
495 PyTuple_SetItem(tuple, 1, indexIntoNode);
497 ret = tuple;
509 PyObject *tuple; local
517 tuple = PyTuple_New(2);
518 PyTuple_SetItem(tuple, 0, node);
519 PyTuple_SetItem(tuple, 1, indexIntoNode);
521 PyList_SetItem(list, 0, tuple);
527 PyObject *tuple; local
[all...]
/external/openfst/src/include/fst/
H A Dencode.h66 Tuple(const Tuple& tuple) argument
67 : ilabel(tuple.ilabel), olabel(tuple.olabel), weight(tuple.weight) {}
132 const Tuple tuple(arc.ilabel,
135 typename EncodeHash::const_iterator it = encode_hash_.find(&tuple);
137 encode_tuples_.push_back(new Tuple(tuple));
147 const Tuple tuple(arc.ilabel,
150 typename EncodeHash::const_iterator it = encode_hash_.find(&tuple);
224 const Tuple* tuple local
264 Tuple* tuple = new Tuple(); local
448 const typename EncodeTable<A>::Tuple* tuple = table_->Decode(arc.ilabel); local
[all...]
H A Daccumulator.h700 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);
H A Dcompose.h266 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
355 StateId s1 = tuple
[all...]
H A Dreplace.h66 // // Lookup state ID by tuple. If it doesn't exist, then add it.
67 // StateId FindState(const StateTuple &tuple);
69 // // Lookup state tuple by ID.
109 bool operator()(const ReplaceStateTuple<S, P> &tuple) const {
110 return tuple.prefix_id == 0;
123 uint64 operator()(const ReplaceStateTuple<S, P> &tuple) const {
124 return tuple.prefix_id * (cumulative_size_array_->back()) +
125 cumulative_size_array_->at(tuple.fst_id - 1) +
126 tuple.fst_state;
135 // Useful when the fst_state uniquely define the tuple
220 FindState(const StateTuple &tuple) argument
499 const StateTuple& tuple = state_table_->Tuple(s); local
519 StateTuple tuple = state_table_->Tuple(s); local
557 StateTuple tuple = state_table_->Tuple(s); local
594 StateTuple tuple = state_table_->Tuple(s); local
638 StateTuple tuple = state_table_->Tuple(s); local
663 Expand(StateId s, const StateTuple &tuple, const ArcIteratorData<A> &data) argument
689 ComputeFinalArc(const StateTuple &tuple, A* arcp, uint32 flags = kArcValueFlags) argument
720 ComputeArc(const StateTuple &tuple, const A &arc, A* arcp, uint32 flags = kArcValueFlags) argument
[all...]
/external/selinux/policycoreutils/sepolicy/
H A Dsearch.c99 static int py_tuple_insert_obj(PyObject *tuple, int pos, PyObject *obj) argument
103 rt = PyTuple_SetItem(tuple, pos, obj);
308 PyObject *obj, *tuple = NULL; local
335 tuple = PyTuple_New(2);
336 if (!tuple) goto err;
345 if (py_tuple_insert_obj(tuple, 0, obj))
348 if (py_tuple_insert_obj(tuple, 1, obj))
350 if (py_append_obj(boollist, tuple))
352 tuple=NULL;
362 py_decref(tuple);
373 PyObject *obj, *dict=NULL, *tuple = NULL; local
[all...]
/external/protobuf/gtest/fused-src/gtest/
H A Dgtest.h155 // GTEST_HAS_TR1_TUPLE - Define it to 1/0 to indicate tr1::tuple
161 // Test's own tr1 tuple implementation should be
477 // Determines whether Google Test can use tr1/tuple. You can define
478 // this macro to 0 to prevent Google Test from using tuple (any
479 // feature depending on tuple with be disabled in this mode).
485 // Determines whether Google Test's own tr1 tuple implementation
490 // We use our own TR1 tuple if we aren't sure the user has an
492 // 2010 are the only mainstream compilers that come with a TR1 tuple
494 // defining __GNUC__ and friends, but cannot compile GCC's tuple
495 // implementation. MSVC 2008 (9.0) provides TR1 tuple i
686 class tuple<> { class in namespace:std::tr1
688 tuple() {} function in class:std::tr1::tuple
689 tuple(const tuple& /* t */) {} function in class:std::tr1::tuple
698 tuple() : f0_() {} function
702 tuple(const tuple& t) : f0_(t.f0_) {} function
730 tuple() : f0_(), f1_() {} function
735 tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_) {} function
740 tuple(const ::std::pair<U0, U1>& p) : f0_(p.first), f1_(p.second) {} function
773 tuple() : f0_(), f1_(), f2_() {} function
778 tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_) {} function
810 tuple() : f0_(), f1_(), f2_(), f3_() {} function
816 tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), f3_(t.f3_) {} function
851 tuple() : f0_(), f1_(), f2_(), f3_(), f4_() {} function
857 tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), f3_(t.f3_), function
895 tuple() : f0_(), f1_(), f2_(), f3_(), f4_(), f5_() {} function
902 tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), f3_(t.f3_), function
942 tuple() : f0_(), f1_(), f2_(), f3_(), f4_(), f5_(), f6_() {} function
949 tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), f3_(t.f3_), function
991 tuple() : f0_(), f1_(), f2_(), f3_(), f4_(), f5_(), f6_(), f7_() {} function
999 tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), f3_(t.f3_), function
1043 tuple() : f0_(), f1_(), f2_(), f3_(), f4_(), f5_(), f6_(), f7_(), f8_() {} function
1051 tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), f3_(t.f3_), function
1093 class tuple { class in namespace:std::tr1
1097 tuple() : f0_(), f1_(), f2_(), f3_(), f4_(), f5_(), f6_(), f7_(), f8_(), function in class:std::tr1::tuple
1106 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/extensions/pdt/
H A Dexpand.h130 StateTuple tuple(s, 0);
131 StateId start = state_table_->FindState(tuple);
139 const StateTuple &tuple = state_table_->Tuple(s); local
140 Weight w = fst_->Final(tuple.state_id);
141 if (w != Weight::Zero() && tuple.stack_id == 0)
177 StateTuple tuple = state_table_->Tuple(s); local
178 for (ArcIterator< Fst<A> > aiter(*fst_, tuple.state_id);
181 StackId stack_id = stack_->Find(tuple.stack_id, arc.ilabel);
185 } else if ((stack_id != tuple.stack_id) && !keep_parentheses_) {
705 PdtStateTuple<StateId, StackId> tuple(rfst
[all...]
/external/libvpx/libvpx/third_party/googletest/src/include/gtest/
H A Dgtest.h162 // GTEST_HAS_TR1_TUPLE - Define it to 1/0 to indicate tr1::tuple
172 // Test's own tr1 tuple implementation should be
588 // Determines whether Google Test can use tr1/tuple. You can define
589 // this macro to 0 to prevent Google Test from using tuple (any
590 // feature depending on tuple with be disabled in this mode).
593 // STLport, provided with the Android NDK, has neither <tr1/tuple> or <tuple>.
601 // Determines whether Google Test's own tr1 tuple implementation
606 // We use our own TR1 tuple if we aren't sure the user has an
609 // with a TR1 tuple implementatio
838 class tuple<> { class in namespace:std::tr1
840 tuple() {} function in class:std::tr1::tuple
841 tuple(const tuple& /* t */) {} function in class:std::tr1::tuple
850 tuple() : f0_() {} function
854 tuple(const tuple& t) : f0_(t.f0_) {} function
882 tuple() : f0_(), f1_() {} function
887 tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_) {} function
892 tuple(const ::std::pair<U0, U1>& p) : f0_(p.first), f1_(p.second) {} function
925 tuple() : f0_(), f1_(), f2_() {} function
930 tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_) {} function
962 tuple() : f0_(), f1_(), f2_(), f3_() {} function
968 tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), f3_(t.f3_) {} function
1003 tuple() : f0_(), f1_(), f2_(), f3_(), f4_() {} function
1009 tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), f3_(t.f3_), function
1047 tuple() : f0_(), f1_(), f2_(), f3_(), f4_(), f5_() {} function
1054 tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), f3_(t.f3_), function
1094 tuple() : f0_(), f1_(), f2_(), f3_(), f4_(), f5_(), f6_() {} function
1101 tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), f3_(t.f3_), function
1143 tuple() : f0_(), f1_(), f2_(), f3_(), f4_(), f5_(), f6_(), f7_() {} function
1151 tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), f3_(t.f3_), function
1195 tuple() : f0_(), f1_(), f2_(), f3_(), f4_(), f5_(), f6_(), f7_(), f8_() {} function
1203 tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), f3_(t.f3_), function
1245 class tuple { class in namespace:std::tr1
1249 tuple() : f0_(), f1_(), f2_(), f3_(), f4_(), f5_(), f6_(), f7_(), f8_(), function in class:std::tr1::tuple
1258 tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), f3_(t.f3_), function in class:std::tr1::tuple
[all...]
/external/wpa_supplicant_8/hs20/client/
H A Dosu_client.c957 int id, xml_node_t *tuple)
964 node = get_node(ctx->xml, tuple, "IPProtocol");
977 node = get_node(ctx->xml, tuple, "PortNumber");
956 set_pps_cred_policy_required_proto_port(struct hs20_osu_client *ctx, int id, xml_node_t *tuple) argument
/external/clang/lib/Frontend/Rewrite/
H A DRewriteModernObjC.cpp155 // This container maps an <class, group number for ivar> tuple to the type
3893 std::pair<const ObjCInterfaceDecl*, unsigned> tuple = std::make_pair(CDecl, GroupNo); local
3894 if (GroupRecordType.count(tuple))
3895 return GroupRecordType[tuple];
3918 QualType RetQT = GroupRecordType[tuple];
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
H A Dant-nodeps.jar ... String[] getValues () } org/apache/tools/ant/taskdefs/optional/EchoProperties$Tuple.class EchoProperties.java package org.apache. ...
/external/vogar/lib/
H A Dguava.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/annotations/ ...
/external/owasp/sanitizer/distrib/lib/
H A Dguava.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/collect/ ...
/external/owasp/sanitizer/lib/guava-libraries/
H A Dguava.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/collect/ ...

Completed in 831 milliseconds

123