Home
last modified time | relevance | path

Searched refs:possibilities (Results 1 – 25 of 120) 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/jline/src/src/main/resources/jline/
DCandidateListCompletionHandler.properties1 display-candidates: Display all {0} possibilities? (y or n)
/external/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/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:
DTutorialGeometry.dox5 In this page, we will introduce the many possibilities offered by the \ref Geometry_Module "geometr…
/external/universal-tween-engine/
DREADME.md109 * Tweens and options --- See what are the possibilities
/external/libpcap/
DREADME.macosx68 group to "admin", and the permissions to rw-r-----. Other possibilities
/external/llvm/test/CodeGen/SystemZ/
Dcall-04.ll29 ; Check a conditional sibling call when there are two possibilities.
Dcall-05.ll29 ; Check a conditional sibling call when there are two possibilities.
/external/libmicrohttpd/doc/chapters/
Dresponseheaders.inc153 headers to the server as well, opening up yet more possibilities how client and server could
Dprocessingpost.inc1 The previous chapters already have demonstrated a variety of possibilities to send information
/external/python/cpython2/Doc/library/
Ddifflib.rst186 .. 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/
Dgetting-started-aarch64.md144 limit you have two possibilities:
/external/vixl/doc/aarch32/
Dgetting-started-aarch32.md131 this limit you have two possibilities:
/external/llvm/docs/tutorial/
DOCamlLangImpl1.rst155 numeric value of a number). First, we define the possibilities:
DLangImpl01.rst165 numeric value of a number). First, we define the possibilities:
/external/python/cpython2/Doc/tutorial/
Dinputoutput.rst9 discuss some of the possibilities.
/external/python/cpython2/Doc/howto/
Ddescriptor.rst187 The protocol is simple and offers exciting possibilities. Several use cases are
/external/python/cpython2/Doc/c-api/
Dbuffer.rst155 allows for complicated memory sharing possibilities, but some caller may

12345