| /external/Reactive-Extensions/RxCpp/Rx/v2/examples/doxygen/ |
| combine_latest.cpp | 15 [](std::tuple<int, int, int> v){printf("OnNext: %d, %d, %d\n", std::get<0>(v), std::get<1>(v), std::get<2>(v));}, 43 [](std::tuple<int, int, int> v){printf("[thread %s] OnNext: %d, %d, %d\n", get_pid().c_str(), std::get<0>(v), std::get<1>(v), std::get<2>(v));},
|
| with_latest_from.cpp | 15 [](std::tuple<int, int, int> v){printf("OnNext: %d, %d, %d\n", std::get<0>(v), std::get<1>(v), std::get<2>(v));}, 43 [](std::tuple<int, int, int> v){printf("[thread %s] OnNext: %d, %d, %d\n", get_pid().c_str(), std::get<0>(v), std::get<1>(v), std::get<2>(v));},
|
| zip.cpp | 15 [](std::tuple<int, int, int> v){printf("OnNext: %d, %d, %d\n", std::get<0>(v), std::get<1>(v), std::get<2>(v));}, 43 [](std::tuple<int, int, int> v){printf("[thread %s] OnNext: %d, %d, %d\n", get_pid().c_str(), std::get<0>(v), std::get<1>(v), std::get<2>(v));},
|
| /external/Reactive-Extensions/RxCpp/Rx/v2/examples/pythagorian/ |
| main.cpp | 128 [](int /*x*/, std::tuple<int,int,int> triplet){return triplet;}) 131 [](int /*z*/, std::tuple<int,int,int> triplet){return triplet;});
|
| /external/Reactive-Extensions/RxCpp/Rx/v2/src/rxcpp/operators/ |
| rx-pairwise.hpp | 45 typedef std::tuple<source_value_type, source_value_type> value_type; 51 typedef std::tuple<source_value_type, source_value_type> value_type;
|
| /external/autotest/client/cros/ |
| dbus_util.py | 39 elif isinstance(value, tuple): 40 return tuple([dbus2primitive(x) for x in value])
|
| /external/clang/INPUTS/ |
| all-std-headers.cpp | 79 #include <tuple>
|
| /external/drm_hwcomposer/ |
| drmdevice.h | 28 #include <tuple> 37 std::tuple<int, int> Init(const char *path, int num_displays);
|
| /external/libbrillo/brillo/dbus/ |
| utils.cc | 7 #include <tuple> 56 std::vector<std::tuple<std::string, std::string, std::string>> errors;
|
| /external/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.helper/ |
| tuple_size_structured_bindings.pass.cpp | 10 // <tuple> 12 // template <class... Types> class tuple; 15 // struct tuple_size<tuple<Types...>> 21 #include <tuple> 46 typedef std::tuple<int> T;
|
| /external/libvpx/libvpx/test/ |
| sum_squares_test.cc | 14 #include <tuple> 32 typedef std::tuple<SSI16Func, SSI16Func> SumSquaresParam;
|
| superframe_test.cc | 11 #include <tuple> 23 typedef std::tuple<libvpx_test::TestMode, int> SuperframeTestParam;
|
| vp9_denoiser_test.cc | 14 #include <tuple> 39 typedef std::tuple<Vp9DenoiserFilterFunc, BLOCK_SIZE> VP9DenoiserTestParam;
|
| /external/llvm/include/llvm/Support/ |
| Format.h | 31 #include <tuple> 80 std::tuple<Ts...> Vals;
|
| /external/pdfium/core/fxge/dib/ |
| fx_dib_main.cpp | 9 #include <tuple> 77 std::tuple<int, int, int, int> ArgbDecode(FX_ARGB argb) {
|
| /external/python/cpython2/Lib/lib2to3/pgen2/ |
| grammar.py | 151 if isinstance(top, tuple): 152 return tuple(_make_deterministic(e) for e in top)
|
| /external/python/cpython3/Lib/ |
| genericpath.py | 76 if not isinstance(m[0], (list, tuple)): 77 m = tuple(map(os.fspath, m))
|
| /external/python/cpython3/Lib/lib2to3/pgen2/ |
| grammar.py | 150 if isinstance(top, tuple): 151 return tuple(_make_deterministic(e) for e in top)
|
| /external/tensorflow/tensorflow/compiler/xla/python_api/ |
| xla_shape.py | 46 of Shapes in the case of a tuple, i.e. when element_type is 47 TUPLE. 52 ValueError: if element_type is TUPLE but dimensions are not Shape objects. 56 if element_type == xla_data_pb2.TUPLE: 59 'XLA tuple requires sequence of Shape objects as dimensions') 60 self._tuple_shapes = tuple(dimensions) 75 return self.element_type() == xla_data_pb2.TUPLE 79 raise ValueError('Tuple shape has no dimensions. Try tuple_shapes()?') 83 """If this is a tuple, returns its sequence of constituent Shape objects. 86 Tuple sub-shapes [all...] |
| /external/tensorflow/tensorflow/compiler/xla/tests/ |
| multioutput_fusion_test.cc | 97 auto tuple = local 100 HloInstruction::CreateGetTupleElement(elem_shape2, tuple, 0)); 102 HloInstruction::CreateGetTupleElement(elem_shape2, tuple, 1)); 108 {tuple, sub, add2, broadcast}, HloInstruction::FusionKind::kLoop), 160 auto tuple = computation->AddInstruction( local 164 HloInstruction::CreateGetTupleElement(elem_shape_U8, tuple, 0)); 166 HloInstruction::CreateGetTupleElement(elem_shape_F32, tuple, 1)); 171 {tuple, sub_U8, add, param0_U8, param1_F32}, 199 gte.3 = ((s32[]), f32[]) get-tuple-element(x.param_0), index=0 200 gte.2 = (s32[]) get-tuple-element(gte.3), index= [all...] |
| /external/tensorflow/tensorflow/contrib/gan/python/eval/python/ |
| eval_utils_impl.py | 73 input_tensor, tuple(grid_shape) + tuple(image_shape) + (num_channels,))
|
| /external/tensorflow/tensorflow/python/autograph/core/ |
| naming.py | 53 fqn: Union[Text, Tuple[Text]] a fully-qualified symbol name. The qualifier 61 if isinstance(fqn, tuple): 72 pieces = tuple(misc.capitalize_initial(p) for p in pieces)
|
| /external/tensorflow/tensorflow/python/data/experimental/kernel_tests/optimization/ |
| map_fusion_test.py | 62 return tuple(tests) 84 if isinstance(r, tuple): 85 r = function(*r) # Pass tuple as multiple arguments.
|
| /external/tensorflow/tensorflow/python/kernel_tests/random/ |
| random_crop_test.py | 45 tuple(value[i:i + 2, j:j + 3, k:k + 4].ravel()) 51 self.assertTrue(tuple(y.ravel()) in value_set)
|
| /external/google-breakpad/src/testing/gtest/include/gtest/ |
| gtest-printers.h | 76 // // Prints the fields of a tuple tersely to a string vector, one 77 // // element for each field. Tuple support must be enabled in 80 // const Tuple& value); 484 // Overload for ::std::tr1::tuple. Needed for printing function arguments, 487 // Helper function for printing a tuple. T must be instantiated with 488 // a tuple type. 494 // regardless of whether tr1::tuple is implemented using the 497 inline void PrintTo(const ::std::tr1::tuple<>& t, ::std::ostream* os) { 502 void PrintTo(const ::std::tr1::tuple<T1>& t, ::std::ostream* os) { 507 void PrintTo(const ::std::tr1::tuple<T1, T2>& t, ::std::ostream* os) [all...] |