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

1 2 34 5 6 7 8 91011>>

  /external/gtest/include/gtest/
gtest-param-test.h.pump 356 // tuple<T1, T2, ..., TN> where T1, T2, ..., TN are the types
360 // by the maximum number of elements in the tuple implementation used by Google
366 // the parameter values tuple("cat", BLACK), tuple("cat", WHITE),
367 // tuple("dog", BLACK), and tuple("dog", WHITE):
371 // : public testing::TestWithParam<tuple<const char*, Color> > {...};
383 // : public testing::TestWithParam<tuple(bool, bool)> > {
385 // // Assigns external_flag_1 and external_flag_2 values from the tuple.
  /external/protobuf/gtest/include/gtest/
gtest-param-test.h.pump 356 // tuple<T1, T2, ..., TN> where T1, T2, ..., TN are the types
360 // by the maximum number of elements in the tuple implementation used by Google
366 // the parameter values tuple("cat", BLACK), tuple("cat", WHITE),
367 // tuple("dog", BLACK), and tuple("dog", WHITE):
371 // : public testing::TestWithParam<tuple<const char*, Color> > {...};
383 // : public testing::TestWithParam<tuple(bool, bool)> > {
385 // // Assigns external_flag_1 and external_flag_2 values from the tuple.
  /frameworks/base/docs/html/guide/developing/tools/
MonkeyImage.jd 50 <em>tuple</em>
63 a <em>tuple</em> of <em>integer</em>, in the form (a,r,g,b).
100 (<em>tuple</em> rect)
192 <em>tuple</em>
205 a <em>tuple</em> of <em>integer</em>, in the form (a,r,g,b).
231 A tuple of integers representing the pixel, in the form (a,r,g,b) where
243 <em>tuple</em>
299 (<em>tuple</em> rect)
316 A tuple (x, y, w, h) specifying the selection. x and y specify the 0-based pixel
  /external/chromium/testing/gmock/test/
gmock-internal-utils_test.cc 63 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<const int*, size_t> >::type>()
    [all...]
  /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...]
  /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/libxml2/
hash.c 356 * by using the (@name, @name2) tuple. Duplicate tuples generate errors.
394 * by using the (@name, @name2) tuple. Existing entry for this tuple will
426 * Find the userdata specified by the (@name, @name2) tuple.
460 * Find the userdata specified by the QNames tuple
480 * by using the tuple (@name, @name2, @name3). Duplicate entries generate
596 * by using the tuple (@name, @name2, @name3). Existing entry for this tuple
719 * Find the userdata specified by the (@name, @name2, @name3) tuple.
763 * Find the userdata specified by the (@name, @name2, @name3) tuple
    [all...]
  /external/chromium/testing/gmock/
README 239 ### Choosing a TR1 Tuple Library ###
241 Google Mock uses the C++ Technical Report 1 (TR1) tuple library
242 heavily. Unfortunately TR1 tuple is not yet widely available with all
244 subset of TR1 tuple that's enough for Google Mock's need. Google Mock
246 provide TR1 tuple.
248 Usually you don't need to care about which tuple library Google Test
249 and Google Mock use. However, if your project already uses TR1 tuple,
250 you need to tell Google Test and Google Mock to use the same TR1 tuple
251 library the rest of your project uses, or the two tuple
258 their own tuple library, just ad
    [all...]
  /external/chromium/testing/gtest/
