/external/python/uritemplates/uritemplate/ |
D | variable.py | 144 tuples, items = is_list_of_tuples(value) 147 if list_test(value) and not tuples: 158 if dict_test(value) or tuples: 193 tuples, items = is_list_of_tuples(value) 195 if list_test(value) and not tuples: 204 if dict_test(value) or tuples: 232 tuples, items = is_list_of_tuples(value) 234 if list_test(value) and not tuples: 246 if dict_test(value) or tuples: 273 tuples, items = is_list_of_tuples(value) [all …]
|
/external/tensorflow/tensorflow/core/kernels/ |
D | padding_fifo_queue.cc | 106 if (!attempt->tuples.empty()) { in TryDequeueMany() 108 for (int64 i = attempt->tuples.size() - 1; i >= 0; --i) { in TryDequeueMany() 111 Status s = GetElementComponent(attempt->tuples[i], j, in TryDequeueMany() 127 attempt->tuples.clear(); in TryDequeueMany() 152 attempt->tuples.push_back(tuple); in TryDequeueMany() 160 std::vector<Tuple>& tuples = attempt->tuples; in TryDequeueMany() 163 const int64 batch_size = tuples.size(); in TryDequeueMany() 177 for (const Tuple& t : tuples) { in TryDequeueMany() 203 for (size_t index = 0; index < tuples.size(); ++index) { in TryDequeueMany() 208 tuples[index][i], &attempt->tuple[i], index)); in TryDequeueMany() [all …]
|
/external/fonttools/Lib/fontTools/ttLib/tables/ |
D | _c_v_a_r.py | 34 tupleVariationCount, tuples, data = compileTupleVariationStore( 44 "offsetToData": CVAR_HEADER_SIZE + len(tuples), 48 tuples,
|
D | TupleVariation.py | 514 tuples = [] 524 tuples.append(sharedTuple) 529 tuples.append(privateTuple) 534 tupleVariationCount = TUPLES_SHARE_POINT_NUMBERS | len(tuples) 537 tupleVariationCount = len(tuples) 538 tuples = bytesjoin(tuples) 539 return tupleVariationCount, tuples, data
|
D | _g_v_a_r.py | 209 tupleVariationCount, tuples, data = tv.compileTupleVariationStore( 213 result = (struct.pack(">HH", tupleVariationCount, 4 + len(tuples)) + 214 tuples + data)
|
/external/tensorflow/tensorflow/core/api_def/base_api/ |
D | api_def_QueueDequeueMany.pbtxt | 13 The number of tuples to dequeue. 36 summary: "Dequeues `n` tuples of one or more tensors from the given queue." 46 the tuples stored in the given queue, and output `i` is the ith
|
D | api_def_QueueDequeueManyV2.pbtxt | 15 The number of tuples to dequeue. 38 summary: "Dequeues `n` tuples of one or more tensors from the given queue." 48 the tuples stored in the given queue, and output `i` is the ith
|
D | api_def_QueueDequeueUpToV2.pbtxt | 15 The number of tuples to dequeue. 38 summary: "Dequeues `n` tuples of one or more tensors from the given queue." 55 the tuples stored in the given queue, and output `i` is the ith
|
D | api_def_QueueDequeueUpTo.pbtxt | 13 The number of tuples to dequeue. 36 summary: "Dequeues `n` tuples of one or more tensors from the given queue." 53 the tuples stored in the given queue, and output `i` is the ith
|
D | api_def_QueueEnqueueManyV2.pbtxt | 27 summary: "Enqueues zero or more tuples of one or more tensors in the given queue." 34 tuples stored in the given queue.
|
D | api_def_QueueEnqueueMany.pbtxt | 25 summary: "Enqueues zero or more tuples of one or more tensors in the given queue." 32 tuples stored in the given queue.
|
/external/fonttools/Tests/ttLib/tables/ |
D | TupleVariation_test.py | 617 tupleVariationCount, tuples, data = compileTupleVariationStore( 623 sharedTuples={}, data=(tuples + data), 624 pos=0, dataPos=len(tuples)), 635 tupleVariationCount, tuples, data = compileTupleVariationStore( 641 sharedTuples={}, data=(tuples + data), 642 pos=0, dataPos=len(tuples)),
|
/external/python/cpython2/Misc/NEWS.d/next/Library/ |
D | 2018-06-28-14-56-44.bpo-33974.SA8nNP.rst | 1 Fixed passing lists and tuples of strings containing special characters
|
D | 2018-04-18-19-12-25.bpo-33308.fW75xi.rst | 2 tree of tuples or lists with ``line_info=False`` and ``col_info=True``.
|
/external/grpc-grpc/src/core/ext/transport/chttp2/transport/ |
D | bin_decoder.cc | 94 size_t tuples = len / 4; in grpc_chttp2_base64_infer_length_after_decode() local 103 return tuples * 3 + tail_xtra[tail_case]; in grpc_chttp2_base64_infer_length_after_decode()
|
/external/python/cpython2/Lib/plat-irix6/ |
D | readcd.doc | 59 gettrackinfo([tracklist]) -- Return a list of tuples. Each tuple 61 length information consist of three-tuples with minutes, seconds and 94 track number (that is, both were specified as integers, not as tuples),
|
/external/python/cpython2/Lib/plat-irix5/ |
D | readcd.doc | 59 gettrackinfo([tracklist]) -- Return a list of tuples. Each tuple 61 length information consist of three-tuples with minutes, seconds and 94 track number (that is, both were specified as integers, not as tuples),
|
/external/tensorflow/tensorflow/compiler/xla/service/ |
D | ar_crs_combiner.cc | 152 auto tuples = GetAllTuples(tuple_shaped_instruction); in TupleElementsComputeSameValue() local 153 if (tuples.empty()) { in TupleElementsComputeSameValue() 156 for (auto tuple : tuples) { in TupleElementsComputeSameValue()
|
/external/tensorflow/tensorflow/compiler/tests/ |
D | matrix_triangular_solve_op_test.py | 100 tuples = itertools.product(self.float_types, shapes) 101 for dtype, (a_shape, b_shape) in tuples:
|
/external/catch2/include/internal/ |
D | catch_generators.hpp | 157 …tuple<Ts...>> table( std::initializer_list<std::tuple<typename std::decay<Ts>::type...>> tuples ) { in table() argument 158 return values<std::tuple<Ts...>>( tuples ); in table()
|
/external/u-boot/doc/device-tree-bindings/mtd/ |
D | mtd-physmap.txt | 10 It's possible to (optionally) define multiple "reg" tuples so that 67 Here an example with multiple "reg" tuples:
|
/external/python/cpython3/Lib/distutils/command/ |
D | command_template | 18 # List of option tuples: long name, short name (None if no short
|
/external/python/cpython2/Lib/distutils/command/ |
D | command_template | 18 # List of option tuples: long name, short name (None if no short
|
/external/python/cpython3/Lib/test/ |
D | test_tokenize.py | 1498 The source code in f is tokenized to both 5- and 2-tuples. 1500 tokenize.untokenize(), and the latter tokenized again to 2-tuples. 1503 When untokenize bugs are fixed, untokenize with 5-tuples should
|
/external/icu/icu4c/source/test/intltest/ |
D | itrbnf.cpp | 935 const llong* tuples[] = { // lhs, rhs, ans 969 const int TUPLE_COUNT = UPRV_LENGTHOF(tuples)/TUPLE_WIDTH; 971 const llong lhs = *tuples[i*TUPLE_WIDTH+0]; 972 const llong rhs = *tuples[i*TUPLE_WIDTH+1]; 973 const llong ans = *tuples[i*TUPLE_WIDTH+2]; 1014 const llong* tuples[] = { 1049 const int TUPLE_COUNT = UPRV_LENGTHOF(tuples)/TUPLE_WIDTH; 1051 const llong lhs = *tuples[i*TUPLE_WIDTH+0]; 1052 const llong rhs = *tuples[i*TUPLE_WIDTH+1]; 1053 const llong ans = *tuples[i*TUPLE_WIDTH+2];
|