HomeSort by relevance Sort by last modified time
    Searched refs:tuple (Results 76 - 100 of 134) sorted by null

1 2 34 5 6

  /development/scripts/
add-accounts 78 adb_flags = tuple(argv)
add-accounts-sdk 75 adb_flags = tuple(argv)
  /external/chromium/testing/gtest/samples/
sample8_unittest.cc 93 class PrimeTableTest : public TestWithParam< ::std::tr1::tuple<bool, int> > {
  /external/gtest/samples/
sample8_unittest.cc 93 class PrimeTableTest : public TestWithParam< ::std::tr1::tuple<bool, int> > {
  /external/protobuf/gtest/samples/
sample8_unittest.cc 93 class PrimeTableTest : public TestWithParam< ::std::tr1::tuple<bool, int> > {
  /external/chromium/testing/gmock/include/gmock/internal/
gmock-internal-utils.h 436 // represented as a (pointer, size) tuple.
438 class StlContainerView< ::std::tr1::tuple<ElementPointer, Size> > {
446 const ::std::tr1::tuple<ElementPointer, Size>& array) {
450 static type Copy(const ::std::tr1::tuple<ElementPointer, Size>& array) {
  /external/iptables/extensions/
libxt_conntrack.c 40 struct ip_conntrack_old_tuple tuple[IP_CT_DIR_MAX]; member in struct:xt_conntrack_info
308 sinfo->tuple[IP_CT_DIR_ORIGINAL].dst.protonum = cb->val.protocol;
310 if (sinfo->tuple[IP_CT_DIR_ORIGINAL].dst.protonum == 0
320 sinfo->tuple[IP_CT_DIR_ORIGINAL].src.ip = cb->val.haddr.ip;
326 sinfo->tuple[IP_CT_DIR_ORIGINAL].dst.ip = cb->val.haddr.ip;
332 sinfo->tuple[IP_CT_DIR_REPLY].src.ip = cb->val.haddr.ip;
338 sinfo->tuple[IP_CT_DIR_REPLY].dst.ip = cb->val.haddr.ip;
667 printf(" %u", sinfo->tuple[IP_CT_DIR_ORIGINAL].dst.protonum);
676 (struct in_addr *)&sinfo->tuple[IP_CT_DIR_ORIGINAL].src.ip,
688 (struct in_addr *)&sinfo->tuple[IP_CT_DIR_ORIGINAL].dst.ip
    [all...]
  /external/protobuf/gtest/include/gtest/internal/
gtest-port.h 61 // GTEST_HAS_TR1_TUPLE - Define it to 1/0 to indicate tr1::tuple
67 // Test's own tr1 tuple implementation should be
363 // Determines whether Google Test can use tr1/tuple. You can define
364 // this macro to 0 to prevent Google Test from using tuple (any
365 // feature depending on tuple with be disabled in this mode).
371 // Determines whether Google Test's own tr1 tuple implementation
376 // We use our own tr1 tuple if we aren't sure the user has an
378 // mainstream compiler that comes with a TR1 tuple implementation.
379 // MSVC 2008 (9.0) provides TR1 tuple in a 323 MB Feature Pack
392 // tr1/tuple
    [all...]
  /external/guava/src/com/google/common/collect/
Sets.java 749 * position of an element inside a tuple always corresponds to the position of
794 * position of an element inside a tuple always corresponds to the position of
849 Object[] tuple = new Object[axes.size()];
850 for (int i = 0 ; i < tuple.length; i++) {
851 tuple[i] = axes.get(i).getForIndex(index);
856 List<B> result = (ImmutableList<B>) ImmutableList.of(tuple);
866 List<?> tuple = (List<?>) element;
    [all...]
  /external/llvm/utils/lit/lit/
ShUtil.py 65 assert isinstance(tok, tuple) and len(tok) == 1
189 if isinstance(tok, tuple):
207 assert isinstance(tok, tuple)
237 assert isinstance(operator, tuple) and len(operator) == 1
  /external/webkit/Source/WebKit/android/WebCoreSupport/
ChromiumIncludes.h 60 #include <base/tuple.h>
  /external/chromium/testing/gmock/include/gmock/
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...]
gmock-generated-matchers.h 49 // The type of the i-th (0-based) field of Tuple.
50 #define GMOCK_FIELD_TYPE_(Tuple, i) \
51 typename ::std::tr1::tuple_element<i, Tuple>::type
53 // TupleFields<Tuple, k0, ..., kn> is for selecting fields from a
54 // tuple of type Tuple. It has two members:
56 // type: a tuple type whose i-th field is the ki-th field of Tuple.
57 // GetSelectedFields(t): returns fields k0, ..., and kn of t as a tuple.
59 // For example, in class TupleFields<tuple<bool, char, int>, 2, 0>, we have
    [all...]
  /sdk/monkeyrunner/src/com/android/monkeyrunner/easy/
EasyMonkeyDevice.java 112 returns = "Tuple containing (x,y,w,h) location and size.")
121 PyTuple tuple = new PyTuple( local
126 return tuple;
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/bits/
unique_ptr.h 41 #include <tuple>
87 typedef std::tuple<_Tp*, _Tp_Deleter> __tuple_type;
235 typedef std::tuple<_Tp*, _Tp_Deleter> __tuple_type;
  /prebuilt/ndk/android-ndk-r5/sources/cxx-stl/gnu-libstdc++/include/bits/
unique_ptr.h 41 #include <tuple>
87 typedef std::tuple<_Tp*, _Tp_Deleter> __tuple_type;
235 typedef std::tuple<_Tp*, _Tp_Deleter> __tuple_type;
  /prebuilt/ndk/android-ndk-r6/sources/cxx-stl/gnu-libstdc++/include/bits/
unique_ptr.h 41 #include <tuple>
87 typedef std::tuple<_Tp*, _Tp_Deleter> __tuple_type;
235 typedef std::tuple<_Tp*, _Tp_Deleter> __tuple_type;
  /external/chromium/testing/
generate_gmock_mutant.py 115 #include "base/tuple.h" // for Tuple
366 return Clean("Tuple%d<%s>" % (n, Gen(pattern, n)))
414 mutant2 = mutant2.replace(" " * 17 + "Tuple", " " * 31 + "Tuple")
434 stdcall2 = stdcall2.replace(" " * 17 + "Tuple", " " * 31 + "Tuple")
  /external/chromium/testing/gtest/include/gtest/internal/
gtest-port.h 62 // GTEST_HAS_TR1_TUPLE - Define it to 1/0 to indicate tr1::tuple
72 // Test's own tr1 tuple implementation should be
423 // Determines whether Google Test can use tr1/tuple. You can define
424 // this macro to 0 to prevent Google Test from using tuple (any
425 // feature depending on tuple with be disabled in this mode).
431 // Determines whether Google Test's own tr1 tuple implementation
436 // We use our own TR1 tuple if we aren't sure the user has an
438 // 2010 are the only mainstream compilers that come with a TR1 tuple
440 // defining __GNUC__ and friends, but cannot compile GCC's tuple
441 // implementation. MSVC 2008 (9.0) provides TR1 tuple in a 323 M
    [all...]
  /external/clang/utils/
SummarizeErrors 78 aborts[tuple(stack)] = stack
  /external/webkit/Tools/Scripts/webkitpy/layout_tests/port/
chromium_win.py 43 windows_version = tuple(sys.getwindowsversion()[:2])
  /external/webkit/Tools/Scripts/webkitpy/style/
filter.py 205 """Determine the path-specific rules to use, and return as a tuple.
207 This method returns a tuple rather than a list so the return
215 return tuple(path_rules)
216 return () # Default to the empty tuple.
222 path_rules: A tuple of path rules. We require a tuple rather
  /external/gtest/include/gtest/internal/
gtest-port.h 61 // GTEST_HAS_TR1_TUPLE 1 - Define it to 1/0 to indicate tr1::tuple
334 // Determines whether tr1/tuple is available. If you have tr1/tuple
337 // tr1/tuple on your platform automatically, please open an issue
342 // GCC provides <tr1/tuple> since 4.0.0.
352 // tr1/tuple.
355 // GCC implements tr1/tuple in the <tr1/tuple> header. This does not
356 // conform to the TR1 spec, which requires the header to be <tuple>.
357 #include <tr1/tuple>
    [all...]
  /external/webkit/Tools/Scripts/webkitpy/thirdparty/
mock.py 92 if type(value) in (dict, list, tuple, set):
232 args += tuple(extra_args)
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/
MathTest.java 1933 Tuple tuple = TUPLES[i]; local
1980 Tuple tuple = TUPLES[i]; local
    [all...]

Completed in 538 milliseconds

1 2 34 5 6