Searched refs:possibilities (Results 1 – 25 of 120) sorted by relevance
12345
/external/python/cpython2/Lib/ |
D | getopt.py | 167 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]
|
D | optparse.py | 146 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)
|
D | difflib.py | 701 def get_close_matches(word, possibilities, n=3, cutoff=0.6): argument 737 for x in possibilities:
|
/external/jline/src/src/main/resources/jline/ |
D | CandidateListCompletionHandler.properties | 1 display-candidates: Display all {0} possibilities? (y or n)
|
/external/llvm/examples/Kaleidoscope/MCJIT/complete/ |
D | README.txt | 13 command line options to select between the various possibilities.
|
/external/autotest/client/tests/stress/ |
D | control | 11 libc programmer wishes to evaluate denial of service possibilities, etc.
|
/external/markdown/docs/extensions/ |
D | Meta-Data.txt | 72 various markdown extensions. The possibilities are left to the imagination of
|
/external/eigen/doc/ |
D | CustomizingEigen_NullaryExpr.dox | 11 To explore these possibilities let us start with the \em circulant example of the \ref TopicNewExp…
|
D | UnalignedArrayAssert.dox | 103 Three possibilities:
|
D | TutorialBlockOperations.dox | 109 The different possibilities are summarized in the following table:
|
D | TutorialGeometry.dox | 5 In this page, we will introduce the many possibilities offered by the \ref Geometry_Module "geometr…
|
/external/universal-tween-engine/ |
D | README.md | 109 * Tweens and options --- See what are the possibilities
|
/external/libpcap/ |
D | README.macosx | 68 group to "admin", and the permissions to rw-r-----. Other possibilities
|
/external/llvm/test/CodeGen/SystemZ/ |
D | call-04.ll | 29 ; Check a conditional sibling call when there are two possibilities.
|
D | call-05.ll | 29 ; Check a conditional sibling call when there are two possibilities.
|
/external/libmicrohttpd/doc/chapters/ |
D | responseheaders.inc | 153 headers to the server as well, opening up yet more possibilities how client and server could
|
D | processingpost.inc | 1 The previous chapters already have demonstrated a variety of possibilities to send information
|
/external/python/cpython2/Doc/library/ |
D | difflib.rst | 186 .. function:: get_close_matches(word, possibilities[, n][, cutoff]) 189 close matches are desired (typically a string), and *possibilities* is a list of 198 The best (no more than *n*) matches among the possibilities are returned in a
|
/external/vixl/doc/aarch64/ |
D | getting-started-aarch64.md | 144 limit you have two possibilities:
|
/external/vixl/doc/aarch32/ |
D | getting-started-aarch32.md | 131 this limit you have two possibilities:
|
/external/llvm/docs/tutorial/ |
D | OCamlLangImpl1.rst | 155 numeric value of a number). First, we define the possibilities:
|
D | LangImpl01.rst | 165 numeric value of a number). First, we define the possibilities:
|
/external/python/cpython2/Doc/tutorial/ |
D | inputoutput.rst | 9 discuss some of the possibilities.
|
/external/python/cpython2/Doc/howto/ |
D | descriptor.rst | 187 The protocol is simple and offers exciting possibilities. Several use cases are
|
/external/python/cpython2/Doc/c-api/ |
D | buffer.rst | 155 allows for complicated memory sharing possibilities, but some caller may
|
12345