Searched
refs:tuple (Results
426 -
450 of
2452) sorted by null
<<11121314151617181920>>
| /external/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.creation/ |
| forward_as_tuple.pass.cpp | 10 // <tuple> 13 // tuple<Types&&...> forward_as_tuple(Types&&... t); 17 #include <tuple> 23 template <class Tuple> 25 test0(const Tuple&) 27 static_assert(std::tuple_size<Tuple>::value == 0, ""); 30 template <class Tuple> 32 test1a(const Tuple& t) 34 static_assert(std::tuple_size<Tuple>::value == 1, ""); 35 static_assert(std::is_same<typename std::tuple_element<0, Tuple>::type, int&&>::value, "") [all...] |
| /external/libcxxabi/test/ |
| dynamic_cast_stress.pass.cpp | 13 #include <tuple>
|
| /external/llvm/lib/Fuzzer/ |
| FuzzerFnAdapter.h | 23 #include <tuple> 37 // - data is unpacked into std::tuple<Args...> one by one 38 // - function is called with std::tuple<Args...> containing arguments. 107 // Unpacking into arbitrary tuple. 112 UnpackImpl(const uint8_t *Data, size_t Size, TupleT *Tuple) { 116 // Unpack tuple elements starting from Nth. 119 UnpackImpl(const uint8_t *Data, size_t Size, TupleT *Tuple) { 120 size_t NewSize = UnpackSingle(Data, Size, &std::get<N>(*Tuple)); 125 return UnpackImpl<N + 1, TupleT>(Data + (Size - NewSize), NewSize, Tuple); 128 // Unpacks into arbitrary tuple and returns true if successful [all...] |
| /external/perfetto/src/trace_processor/ |
| process_tracker.h | 20 #include <tuple>
|
| syscall_tracker.h | 21 #include <tuple>
|
| /external/perfetto/src/traced/probes/filesystem/ |
| prefix_finder.h | 23 #include <tuple>
|
| /external/perfetto/src/traced/probes/ftrace/ |
| format_parser.h | 26 #include <tuple>
|
| /external/perfetto/src/tracing/core/ |
| trace_packet.cc | 50 std::tuple<char*, size_t> TracePacket::GetProtoPreamble() {
|
| /external/python/cpython2/Lib/test/ |
| test_charmapcodec.py | 20 return tuple(testcodec.getregentry())
|
| /external/python/cpython2/Lib/ |
| types.py | 38 TupleType = tuple
|
| /external/python/cpython3/Lib/test/ |
| test_charmapcodec.py | 20 return tuple(testcodec.getregentry())
|
| test_structseq.py | 10 self.assertIsInstance(t, tuple) 11 astuple = tuple(t) 47 t2 = t1 + tuple(t1) 66 self.assertEqual(hash(t1), hash(tuple(t1)))
|
| /external/python/cpython3/Lib/xml/dom/ |
| minicompat.py | 16 # StringTypes -- tuple of defined string types 74 class EmptyNodeList(tuple):
|
| /external/python/pyasn1/pyasn1/type/ |
| char.py | 71 elif isinstance(value, (tuple, list)): 87 return tuple([ord(x) for x in str(self)]) 108 elif isinstance(value, (tuple, list)): 124 return tuple(bytes(self))
|
| /external/skia/tools/skpbench/ |
| _hardware_pixel_c.py | 36 ''' % tuple(CPU_CLOCK_RATE for _ in range(3)),
|
| /external/skqp/tools/skpbench/ |
| _hardware_pixel_c.py | 36 ''' % tuple(CPU_CLOCK_RATE for _ in range(3)),
|
| /external/swiftshader/third_party/SPIRV-Tools/test/opt/ |
| freeze_spec_const_test.cpp | 17 #include <tuple>
|
| pass_fixture.h | 21 #include <tuple> 58 // Returns a tuple of the optimized binary and the boolean value returned 60 std::tuple<std::vector<uint32_t>, Pass::Status> OptimizeToBinary( 78 // |assembly|. Returns a tuple of the optimized binary and the boolean value 81 std::tuple<std::vector<uint32_t>, Pass::Status> SinglePassRunToBinary( 89 // |assembly|, disassembles the optimized binary. Returns a tuple of 92 std::tuple<std::string, Pass::Status> SinglePassRunAndDisassemble(
|
| /external/swiftshader/third_party/SPIRV-Tools/test/val/ |
| val_storage_test.cpp | 19 #include <tuple>
|
| /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/DebugInfo/DWARF/ |
| DWARFAddressRange.h | 15 #include <tuple>
|
| /external/swiftshader/third_party/llvm-7.0/llvm/unittests/IR/ |
| CFGBuilder.h | 26 #include <tuple>
|
| /external/tensorflow/tensorflow/compiler/xla/service/llvm_ir/ |
| fused_ir_emitter.cc | 116 "GetTupleElement as tuple operand, found an exception: %s", 123 // Lookup tuple element pointer. 132 // TODO(b/34080002) Add aliasing information to tuple element IrArray. 169 Status FusedIrEmitter::HandleTuple(HloInstruction* tuple) { 170 absl::Span<HloInstruction* const> operands(tuple->operands()); 176 indexed_generators_[tuple] = 180 for (size_t i = 0; i < ShapeUtil::TupleElementCount(tuple->shape()); ++i) {
|
| /external/tensorflow/tensorflow/contrib/fused_conv/kernels/ |
| fused_conv_ops_gpu.h | 60 std::tuple<ConvParameters::ParameterDataType, bool, ActivationMode>;
|
| /external/tensorflow/tensorflow/contrib/slim/python/slim/data/ |
| data_provider.py | 104 items: a list or tuple of strings. 107 ValueError: if `items` is not a tuple or list or if any of the elements of 110 if not isinstance(items, (list, tuple)): 111 raise ValueError('items must be a list or tuple')
|
| /external/tensorflow/tensorflow/core/framework/ |
| tracking_allocator_test.cc | 78 std::tuple<size_t, size_t, size_t> sizes = ta->GetSizes(); 127 std::tuple<size_t, size_t, size_t> sizes = ta->GetSizes(); 152 std::tuple<size_t, size_t, size_t> sizes = ta->GetSizes(); 170 std::tuple<size_t, size_t, size_t> sizes = ta->GetSizes();
|
Completed in 1408 milliseconds
<<11121314151617181920>>