HomeSort by relevance Sort by last modified time
    Searched defs:wrapper (Results 1 - 25 of 1420) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/python/cpython2/Lib/curses/
wrapper.py 1 """curses.wrapper
3 Contains one function, wrapper(), which runs another function which
5 application raises an exception, wrapper() will restore the terminal
12 def wrapper(func, *args, **kwds): function
13 """Wrapper function that initializes curses and calls another function,
17 wrapper().
  /prebuilts/gdb/darwin-x86/lib/python2.7/curses/
wrapper.py 1 """curses.wrapper
3 Contains one function, wrapper(), which runs another function which
5 application raises an exception, wrapper() will restore the terminal
12 def wrapper(func, *args, **kwds): function
13 """Wrapper function that initializes curses and calls another function,
17 wrapper().
  /prebuilts/gdb/linux-x86/lib/python2.7/curses/
wrapper.py 1 """curses.wrapper
3 Contains one function, wrapper(), which runs another function which
5 application raises an exception, wrapper() will restore the terminal
12 def wrapper(func, *args, **kwds): function
13 """Wrapper function that initializes curses and calls another function,
17 wrapper().
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/curses/
wrapper.py 1 """curses.wrapper
3 Contains one function, wrapper(), which runs another function which
5 application raises an exception, wrapper() will restore the terminal
12 def wrapper(func, *args, **kwds): function
13 """Wrapper function that initializes curses and calls another function,
17 wrapper().
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/curses/
wrapper.py 1 """curses.wrapper
3 Contains one function, wrapper(), which runs another function which
5 application raises an exception, wrapper() will restore the terminal
12 def wrapper(func, *args, **kwds): function
13 """Wrapper function that initializes curses and calls another function,
17 wrapper().
  /cts/tests/inputmethod/src/android/view/inputmethod/cts/
InputConnectionWrapperTest.java 60 InputConnectionWrapper wrapper = new InputConnectionWrapper(null, true); local
62 wrapper.beginBatchEdit();
67 wrapper.setTarget(inputConnection);
69 wrapper.beginBatchEdit();
72 wrapper.clearMetaKeyStates(KeyEvent.META_ALT_ON);
75 wrapper.commitCompletion(new CompletionInfo(1, 1, "testText"));
83 wrapper.commitCorrection(new CorrectionInfo(0, "oldText", "newText"));
91 wrapper.commitText("Text", 1);
94 wrapper.deleteSurroundingText(10, 100);
97 wrapper.deleteSurroundingTextInCodePoints(10, 100)
    [all...]
  /external/clang/test/CodeGen/
