Home
last modified time | relevance | path

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

123456

/third_party/python/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)
/third_party/node/deps/npm/node_modules/spdx-expression-parse/
Dscan.js40 var possibilities = ['WITH', 'AND', 'OR', '(', ')', ':', '+']
41 for (var i = 0; i < possibilities.length; i++) {
42 string = read(possibilities[i])
/third_party/gstreamer/gstreamer/gst/
Dgsturi.c576 GList *possibilities; in get_element_factories_from_uri_protocol() local
583 possibilities = gst_registry_feature_filter (gst_registry_get (), in get_element_factories_from_uri_protocol()
586 return possibilities; in get_element_factories_from_uri_protocol()
603 GList *possibilities; in gst_uri_protocol_is_supported() local
607 possibilities = get_element_factories_from_uri_protocol (type, protocol); in gst_uri_protocol_is_supported()
609 if (possibilities) { in gst_uri_protocol_is_supported()
610 g_list_free (possibilities); in gst_uri_protocol_is_supported()
632 GList *possibilities, *walk; in gst_element_make_from_uri() local
649 possibilities = get_element_factories_from_uri_protocol (type, protocol); in gst_element_make_from_uri()
651 if (!possibilities) { in gst_element_make_from_uri()
[all …]
/third_party/skia/third_party/externals/opengl-registry/extensions/ARB/
DARB_conditional_render_inverted.txt107 doesn't occur. This extension allows both possibilities.
122 possibilities:
/third_party/openGLES/extensions/ARB/
DARB_conditional_render_inverted.txt117 doesn't occur. This extension allows both possibilities.
132 possibilities:
/third_party/flutter/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/shaders/src/
DImageClear.frag37 #error "Not all attachment index possibilities are accounted for"
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/shaders/src/
DImageClear.frag37 #error "Not all attachment index possibilities are accounted for"
/third_party/python/Lib/test/test_importlib/
Dutil.py416 possibilities = b'PYTHONCASEOK', 'PYTHONCASEOK'
418 for x in possibilities) != should_exist:
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/doc/
DDeferredClears.md24 There are two possibilities at this point:
/third_party/flutter/skia/third_party/externals/angle2/doc/
DStarter-Projects.md15 Move all EGL validation into separate functions in ValidationEGL.h. This opens up many possibilities
/third_party/gstreamer/gstreamer/docs/random/wtay/
Devents113 lost of possibilities here: The app can choose to insert a seek event
Dmessages95 other possibilities:
/third_party/openGLES/extensions/EXT/
DEXT_debug_marker.txt167 The two possibilities are to push an empty string onto the marker stack or
/third_party/skia/third_party/externals/opengl-registry/extensions/EXT/
DEXT_debug_marker.txt167 The two possibilities are to push an empty string onto the marker stack or
/third_party/libfuse/doc/
Dkernel.txt45 non-privileged mounts. This opens up new possibilities for the use of
131 original request and it's INTERRUPT request. There are two possibilities:
/third_party/openGLES/extensions/WIN/
DWIN_phong_shading.txt82 "...Table 2.9 summarizes the possibilities":
/third_party/flutter/skia/third_party/externals/icu/source/data/translit/
Dcy_cy_FONIPA.txt80 # possibilities:
/third_party/skia/third_party/externals/icu/source/data/translit/
Dcy_cy_FONIPA.txt81 # possibilities:
/third_party/openssl/doc/man3/
DSSL_CTX_set_client_hello_cb.pod73 The ClientHello callback provides a vast window of possibilities for application
/third_party/skia/third_party/externals/opengl-registry/extensions/WIN/
DWIN_phong_shading.txt82 "...Table 2.9 summarizes the possibilities":
/third_party/icu/icu4c/source/data/translit/
Dcy_cy_FONIPA.txt81 # possibilities:
/third_party/skia/third_party/externals/egl-registry/extensions/EXT/
DEGL_EXT_device_drm.txt74 implemented. Among the possibilities, support may be implemented in
/third_party/flutter/flutter/packages/flutter/lib/src/widgets/
Dnotification_listener.dart116 /// main possibilities: dispatch between frames, and dispatch during layout.
/third_party/EGL/extensions/EXT/
DEGL_EXT_device_drm.txt74 implemented. Among the possibilities, support may be implemented in

123456