Searched refs:tuple (Results 176 - 200 of 652) sorted by relevance

1234567891011>>

/external/libnl/lib/netfilter/
H A Dexp.c77 static int exp_parse_ip(struct nfnl_exp *exp, int tuple, struct nlattr *attr) argument
91 err = nfnl_exp_set_src(exp, tuple, addr);
100 err = nfnl_exp_set_dst(exp, tuple, addr);
109 err = nfnl_exp_set_src(exp, tuple, addr);
118 err = nfnl_exp_set_dst(exp, tuple, addr);
132 static int exp_parse_proto(struct nfnl_exp *exp, int tuple, struct nlattr *attr) argument
144 nfnl_exp_set_l4protonum(exp, tuple, nla_get_u8(tb[CTA_PROTO_NUM]));
151 nfnl_exp_set_ports(exp, tuple, srcport, dstport);
160 nfnl_exp_set_icmp(exp, tuple, icmpid, icmptype, icmpcode);
164 static int exp_parse_tuple(struct nfnl_exp *exp, int tuple, struc argument
319 exp_get_tuple_attr(int tuple) argument
345 struct nlattr *tuple, *ip, *proto; local
[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/libnetfilter_conntrack/src/conntrack/
H A Dsnprintf_xml.c68 const struct __nfct_tuple *tuple,
72 .s_addr = (type == __ADDR_SRC) ? tuple->src.v4 : tuple->dst.v4,
80 const struct __nfct_tuple *tuple,
85 const void *p = (type == __ADDR_SRC) ? &tuple->src.v6 : &tuple->dst.v6;
96 const struct __nfct_tuple *tuple,
106 switch (tuple->l3protonum) {
108 ret = __snprintf_ipv4_xml(buf+offset, len, tuple, type);
112 ret = __snprintf_ipv6_xml(buf+offset, len, tuple, typ
66 __snprintf_ipv4_xml(char *buf, unsigned int len, const struct __nfct_tuple *tuple, unsigned int type) argument
78 __snprintf_ipv6_xml(char *buf, unsigned int len, const struct __nfct_tuple *tuple, unsigned int type) argument
95 __snprintf_addr_xml(char *buf, unsigned int len, const struct __nfct_tuple *tuple, enum __nfct_addr type) argument
123 __snprintf_proto_xml(char *buf, unsigned int len, const struct __nfct_tuple *tuple, enum __nfct_addr type) argument
291 const struct __nfct_tuple *tuple = NULL; local
[all...]
/external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.call/
H A Dp1-0x.cpp82 template<typename ...Types> struct tuple { }; struct
85 void pack_not_at_end(tuple<Types...>, Types... values, int);
87 void test_pack_not_at_end(tuple<int*, double*> t2) {
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue60/
H A DSkipBeanTest.java66 NodeTuple tuple = super.representJavaBeanProperty(javaBean, property, propertyValue,
68 Node valueNode = tuple.getValueNode();
86 return tuple;
/external/autotest/client/common_lib/cros/
H A Dprocess_watcher.py20 def __init__(self, command, args=tuple(), minijail_config=None, host=None):
25 @param minijail_config: MinijailConfig tuple defined above.
/external/google-benchmark/src/
H A Dreporter.cc21 #include <tuple>
/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/libcxx/test/std/experimental/utilities/tuple/tuple.apply/
H A Dreturn_type.pass.cpp12 // <experimental/tuple>
18 #include <experimental/tuple>
/external/libcxx/test/std/utilities/utility/pairs/pair.piecewise/
H A Dpiecewise_construct.pass.cpp18 #include <tuple>
/external/libcxx/utils/google-benchmark/src/
H A Dreporter.cc21 #include <tuple>
/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/skia/experimental/svg/model/
H A DSkSVGCircle.h37 std::tuple<SkPoint, SkScalar> resolve(const SkSVGLengthContext&) const;
H A DSkSVGLine.h38 std::tuple<SkPoint, SkPoint> resolve(const SkSVGLengthContext&) const;
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue150/
H A DYamlLoadAsIssueTest.java112 for (NodeTuple tuple : list) {
113 String field = toScalarString(tuple.getKeyNode());
115 car.setPlate(toScalarString(tuple.getValueNode()));
118 SequenceNode snode = (SequenceNode) tuple.getValueNode();
/external/vulkan-validation-layers/tests/gtest-1.7.0/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/ImageMagick/MagickCore/
H A Dcolor.c1124 % char *tuple)
1134 % o tuple: The color tuple.
1138 const PixelChannel channel,const ComplianceType compliance,char *tuple)
1183 (void) ConcatenateMagickString(tuple,component,MagickPathExtent);
1188 (void) ConcatenateMagickString(tuple,component,MagickPathExtent);
1197 (void) ConcatenateMagickString(tuple,component,MagickPathExtent);
1204 (void) ConcatenateMagickString(tuple,component,MagickPathExtent);
1209 (void) ConcatenateMagickString(tuple,component,MagickPathExtent);
1216 (void) ConcatenateMagickString(tuple,componen
1125 ConcatenateColorComponent(const PixelInfo *pixel, const PixelChannel channel,const ComplianceType compliance,char *tuple) argument
1489 ConcatentateHexColorComponent(const PixelInfo *pixel, const PixelChannel channel,char *tuple) argument
1557 GetColorTuple(const PixelInfo *pixel, const MagickBooleanType hex,char *tuple) argument
1912 tuple[MagickPathExtent]; local
[all...]
/external/autotest/cli/
H A Dcompose_query37 print format % tuple([''] + test_data.x_values)
51 print format % tuple(line)
/external/autotest/client/cros/
H A Ddbus_util.py36 elif isinstance(value, tuple):
37 return tuple([dbus2primitive(x) for x in value])
/external/pdfium/xfa/fde/
H A Dcfde_txtedtbuf.h11 #include <tuple>
74 std::tuple<int32_t, int32_t> Index2CP(int32_t nIndex) const;
/external/skia/tools/skpbench/
H A D_hardware_nexus_6p.py43 done''' % tuple(CPU_CLOCK_RATE for _ in range(3)))
63 tuple(GPU_CLOCK_RATE for _ in range(3)))
/external/chromium-trace/catapult/common/py_utils/py_utils/refactor/annotated_symbol/
H A Dimport_statement.py173 return tuple((dotted_as_name.name, dotted_as_name.alias)
178 return tuple(path for path, _ in self.values)
182 return tuple(alias for _, alias in self.values)
237 return tuple((import_as_name.name, import_as_name.alias)
243 return tuple('.'.join((module, name)) for name, _ in self.values)
247 return tuple(alias for _, alias in self.values)
/external/v8/tools/
H A Dgen-inlining-tests.py383 if isinstance(result, tuple) and result[0] == 'throw':
387 if isinstance(result, tuple) and result[0] == "throw":
391 if isinstance(result, tuple) and result[0] == "throw":
395 if isinstance(result, tuple) and result[0] == "throw":
399 if isinstance(result, tuple) and result[0] == "throw":
404 if isinstance(result, tuple) and result[0] == "throw":
/external/eigen/unsupported/Eigen/CXX11/src/Tensor/
H A DTensorSyclExtractAccessor.h17 * ExtractAccessor takes Expression placeHolder expression and the tuple of sycl
21 * the order of the actual data in the tuple of sycl buffer. By invoking the
23 * buffer in the tuple of buffers. This accessor is then added as an Nth
24 * element in the tuple of accessors. In this case we preserve the order of data
52 -> decltype(utility::tuple::append(ExtractAccessor<Arg1>::getTuple(cgh, eval1), ExtractAccessor<Arg2>::getTuple(cgh, eval2))) {
53 return utility::tuple::append(ExtractAccessor<Arg1>::getTuple(cgh, eval1), ExtractAccessor<Arg2>::getTuple(cgh, eval2));
56 -> decltype(utility::tuple::append(ExtractAccessor<Arg1>::getTuple(cgh, eval1),utility::tuple::append(ExtractAccessor<Arg2>::getTuple(cgh, eval2), ExtractAccessor<Arg3>::getTuple(cgh, eval3)))) {
57 return utility::tuple::append(ExtractAccessor<Arg1>::getTuple(cgh, eval1),utility::tuple
[all...]
/external/google-breakpad/src/testing/test/
H A Dgmock-internal-utils_test.cc63 using ::std::tr1::tuple;
265 tuple<> matchers;
266 tuple<> values;
272 tuple<Matcher<int> > matchers(Eq(1));
273 tuple<int> values1(1),
281 tuple<Matcher<int>, Matcher<char> > matchers(Eq(1), Eq('a'));
282 tuple<int, char> values1(1, 'a'),
294 tuple<Matcher<int>, Matcher<char>, Matcher<bool>, Matcher<long>, // NOLINT
297 tuple<int, char, bool, long, string> // NOLINT
627 StlContainerView<tuple<cons
[all...]

Completed in 2613 milliseconds

1234567891011>>