HomeSort by relevance Sort by last modified time
    Searched refs:MultiCall (Results 1 - 25 of 34) sorted by null

1 2

  /prebuilts/gdb/darwin-x86/lib/python2.7/idlelib/
macosxSupport.py 99 from idlelib.MultiCall import MultiCallCreator
MultiCall.py 2 MultiCall - a class which inherits its methods from a Tkinter widget (Text, for
6 MultiCall recognizes only a subset of legal event sequences. Sequences which
16 For all events which were handled by MultiCall, a new member is added to the
19 For Key/Button events (which are handled by MultiCall and may receive
305 """Return a MultiCall class which inherits its methods from the
312 class MultiCall (widget):
398 _multicall_dict[widget] = MultiCall
399 return MultiCall
AutoCompleteWindow.py 5 from idlelib.MultiCall import MC_SHIFT
  /prebuilts/gdb/linux-x86/lib/python2.7/idlelib/
macosxSupport.py 99 from idlelib.MultiCall import MultiCallCreator
MultiCall.py 2 MultiCall - a class which inherits its methods from a Tkinter widget (Text, for
6 MultiCall recognizes only a subset of legal event sequences. Sequences which
16 For all events which were handled by MultiCall, a new member is added to the
19 For Key/Button events (which are handled by MultiCall and may receive
305 """Return a MultiCall class which inherits its methods from the
312 class MultiCall (widget):
398 _multicall_dict[widget] = MultiCall
399 return MultiCall
AutoCompleteWindow.py 5 from idlelib.MultiCall import MC_SHIFT
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
macosxSupport.py 99 from idlelib.MultiCall import MultiCallCreator
MultiCall.py 2 MultiCall - a class which inherits its methods from a Tkinter widget (Text, for
6 MultiCall recognizes only a subset of legal event sequences. Sequences which
16 For all events which were handled by MultiCall, a new member is added to the
19 For Key/Button events (which are handled by MultiCall and may receive
305 """Return a MultiCall class which inherits its methods from the
312 class MultiCall (widget):
398 _multicall_dict[widget] = MultiCall
399 return MultiCall
AutoCompleteWindow.py 5 from idlelib.MultiCall import MC_SHIFT
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
macosxSupport.py 99 from idlelib.MultiCall import MultiCallCreator
MultiCall.py 2 MultiCall - a class which inherits its methods from a Tkinter widget (Text, for
6 MultiCall recognizes only a subset of legal event sequences. Sequences which
16 For all events which were handled by MultiCall, a new member is added to the
19 For Key/Button events (which are handled by MultiCall and may receive
305 """Return a MultiCall class which inherits its methods from the
312 class MultiCall (widget):
398 _multicall_dict[widget] = MultiCall
399 return MultiCall
AutoCompleteWindow.py 5 from idlelib.MultiCall import MC_SHIFT
  /external/python/cpython2/Lib/idlelib/
MultiCall.py 2 MultiCall - a class which inherits its methods from a Tkinter widget (Text, for
6 MultiCall recognizes only a subset of legal event sequences. Sequences which
16 For all events which were handled by MultiCall, a new member is added to the
19 For Key/Button events (which are handled by MultiCall and may receive
304 """Return a MultiCall class which inherits its methods from the
311 class MultiCall (widget):
397 _multicall_dict[widget] = MultiCall
398 return MultiCall
403 root.title("Test MultiCall")
AutoCompleteWindow.py 5 from idlelib.MultiCall import MC_SHIFT
  /external/python/cpython3/Lib/idlelib/
multicall.py 2 MultiCall - a class which inherits its methods from a Tkinter widget (Text, for
6 MultiCall recognizes only a subset of legal event sequences. Sequences which
16 For all events which were handled by MultiCall, a new member is added to the
19 For Key/Button events (which are handled by MultiCall and may receive
315 """Return a MultiCall class which inherits its methods from the
322 class MultiCall (widget):
413 _multicall_dict[widget] = MultiCall
414 return MultiCall
419 top.title("Test MultiCall")
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_xmlrpc.py 494 'system.methodSignature', 'system.multicall'])
544 multicall = xmlrpclib.MultiCall(p)
545 multicall.add(2,3)
546 multicall.pow(6,8)
547 multicall.div(127,42)
548 add_result, pow_result, div_result = multicall()
561 multicall = xmlrpclib.MultiCall(p)
562 multicall.this_is_not_exists()
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
xmlrpclib.py 50 # 2003-10-31 mvl Add multicall support
110 MultiCall Executor of boxcared xmlrpc requests
932 ## Multicall support
936 # some lesser magic to store calls made to a MultiCall object
947 """Iterates over the results of a multicall. Exceptions are
961 "unexpected type in multicall result"
963 class MultiCall:
968 Methods can be added to the MultiCall using normal
971 multicall = MultiCall(server_proxy)
    [all...]
  /external/python/cpython2/Lib/test/
test_xmlrpc.py 564 'system.methodSignature', 'system.multicall'])
614 multicall = xmlrpclib.MultiCall(p)
615 multicall.add(2,3)
616 multicall.pow(6,8)
617 multicall.div(127,42)
618 add_result, pow_result, div_result = multicall()
631 multicall = xmlrpclib.MultiCall(p)
632 multicall.this_is_not_exists(
    [all...]
  /external/python/cpython2/Lib/
xmlrpclib.py 50 # 2003-10-31 mvl Add multicall support
111 MultiCall Executor of boxcared xmlrpc requests
941 ## Multicall support
945 # some lesser magic to store calls made to a MultiCall object
956 """Iterates over the results of a multicall. Exceptions are
970 "unexpected type in multicall result"
972 class MultiCall:
977 Methods can be added to the MultiCall using normal
980 multicall = MultiCall(server_proxy
    [all...]
  /external/python/cpython3/Lib/xmlrpc/
client.py 50 # 2003-10-31 mvl Add multicall support
106 MultiCall Executor of boxcared xmlrpc requests
818 ## Multicall support
822 # some lesser magic to store calls made to a MultiCall object
833 """Iterates over the results of a multicall. Exceptions are
846 raise ValueError("unexpected type in multicall result")
848 class MultiCall:
853 Methods can be added to the MultiCall using normal
856 multicall = MultiCall(server_proxy
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_xmlrpc.py 497 'system.methodSignature', 'system.multicall'])
547 multicall = xmlrpclib.MultiCall(p)
548 multicall.add(2,3)
549 multicall.pow(6,8)
550 multicall.div(127,42)
551 add_result, pow_result, div_result = multicall()
564 multicall = xmlrpclib.MultiCall(p)
565 multicall.this_is_not_exists(
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
xmlrpclib.py 50 # 2003-10-31 mvl Add multicall support
110 MultiCall Executor of boxcared xmlrpc requests
932 ## Multicall support
936 # some lesser magic to store calls made to a MultiCall object
947 """Iterates over the results of a multicall. Exceptions are
961 "unexpected type in multicall result"
963 class MultiCall:
968 Methods can be added to the MultiCall using normal
971 multicall = MultiCall(server_proxy
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_xmlrpc.py 497 'system.methodSignature', 'system.multicall'])
547 multicall = xmlrpclib.MultiCall(p)
548 multicall.add(2,3)
549 multicall.pow(6,8)
550 multicall.div(127,42)
551 add_result, pow_result, div_result = multicall()
564 multicall = xmlrpclib.MultiCall(p)
565 multicall.this_is_not_exists(
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
xmlrpclib.py 50 # 2003-10-31 mvl Add multicall support
110 MultiCall Executor of boxcared xmlrpc requests
932 ## Multicall support
936 # some lesser magic to store calls made to a MultiCall object
947 """Iterates over the results of a multicall. Exceptions are
961 "unexpected type in multicall result"
963 class MultiCall:
968 Methods can be added to the MultiCall using normal
971 multicall = MultiCall(server_proxy
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_xmlrpc.py 497 'system.methodSignature', 'system.multicall'])
547 multicall = xmlrpclib.MultiCall(p)
548 multicall.add(2,3)
549 multicall.pow(6,8)
550 multicall.div(127,42)
551 add_result, pow_result, div_result = multicall()
564 multicall = xmlrpclib.MultiCall(p)
565 multicall.this_is_not_exists(
    [all...]

Completed in 974 milliseconds

1 2