HomeSort by relevance Sort by last modified time
    Searched full:tuple (Results 101 - 125 of 384) sorted by null

1 2 3 45 6 7 8 91011>>

  /sdk/monkeyrunner/src/com/android/monkeyrunner/
MonkeyImage.java 89 "to the right, and Y increases towards the bottom. This method returns a tuple.",
92 returns = "A tuple of (A, R, G, B) for the pixel. Each item in the tuple has the " +
145 argDocs = {"A tuple (x, y, w, h) describing the region to copy. x and y specify " +
  /external/clang/www/
libstdc++4.4-clang0x.patch 543 diff -ur a/tuple b/tuple
544 --- a/tuple 2011-03-15 14:49:07.000000000 -0700
545 +++ b/tuple 2011-05-02 23:33:23.000000000 -0700
586 - swap(tuple&& __in)
587 + swap(tuple& __in)
592 class tuple<>
595 - void swap(tuple&&) { /* no-op */ }
596 + void swap(tuple&) { /* no-op */ }
599 /// tuple (2-element), with construction and assignment from a pair
    [all...]
  /external/chromium/testing/gtest/include/gtest/internal/
gtest-param-util-generated.h.pump 42 // by the maximum arity of the implementation of tr1::tuple which is
131 : public ParamGeneratorInterface< ::std::tr1::tuple<$for j, [[T$j]]> > {
133 typedef ::std::tr1::tuple<$for j, [[T$j]]> ParamType;
272 operator ParamGenerator< ::std::tr1::tuple<$for j, [[T$j]]> >() const {
273 return ParamGenerator< ::std::tr1::tuple<$for j, [[T$j]]> >(
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/gtest/include/gtest/internal/
gtest-param-util-generated.h.pump 42 // by the maximum arity of the implementation of tr1::tuple which is
108 : public ParamGeneratorInterface< ::std::tr1::tuple<$for j, [[T$j]]> > {
110 typedef ::std::tr1::tuple<$for j, [[T$j]]> ParamType;
243 operator ParamGenerator< ::std::tr1::tuple<$for j, [[T$j]]> >() const {
244 return ParamGenerator< ::std::tr1::tuple<$for j, [[T$j]]> >(
  /external/protobuf/gtest/include/gtest/internal/
gtest-param-util-generated.h.pump 42 // by the maximum arity of the implementation of tr1::tuple which is
114 : public ParamGeneratorInterface< ::std::tr1::tuple<$for j, [[T$j]]> > {
116 typedef ::std::tr1::tuple<$for j, [[T$j]]> ParamType;
255 operator ParamGenerator< ::std::tr1::tuple<$for j, [[T$j]]> >() const {
256 return ParamGenerator< ::std::tr1::tuple<$for j, [[T$j]]> >(
  /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")
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/tr1_impl/
functional 880 * Stores a tuple of indices. Used by bind() to extract the elements
881 * in a tuple.
904 * Used by _Safe_tuple_element to indicate that there is no tuple
948 * the second parameter is a tuple containing references to the
991 class result<_CVMu(_CVArg, tuple<_Args...>)>
997 const tuple<_Args...>& __tuple) const volatile
999 // Construct an index tuple and forward to __call
1007 // of the arguments in the tuple.
1010 __call(_CVArg& __arg, const tuple<_Args...>& __tuple,
1033 // the tuple that we pass to result_of<...>
    [all...]
  /prebuilt/ndk/android-ndk-r5/sources/cxx-stl/gnu-libstdc++/include/tr1_impl/
functional 880 * Stores a tuple of indices. Used by bind() to extract the elements
881 * in a tuple.
904 * Used by _Safe_tuple_element to indicate that there is no tuple
948 * the second parameter is a tuple containing references to the
991 class result<_CVMu(_CVArg, tuple<_Args...>)>
997 const tuple<_Args...>& __tuple) const volatile
999 // Construct an index tuple and forward to __call
1007 // of the arguments in the tuple.
1010 __call(_CVArg& __arg, const tuple<_Args...>& __tuple,
1033 // the tuple that we pass to result_of<...>
    [all...]
  /prebuilt/ndk/android-ndk-r6/sources/cxx-stl/gnu-libstdc++/include/tr1_impl/
functional 880 * Stores a tuple of indices. Used by bind() to extract the elements
881 * in a tuple.
904 * Used by _Safe_tuple_element to indicate that there is no tuple
948 * the second parameter is a tuple containing references to the
991 class result<_CVMu(_CVArg, tuple<_Args...>)>
997 const tuple<_Args...>& __tuple) const volatile
999 // Construct an index tuple and forward to __call
1007 // of the arguments in the tuple.
1010 __call(_CVArg& __arg, const tuple<_Args...>& __tuple,
1033 // the tuple that we pass to result_of<...>
    [all...]
  /external/chromium/testing/gmock/include/gmock/
gmock-generated-actions.h.pump 51 // InvokeHelper<F> knows how to unpack an N-tuple and invoke an N-ary
70 class InvokeHelper<R, ::std::tr1::tuple<$as> > {
73 static R Invoke(Function function, const ::std::tr1::tuple<$as>&$args) {
80 const ::std::tr1::tuple<$as>&$args) {
142 // An INTERNAL macro for extracting the type of a tuple field. It's
144 #define GMOCK_FIELD_(Tuple, N) \
145 typename ::std::tr1::tuple_element<N, Tuple>::type
151 // k{i}-th (0-based) field of ArgumentTuple, which must be a tuple
153 // SelectArgs<int, ::std::tr1::tuple<bool, char, double, long>, 0, 3>::type
157 // returns the selected fields (k1, k2, ..., k_n) of args as a tuple
    [all...]
  /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...]
  /external/protobuf/gtest/
README 115 Choosing a TR1 Tuple Library
118 tuple library, which is not yet widely available with all compilers.
119 The good news is that Google Test implements a subset of TR1 tuple
121 the compiler doesn't provide TR1 tuple.
123 Usually you don't need to care about which tuple library Google Test
124 uses. However, if your project already uses TR1 tuple, you need to
125 tell Google Test to use the same TR1 tuple library the rest of your
128 the two tuple implementations will clash. To do that, add
134 If you don't want Google Test to use tuple at all, add
138 to the compiler flags. All features using tuple will be disabled i
    [all...]
  /external/llvm/utils/unittest/googletest/include/gtest/internal/
gtest-port.h 60 // GTEST_HAS_TR1_TUPLE - Define it to 1/0 to indicate tr1::tuple
66 // Test's own tr1 tuple implementation should be
386 // Determines whether Google Test can use tr1/tuple. You can define
387 // this macro to 0 to prevent Google Test from using tuple (any
388 // feature depending on tuple with be disabled in this mode).
394 // Determines whether Google Test's own tr1 tuple implementation
399 // We use our own TR1 tuple if we aren't sure the user has an
401 // 2010 are the only mainstream compilers that come with a TR1 tuple
403 // defining __GNUC__ and friends, but cannot compile GCC's tuple
404 // implementation. MSVC 2008 (9.0) provides TR1 tuple in a 323 M
    [all...]
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/
mutex 39 #include <tuple>
621 __do_unlock(tuple<_Lock&...>& __locks)
633 __do_unlock(tuple<_Lock&...>&)
642 __do_try_lock(tuple<_Lock&...>& __locks)
662 __do_try_lock(tuple<_Lock&...>& __locks)
688 tuple<_Lock1&, _Lock2&, _Lock3&...> __locks(__l1, __l2, __l3...);
  /prebuilt/ndk/android-ndk-r5/sources/cxx-stl/gnu-libstdc++/include/
mutex 39 #include <tuple>
621 __do_unlock(tuple<_Lock&...>& __locks)
633 __do_unlock(tuple<_Lock&...>&)
642 __do_try_lock(tuple<_Lock&...>& __locks)
662 __do_try_lock(tuple<_Lock&...>& __locks)
688 tuple<_Lock1&, _Lock2&, _Lock3&...> __locks(__l1, __l2, __l3...);
  /prebuilt/ndk/android-ndk-r6/sources/cxx-stl/gnu-libstdc++/include/
mutex 39 #include <tuple>
621 __do_unlock(tuple<_Lock&...>& __locks)
633 __do_unlock(tuple<_Lock&...>&)
642 __do_try_lock(tuple<_Lock&...>& __locks)
662 __do_try_lock(tuple<_Lock&...>& __locks)
688 tuple<_Lock1&, _Lock2&, _Lock3&...> __locks(__l1, __l2, __l3...);
  /external/bluetooth/glib/docs/reference/glib/tmpl/
relations.sgml 156 tuple data, so you should free that first if appropriate.
189 @tuples: the tuple data to free.
199 @tuples: the tuple data, returned by g_relation_select().
  /external/freetype/src/truetype/
ttgxvar.c 38 /* Apple's `kern' table has some references to tuple indices, but as */
475 /* Figure out whether a given tuple (design) applies to the current */
482 /* tuple or not. */
484 /* tuple_coords :: The coordinates of the tuple in normalized axis */
487 /* im_start_coords :: The initial coordinates where this tuple starts */
490 /* im_end_coords :: The final coordinates after which this tuple no */
527 /* not an intermediate tuple */
    [all...]
  /external/gtest/test/
gtest_output_test.py 148 env_cmd: The shell command. A 2-tuple where element 0 is a dict
187 env_cmd: The shell command. A 2-tuple where element 0 is a dict
204 env_cmd: The shell command. A 2-tuple where element 0 is a dict of extra
  /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/libvpx/examples/includes/geshi/geshi/
rebol.php 65 'tuple!','url!',
120 'to-string','to-tag','to-time','to-tuple','to-url','to-word',
121 'trace','trim','tuple?','type?','unfocus','union','unique',
  /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;
  /external/bluetooth/glib/glib/
grel.h 61 * g_relation_insert() inserts a new tuple. you are expected to
  /external/chromium/testing/gtest/include/gtest/
gtest-param-test.h.pump 391 // tuple<T1, T2, ..., TN> where T1, T2, ..., TN are the types
395 // by the maximum number of elements in the tuple implementation used by Google
401 // the parameter values tuple("cat", BLACK), tuple("cat", WHITE),
402 // tuple("dog", BLACK), and tuple("dog", WHITE):
406 // : public testing::TestWithParam<tuple<const char*, Color> > {...};
418 // : public testing::TestWithParam<tuple(bool, bool)> > {
420 // // Assigns external_flag_1 and external_flag_2 values from the tuple.

Completed in 983 milliseconds

1 2 3 45 6 7 8 91011>>