README 233 ### Choosing a TR1 Tuple Library ###
236 tuple library, which is not yet available with all compilers. The
237 good news is that Google Test implements a subset of TR1 tuple that's
239 compiler doesn't provide TR1 tuple.
241 Usually you don't need to care about which tuple library Google Test
242 uses. However, if your project already uses TR1 tuple, you need to
243 tell Google Test to use the same TR1 tuple library the rest of your
244 project uses, or the two tuple implementations will clash. To do
250 you want to force Google Test to use its own tuple library, just add
256 If you don't want Google Test to use tuple at all, ad
    [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/chromium/testing/gmock/include/gmock/internal/
gmock-port.h 50 // tr1/tuple. gmock-port.h does this via gtest-port.h, which is
51 // guaranteed to pull in the tuple header.
  /external/chromium/testing/
gtest.gyp 30 'gtest/include/gtest/internal/gtest-tuple.h',
83 # We want gtest features that use tr1::tuple, but clang currently
  /external/clang/test/CXX/temp/temp.decls/temp.variadic/
p5.cpp 4 template<typename ...> struct tuple;
25 typedef tuple<pair<Types, OtherTypes>...> type; // expected-error{{pack expansion contains parameter packs 'Types' and 'OtherTypes' that have different lengths (3 vs. 2)}}
31 tuple<pair<int, unsigned int>, pair<long, unsigned long> >*il_pairs_2 = il_pairs;
159 typedef tuple<typename Meta<T>::type> type; // expected-error{{declaration type contains unexpanded parameter pack 'Meta'}}
373 template<typename...> struct Tuple {};
378 typedef Tuple<Pair<Args1, Args2> ... > type; // expected-error{{pack expansion contains parameter packs 'Args1' and 'Args2' that have different lengths (1 vs. 2)}}
382 typedef zip<short, int>::with<unsigned short, unsigned>::type T1; // T1 is Tuple<Pair<short, unsigned short>, Pair<int, unsigned>>
383 typedef Tuple<Pair<short, unsigned short>, Pair<int, unsigned>> T1;
  /external/llvm/unittests/
Makefile.unittest 28 # libstdc++'s TR1 <tuple> header depends on RTTI and uses C++'0x features not
29 # supported by Clang, so force googletest to use its own tuple implementation.
  /sdk/common/src/com/android/util/
Pair.java 20 * A Pair class is simply a 2-tuple for use in this package. We might want to
22 * replace it by a common tuple class if one exists, or even rewrite the layout
  /external/chromium/testing/gtest/test/
gtest-param-test_test.cc 69 using ::std::tr1::tuple;
97 ::std::string PrintValue(const tuple<T1, T2>& value) {
104 ::std::string PrintValue(const tuple<T1, T2, T3>& value) {
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<int, int> expected_values[] = {make_tuple(42, 0), make_tuple(42, 1)}
    [all...]
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/i686-linux/bits/
stdtr1c++.h 50 #include <tr1/tuple>
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/tr1/
functional 43 #include <tr1/tuple>
  /prebuilt/ndk/android-ndk-r5/sources/cxx-stl/gnu-libstdc++/include/tr1/
functional 43 #include <tr1/tuple>
  /prebuilt/ndk/android-ndk-r5/sources/cxx-stl/gnu-libstdc++/libs/armeabi/include/bits/
stdtr1c++.h 50 #include <tr1/tuple>
  /prebuilt/ndk/android-ndk-r5/sources/cxx-stl/gnu-libstdc++/libs/armeabi-v7a/include/bits/
stdtr1c++.h 50 #include <tr1/tuple>
  /prebuilt/ndk/android-ndk-r6/sources/cxx-stl/gnu-libstdc++/include/tr1/
functional 43 #include <tr1/tuple>
  /prebuilt/ndk/android-ndk-r6/sources/cxx-stl/gnu-libstdc++/libs/armeabi/include/bits/
stdtr1c++.h 50 #include <tr1/tuple>
  /prebuilt/ndk/android-ndk-r6/sources/cxx-stl/gnu-libstdc++/libs/armeabi-v7a/include/bits/
stdtr1c++.h 50 #include <tr1/tuple>
  /prebuilt/ndk/android-ndk-r6/sources/cxx-stl/gnu-libstdc++/libs/x86/include/bits/
stdtr1c++.h 50 #include <tr1/tuple>

Completed in 1788 milliseconds

1 2 34 5 6 7 8 91011>>