2010-08-12-asm-aggr-arg.c 6 struct wrapper { struct
12 struct wrapper w;
  /external/libcxx/utils/libcxx/test/
tracing.py 15 def wrapper(*args, **kwargs): function in function:trace_function
33 return wrapper
  /external/python/cpython3/Lib/curses/
__init__.py 20 # until initscr() has been called.) This wrapper function calls the
38 # This is a similar wrapper for start_color(), which adds the COLORS and
58 # Wrapper for the entire curses-based application. Runs a function which
60 # raises an exception, wrapper() will restore the terminal to a sane state so
63 def wrapper(func, *args, **kwds): function
64 """Wrapper function that initializes curses and calls another function,
68 wrapper().
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/utils/libcxx/test/
tracing.py 15 def wrapper(*args, **kwargs): function in function:trace_function
33 return wrapper
  /external/antlr/antlr-3.4/runtime/Python/unittests/
testbase.py 13 def wrapper(test_method): function in function:broken
25 return wrapper
  /external/autotest/client/cros/cellular/pseudomodem/
utils.py 30 def wrapper(func): function in function:log_dbus_method
103 return wrapper
  /external/brotli/java/org/brotli/wrapper/common/
CommonJNI.java 7 package org.brotli.wrapper.common;
12 * JNI wrapper for brotli common.
  /external/clang/tools/scan-build-py/libscanbuild/
__init__.py 64 def wrapper(*args, **kwargs): function in function:command_entry_point
82 return wrapper
  /external/python/cpython3/Lib/unittest/test/testmock/
support.py 18 def wrapper(): function in function:examine_warnings
21 return wrapper
  /external/tensorflow/tensorflow/contrib/py2tf/impl/
api.py 112 def wrapper(*args, **kwargs): function in function:convert.decorator
113 """Wrapper that calls the compiled version of the wrapped function."""
138 setattr(wrapper, '__pyct_is_compile_decorator', True)
139 return wrapper
  /external/testng/src/test/java/test/junit/testsetup/
LayerATestSuite.java 14 TestSuiteContainerWrapper wrapper = new TestSuiteContainerWrapper(suite, Data.class); local
15 return wrapper;
  /tools/tradefederation/core/atest/test_finders/
test_finder_base.py 38 def wrapper(func): function in function:register
39 """Wrapper for the register decorator."""
43 return wrapper
  /cts/tests/tests/graphics/src/android/graphics/drawable/cts/
DrawableWrapperTest.java 70 DrawableWrapper wrapper = new MyWrapper(d); local
71 assertSame(d, wrapper.getDrawable());
80 DrawableWrapper wrapper = new MyWrapper(d); local
81 assertSame(d, wrapper.getDrawable());
88 DrawableWrapper wrapper = new MyWrapper(null); local
89 assertSame(null, wrapper.getDrawable());
91 wrapper.setDrawable(d);
92 assertSame(d, wrapper.getDrawable());
98 DrawableWrapper wrapper = new MyWrapper(new BitmapDrawable()); local
101 wrapper.setCallback(cb)
118 DrawableWrapper wrapper = new MyWrapper(new BitmapDrawable()); local
138 DrawableWrapper wrapper = new MyWrapper(new BitmapDrawable()); local
159 DrawableWrapper wrapper = new MyWrapper(mockDrawable); local
176 DrawableWrapper wrapper = new MyWrapper(mockDrawable); local
191 DrawableWrapper wrapper = new MyWrapper(mockDrawable); local
201 DrawableWrapper wrapper = new MyWrapper(wrappedDrawable); local
211 DrawableWrapper wrapper = new MyWrapper(new ColorDrawable(Color.RED)); local
219 DrawableWrapper wrapper = new MyWrapper(mockDrawable); local
240 DrawableWrapper wrapper = new MyWrapper(mockDrawable); local
258 DrawableWrapper wrapper = new MyWrapper(mockDrawable); local
272 DrawableWrapper wrapper = new MyWrapper(mockDrawable); local
283 DrawableWrapper wrapper = new MyWrapper(mockDrawable); local
293 MockDrawableWrapper wrapper = new MockDrawableWrapper(d); local
363 MyWrapper wrapper = new MyWrapper(mockDrawable); local
373 DrawableWrapper wrapper = new MyWrapper(mockDrawable); local
383 DrawableWrapper wrapper = new MyWrapper(new BitmapDrawable()); local
    [all...]
  /external/tensorflow/tensorflow/contrib/lite/java/src/main/java/org/tensorflow/lite/
Interpreter.java 67 wrapper = new NativeInterpreterWrapper(modelFile.getAbsolutePath());
77 wrapper = new NativeInterpreterWrapper(mappedByteBuffer);
109 if (wrapper == null) {
112 Tensor[] tensors = wrapper.run(inputs);
132 if (wrapper == null) {
135 wrapper.resizeInput(idx, dims);
145 if (wrapper == null) {
148 return wrapper.getInputIndex(opName);
158 if (wrapper == null) {
161 return wrapper.getOutputIndex(opName)
171 NativeInterpreterWrapper wrapper; field in class:Interpreter
    [all...]
  /external/tensorflow/tensorflow/contrib/opt/python/training/
multitask_optimizer_wrapper.py 15 """An optimizer wrapper for stateful optimizers with multitask loss."""
41 def wrapper(self, grad, *args, **kwargs): # pylint: disable=unused-argument function in function:_get_wrapper
46 wrapper = types.MethodType(wrapper, opt)
47 return wrapper
51 """Optimizer wrapper making all-zero gradients harmless.
63 This wrapper filters out all-zero gradient tensors,
105 wrapper = _get_wrapper(fn, self._opt)
106 setattr(self._opt, name, wrapper)
  /external/tensorflow/tensorflow/core/common_runtime/
process_util.cc 54 std::function<void()> wrapper = std::bind( local
61 Env::Default()->SchedClosure(std::move(wrapper));
  /frameworks/support/leanback/src/main/java/androidx/leanback/widget/
ItemBridgeAdapterShadowOverlayWrapper.java 20 * A wrapper class working with {@link ItemBridgeAdapter} to wrap item view in a
24 public class ItemBridgeAdapterShadowOverlayWrapper extends ItemBridgeAdapter.Wrapper {
35 ShadowOverlayContainer wrapper = mHelper.createShadowOverlayContainer(context); local
36 return wrapper;
39 public void wrap(View wrapper, View wrapped) {
40 ((ShadowOverlayContainer) wrapper).wrap(wrapped);
  /developers/build/prebuilts/gradle/MidiScope/Application/src/main/java/com/example/android/common/midi/
MidiOutputPortConnectionSelector.java 52 public void onPortSelected(final MidiPortWrapper wrapper) {
53 Log.i(MidiConstants.TAG, "connectPortToSynth: " + wrapper);
55 if (wrapper.getDeviceInfo() != null) {
57 mSynthConnector.connectToDevicePort(wrapper.getDeviceInfo(),
58 wrapper.getPortIndex(), mDestinationDeviceInfo,
  /developers/build/prebuilts/gradle/MidiSynth/Application/src/main/java/com/example/android/common/midi/
MidiOutputPortConnectionSelector.java 52 public void onPortSelected(final MidiPortWrapper wrapper) {
53 Log.i(MidiConstants.TAG, "connectPortToSynth: " + wrapper);
55 if (wrapper.getDeviceInfo() != null) {
57 mSynthConnector.connectToDevicePort(wrapper.getDeviceInfo(),
58 wrapper.getPortIndex(), mDestinationDeviceInfo,

Completed in 1085 milliseconds

1 2 3 4 5 6 7 8 91011>>