Home
last modified time | relevance | path

Searched refs:possibilities (Results 1 – 25 of 121) sorted by relevance

12345

/external/python/cpython2/Lib/
Dgetopt.py167 possibilities = [o for o in longopts if o.startswith(opt)]
168 if not possibilities:
171 if opt in possibilities:
173 elif opt + '=' in possibilities:
176 if len(possibilities) > 1:
180 assert len(possibilities) == 1
181 unique_match = possibilities[0]
Doptparse.py146 def __init__(self, opt_str, possibilities): argument
148 self.possibilities = possibilities
152 % (self.opt_str, ", ".join(self.possibilities)))
1687 possibilities = [word for word in wordmap.keys()
1690 if len(possibilities) == 1:
1691 return possibilities[0]
1692 elif not possibilities:
1696 possibilities.sort()
1697 raise AmbiguousOptionError(s, possibilities)
Ddifflib.py701 def get_close_matches(word, possibilities, n=3, cutoff=0.6): argument
737 for x in possibilities:
/external/python/cpython3/Lib/
Dgetopt.py172 possibilities = [o for o in longopts if o.startswith(opt)]
173 if not possibilities:
176 if opt in possibilities:
178 elif opt + '=' in possibilities:
181 if len(possibilities) > 1:
185 assert len(possibilities) == 1
186 unique_match = possibilities[0]
Doptparse.py152 def __init__(self, opt_str, possibilities): argument
154 self.possibilities = possibilities
158 % (self.opt_str, ", ".join(self.possibilities)))
1664 possibilities = [word for word in wordmap.keys()
1667 if len(possibilities) == 1:
1668 return possibilities[0]
1669 elif not possibilities:
1673 possibilities.sort()
1674 raise AmbiguousOptionError(s, possibilities)
Ddifflib.py688 def get_close_matches(word, possibilities, n=3, cutoff=0.6): argument
724 for x in possibilities:
/external/cldr/tools/java/org/unicode/cldr/tool/
DMatchStrings.java119 Set<Info> possibilities = letter_correspondances.getAll(firstLetter); in interleave2() local
120 if (possibilities != null) { in interleave2()
121 int result = checkPossibilities(possibilities, englishPosition, ipaPosition); in interleave2()
128 possibilities = letter_correspondances.getAll(""); in interleave2()
129 if (possibilities != null) { in interleave2()
130 int result = checkPossibilities(possibilities, englishPosition, ipaPosition); in interleave2()
155 int checkPossibilities(Collection<Info> possibilities, int englishPosition, int ipaPosition) { in checkPossibilities() argument
156 for (Info englishIpa : possibilities) { in checkPossibilities()
/external/jline/src/src/main/resources/jline/
DCandidateListCompletionHandler.properties1 display-candidates: Display all {0} possibilities? (y or n)
/external/cldr/tools/java/org/unicode/cldr/util/
DLenientDateParser.java774 final Set<String> possibilities = stringToZones.getAll(formatted);
775 String status = uniquenessStatus(possibilities);
779 for (String zone : possibilities) {
786 …tem.out.println("Parsing \t\"" + formatted + "\"\t gets \t" + status + "\t" + show(possibilities));
788 String bestValue = possibilities.iterator().next(); // pick first value
875 private static String uniquenessStatus(Set<String> possibilities) {
877 for (String zone : possibilities) {
/external/llvm/examples/Kaleidoscope/MCJIT/complete/
DREADME.txt13 command line options to select between the various possibilities.
/external/swiftshader/third_party/llvm-7.0/llvm/examples/Kaleidoscope/MCJIT/complete/
DREADME.txt13 command line options to select between the various possibilities.
/external/autotest/client/tests/stress/
Dcontrol11 libc programmer wishes to evaluate denial of service possibilities, etc.
/external/python/cpython3/Lib/test/test_importlib/
Dutil.py392 possibilities = b'PYTHONCASEOK', 'PYTHONCASEOK'
394 for x in possibilities) != should_exist:
/external/markdown/docs/extensions/
DMeta-Data.txt72 various markdown extensions. The possibilities are left to the imagination of
/external/eigen/doc/
DCustomizingEigen_NullaryExpr.dox11 To explore these possibilities let us start with the \em circulant example of the \ref TopicNewExp…
DUnalignedArrayAssert.dox103 Three possibilities:
DTutorialBlockOperations.dox109 The different possibilities are summarized in the following table:
/external/tensorflow/tensorflow/lite/g3doc/guide/
Dindex.md54 - Innovation at the silicon layer is enabling new possibilities for hardware
62 - Widely-available smart appliances create new possibilities for
/external/libpcap/doc/
DREADME.macos68 group to "admin", and the permissions to rw-r-----. Other possibilities
/external/universal-tween-engine/
DREADME.md109 * Tweens and options --- See what are the possibilities
/external/icu/icu4c/source/data/translit/
Dcy_cy_FONIPA.txt80 # possibilities:
/external/swiftshader/third_party/llvm-7.0/llvm/test/Transforms/InstCombine/
Dsmax-icmp.ll7 ; possibilities for each predicate. Note that folds to true/false
Dumin-icmp.ll7 ; possibilities for each predicate. Note that folds to true/false
Dumax-icmp.ll7 ; possibilities for each predicate. Note that folds to true/false
/external/llvm/test/CodeGen/SystemZ/
Dcall-04.ll29 ; Check a conditional sibling call when there are two possibilities.

12345