Home
last modified time | relevance | path

Searched refs:tuples (Results 1 – 25 of 126) sorted by relevance

123456

/external/python/cpython2/Lib/plat-irix5/
Dreadcd.doc59 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-irix6/
Dreadcd.doc59 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/distutils/command/
Dcommand_template18 # List of option tuples: long name, short name (None if no short
/external/llvm/test/Linker/
Dmodule-flags-dont-change-others.ll4 ; !named should still point at the unmodified tuples (!3, !4, and !5) that
/external/icu/icu4c/source/test/intltest/
Ditrbnf.cpp931 const llong* tuples[] = { // lhs, rhs, ans
965 const int TUPLE_COUNT = UPRV_LENGTHOF(tuples)/TUPLE_WIDTH;
967 const llong lhs = *tuples[i*TUPLE_WIDTH+0];
968 const llong rhs = *tuples[i*TUPLE_WIDTH+1];
969 const llong ans = *tuples[i*TUPLE_WIDTH+2];
1010 const llong* tuples[] = {
1045 const int TUPLE_COUNT = UPRV_LENGTHOF(tuples)/TUPLE_WIDTH;
1047 const llong lhs = *tuples[i*TUPLE_WIDTH+0];
1048 const llong rhs = *tuples[i*TUPLE_WIDTH+1];
1049 const llong ans = *tuples[i*TUPLE_WIDTH+2];
Dtmsgfmt.cpp1599 UnicodeString tuples[] = { in TestApostropheMode() local
1609 int32_t tuples_count = UPRV_LENGTHOF(tuples); in TestApostropheMode()
1612 UnicodeString& desired = tuples[i]; in TestApostropheMode()
1613 UnicodeString& ado_pattern = tuples[i + 1]; in TestApostropheMode()
1618 UnicodeString& adr_pattern = tuples[i + 2].isEmpty() ? ado_pattern : tuples[i + 2]; in TestApostropheMode()
/external/python/cpython2/Doc/tutorial/
Ddatastructures.rst309 >>> # create a list of 2-tuples like (number, square)
413 .. _tut-tuples:
446 As you see, on output tuples are always enclosed in parentheses, so that nested
447 tuples are interpreted correctly; they may be input with or without surrounding
450 items of a tuple, however it is possible to create tuples which contain mutable
453 Though tuples may seem similar to lists, they are often used in different
461 A special problem is the construction of tuples containing 0 or 1 items: the
462 syntax has some extra quirks to accommodate these. Empty tuples are constructed
547 as keys if they contain only strings, numbers, or tuples; if a tuple contains
/external/python/cpython2/Doc/c-api/
Dtuple.rst128 used to fill in brand new tuples.
142 Because tuples are *supposed* to be immutable, this should only be used if there
/external/python/cpython2/Doc/library/
Dtokenize.rst36 The generator produces 5-tuples with these members: the token type; the token
63 called once for each token, with five arguments, corresponding to the tuples
Ditertools.rst72 :func:`permutations` p[, r] r-length tuples, all po…
73 :func:`combinations` p, r r-length tuples, in sor…
74 :func:`combinations_with_replacement` p, r r-length tuples, in sor…
125 input *iterable* is sorted, the combination tuples will be produced
176 input *iterable* is sorted, the combination tuples will be produced
495 input *iterable* is sorted, the permutation tuples will be produced
555 the input's iterables are sorted, the product tuples are emitted in sorted
603 grouped in tuples from a single iterable (the data has been "pre-zipped"). The
613 Previously, :func:`starmap` required the function arguments to be tuples.
Dmarshal.rst43 tuples, lists, sets, frozensets, dictionaries, and code objects, where it should
44 be understood that tuples, lists, sets, frozensets and dictionaries are only
Dcollections.rst560 Named tuples assign meaning to each position in a tuple and allow for more readable,
561 self-documenting code. They can be used wherever regular tuples are used, and
590 lightweight and require no more memory than regular tuples.
664 Named tuples are especially useful for assigning field names to result tuples returned
680 In addition to the methods inherited from tuples, named tuples support
721 and for creating new named tuple types from existing named tuples.
778 Enumerated constants can be implemented with named tuples, but it is simpler
Demail.util.rst42 This method returns a list of 2-tuples of the form returned by ``parseaddr()``.
145 2-tuples containing elements of the form ``(content-type, string-value)``.
Dnntplib.rst173 list of tuples. Each tuple has the form ``(group, last, first, flag)``, where
189 strings). Return a pair ``(response, list)``, where *list* is a list of tuples
315 *list* is a list of tuples containing ``(name, title)``. If the *file* parameter
329 Return a pair ``(resp, list)``. *list* is a list of tuples, one for each
Dcalendar.rst60 :meth:`itermonthdates`. Days returned will be tuples consisting of a day
79 weeks. Weeks are lists of seven tuples of day numbers and weekday
100 :meth:`yeardatescalendar`). Entries in the week lists are tuples of day
D__future__.rst32 5-tuples of the same form as ``sys.version_info``::
Dmodulefinder.rst40 analysis. *replace_paths* is a list of ``(oldpath, newpath)`` tuples that will
Dnetrc.rst73 Dictionary mapping host names to ``(login, account, password)`` tuples. The
Dplistlib.rst29 Values can be strings, integers, floats, booleans, tuples, lists, dictionaries
/external/ply/ply/example/BASIC/
DREADME34 statement type and parameters. These tuples are then stored in
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
DTestMessageFormat.java1776 String[] tuples = new String[] { in TestApostropheMode() local
1786 for (int i = 0; i < tuples.length; i += 3) { in TestApostropheMode()
1787 String desired = tuples[i]; in TestApostropheMode()
1788 String ado_pattern = tuples[i + 1]; in TestApostropheMode()
1791 String adr_pattern = tuples[i + 2]; in TestApostropheMode()
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/
DTestMessageFormat.java1777 String[] tuples = new String[] { in TestApostropheMode() local
1787 for (int i = 0; i < tuples.length; i += 3) { in TestApostropheMode()
1788 String desired = tuples[i]; in TestApostropheMode()
1789 String ado_pattern = tuples[i + 1]; in TestApostropheMode()
1792 String adr_pattern = tuples[i + 2]; in TestApostropheMode()
/external/llvm/lib/Target/AMDGPU/
DSIRegisterInfo.td115 // Groupings using register classes and tuples
123 // TODO: Do we need to set DwarfRegAlias on register tuples?
/external/jemalloc/include/jemalloc/internal/
Dsize_classes.sh234 * bin, lg_delta_lookup) tuples.
/external/llvm/test/CodeGen/AArch64/
Darm64-copy-tuple.ll4 ; the memmove-like situation arising in tuples, where an early copy can clobber
5 ; the value needed by a later one if the tuples overlap.

123456