| /external/Reactive-Extensions/RxCpp/Rx/v2/src/rxcpp/operators/ |
| rx-tap.hpp | 51 struct tap_observer_factory<T, std::tuple<ArgN...>> 135 class Tap = rxo::detail::tap<SourceValue, std::tuple<rxu::decay_t<MakeObserverArgN>...>>>
|
| /external/Reactive-Extensions/RxCpp/Rx/v2/test/operators/ |
| concat_map.cpp | 38 [](int /*x*/, std::tuple<int,int,int> triplet){return triplet;}) 41 [](int /*z*/, std::tuple<int,int,int> triplet){return triplet;}); 85 [](int /*x*/, std::tuple<int,int,int> triplet){return triplet;}, 89 [](int /*z*/, std::tuple<int,int,int> triplet){return triplet;}, 133 [](int /*x*/, std::tuple<int,int,int> triplet){return triplet;}, 137 [](int /*z*/, std::tuple<int,int,int> triplet){return triplet;}, 182 [](int /*x*/, std::tuple<int,int,int> triplet){return triplet;}, 186 [](int /*z*/, std::tuple<int,int,int> triplet){return triplet;},
|
| /external/deqp-deps/SPIRV-Tools/source/opt/ |
| loop_peeling.h | 21 #include <tuple> 245 std::vector<std::tuple<const Loop*, PeelDirection, uint32_t>> peeled_loops_;
|
| /external/deqp-deps/SPIRV-Tools/test/opt/ |
| unify_const_test.cpp | 16 #include <tuple> 79 std::tuple<std::string, std::unordered_set<std::string>> [all...] |
| /external/grpc-grpc/src/python/grpcio/grpc/_cython/_cygrpc/ |
| event.pxd.pxi | 30 cdef readonly tuple invocation_metadata
|
| /external/grpc-grpc/src/python/grpcio/grpc/ |
| _utilities.py | 95 done_callbacks = tuple(self._done_callbacks) 110 done_callbacks = tuple(self._done_callbacks)
|
| /external/grpc-grpc/src/python/grpcio/grpc/beta/ |
| utilities.py | 64 done_callbacks = tuple(self._done_callbacks) 79 done_callbacks = tuple(self._done_callbacks)
|
| /external/grpc-grpc/src/python/grpcio_reflection/grpc_reflection/v1alpha/ |
| reflection.py | 54 self._service_names = tuple(sorted(service_names)) 91 extension_numbers = tuple(
|
| /external/libaom/libaom/test/ |
| convolve_round_test.cc | 55 using ::testing::tuple; 57 typedef tuple<ConvolveRoundFunc, ConvolveRoundFunc, DataPathType>
|
| corner_match_test.cc | 32 using ::testing::tuple; 33 typedef tuple<int, ComputeCrossCorrFunc> CornerMatchParam;
|
| /external/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.apply/ |
| apply_large_arity.pass.cpp | 12 // <tuple> 16 // Stress testing large arities with tuple and array. 18 #include <tuple> 34 template <class Tuple, class Idx> 54 using type = std::tuple<always_t<Tp, Idx>...>; 71 using Tuple = make_tuple_t<int, Size>; 99 Tuple a{}; 118 using Tuple = make_tuple_t<int, Size>; 128 Tuple a{};
|
| /external/libvpx/libvpx/test/ |
| add_noise_test.cc | 11 #include <tuple> 31 typedef std::tuple<double, AddNoiseFunc> AddNoiseTestFPParam;
|
| quantize_test.cc | 12 #include <tuple> 37 typedef std::tuple<VP8Quantize, VP8Quantize> VP8QuantizeParam;
|
| test_vector_test.cc | 16 #include <tuple> 37 typedef std::tuple<int, const char *> DecodeParam;
|
| vp9_block_error_test.cc | 14 #include <tuple> 39 typedef std::tuple<HBDBlockErrorFunc, HBDBlockErrorFunc, vpx_bit_depth_t>
|
| /external/pdfium/core/fxge/ |
| fx_dib.h | 10 #include <tuple> 87 // Returns tuple a, r, g, b 88 std::tuple<int, int, int, int> ArgbDecode(FX_ARGB argb);
|
| /external/python/cpython2/Lib/distutils/ |
| version.py | 113 self.version = tuple(map(string.atoi, [major, minor, patch])) 115 self.version = tuple(map(string.atoi, [major, minor]) + [0]) 168 # 2) sequences of letters are part of the tuple for comparison and are 173 # string is split up into a tuple of integer and string components, and 174 # comparison is a simple tuple comparison. This means that version 190 # lexically within a tuple comparison. This has the desired effect if 196 # "1.5.1" < "1.5.2a2" < "1.5.2", but under the tuple/lexical comparison 270 # from the parsed tuple -- so I just store the string here for
|
| /external/python/cpython2/Lib/test/ |
| test_dummy_thread.py | 112 call_interrupt, tuple()) 132 "Argument passing for thread creation using tuple failed") 133 _thread.start_new_thread(arg_tester, tuple(), {'queue':testing_queue, 141 "Argument passing for thread creation using both tuple"
|
| /external/python/cpython3/Lib/distutils/ |
| version.py | 143 self.version = tuple(map(int, [major, minor, patch])) 145 self.version = tuple(map(int, [major, minor])) + (0,) 207 # 2) sequences of letters are part of the tuple for comparison and are 212 # string is split up into a tuple of integer and string components, and 213 # comparison is a simple tuple comparison. This means that version 229 # lexically within a tuple comparison. This has the desired effect if 235 # "1.5.1" < "1.5.2a2" < "1.5.2", but under the tuple/lexical comparison 309 # from the parsed tuple -- so I just store the string here for
|
| /external/python/cpython3/Lib/test/ |
| test_contains.py | 46 a = tuple(a) 79 constructors = list, tuple, dict.fromkeys, set, frozenset, deque
|
| /external/python/cpython3/Objects/ |
| weakrefobject.c | 922 PyObject *tuple; local 925 tuple = PyTuple_New(count * 2); 926 if (tuple == NULL) { 937 PyTuple_SET_ITEM(tuple, i * 2, (PyObject *) current); 938 PyTuple_SET_ITEM(tuple, i * 2 + 1, current->wr_callback); 948 PyObject *callback = PyTuple_GET_ITEM(tuple, i * 2 + 1); 950 /* The tuple may have slots left to NULL */ 952 PyObject *item = PyTuple_GET_ITEM(tuple, i * 2); 956 Py_DECREF(tuple);
|
| /external/python/dateutil/dateutil/test/ |
| test_isoparser.py | 49 @pytest.mark.parametrize('dt', tuple(DATES)) 56 @pytest.mark.parametrize('dt', tuple(DATES)) 65 @pytest.mark.parametrize('dt', tuple(DATES)) 95 @pytest.mark.parametrize('dt', tuple(DATETIMES)) 102 @pytest.mark.parametrize('dt', tuple(DATETIMES)) 113 @pytest.mark.parametrize('dt', tuple(DATETIMES)) 121 @pytest.mark.parametrize('dt', tuple(DATETIMES)) 167 ((None, time(0), None), ) + tuple(('%H:%M:%S.%f', _t, _tz)
|
| /external/skia/infra/bots/recipe_modules/builder_name_schema/ |
| builder_name_schema.py | 52 elif isinstance(obj, tuple): 53 return tuple(map(_UnicodeToStr, obj))
|
| /external/skia/platform_tools/android/skp_gen/ |
| android_skp_capture.py | 51 return DragAction(tuple(action_dict['start']), 52 tuple(action_dict['end']),
|
| /external/skqp/infra/bots/recipe_modules/builder_name_schema/ |
| builder_name_schema.py | 52 elif isinstance(obj, tuple): 53 return tuple(map(_UnicodeToStr, obj))
|