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

1 2 3 4 5 6 7 8 91011>>

  /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().
__init__.py 16 from curses.wrapper import wrapper namespace
23 # until initscr() has been called.) This wrapper function calls the
41 # This is a similar wrapper for start_color(), which adds the COLORS and
  /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().
__init__.py 16 from curses.wrapper import wrapper namespace
23 # until initscr() has been called.) This wrapper function calls the
41 # This is a similar wrapper for start_color(), which adds the COLORS and
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
V8NodeIteratorCustom.cpp 46 v8::Handle<v8::Object> wrapper = V8NodeIterator::createWrapper(nodeIterator, creationContext, isolate); local
49 V8HiddenPropertyName::setNamedHiddenReference(wrapper, "filter", toV8(nodeIterator->filter(), creationContext, isolate));
51 return wrapper;
V8SVGDocumentCustom.cpp 44 v8::Handle<v8::Object> wrapper = V8SVGDocument::createWrapper(impl, creationContext, isolate); local
45 if (wrapper.IsEmpty())
46 return wrapper;
49 frame->script()->windowShell(mainThreadNormalWorld())->updateDocumentWrapper(wrapper);
51 return wrapper;
V8TreeWalkerCustom.cpp 46 v8::Handle<v8::Object> wrapper = V8TreeWalker::createWrapper(treeWalker, creationContext, isolate); local
49 V8HiddenPropertyName::setNamedHiddenReference(wrapper, "filter", toV8(treeWalker->filter(), creationContext, isolate));
51 return wrapper;
V8AudioContextCustom.cpp 72 // Transform the holder into a wrapper object for the audio context.
73 v8::Handle<v8::Object> wrapper = args.Holder(); local
74 V8DOMWrapper::associateObjectWithWrapper<V8AudioContext>(audioContext.release(), &info, wrapper, args.GetIsolate(), WrapperConfiguration::Dependent);
75 args.GetReturnValue().Set(wrapper);
V8ImageDataCustom.cpp 41 v8::Handle<v8::Object> wrapper = V8ImageData::createWrapper(impl, creationContext, isolate); local
42 if (!wrapper.IsEmpty()) {
49 wrapper->Set(v8::String::NewSymbol("data"), pixelArray, v8::ReadOnly);
52 return wrapper;
V8MessageChannelCustom.cpp 53 v8::Local<v8::Object> wrapper = args.Holder(); local
55 // Create references from the MessageChannel wrapper to the two
57 // stay alive as long as the MessageChannel wrapper is around.
58 V8HiddenPropertyName::setNamedHiddenReference(wrapper, "port1", toV8(obj->port1(), args.Holder(), args.GetIsolate()));
59 V8HiddenPropertyName::setNamedHiddenReference(wrapper, "port2", toV8(obj->port2(), args.Holder(), args.GetIsolate()));
61 V8DOMWrapper::associateObjectWithWrapper<V8MessageChannel>(obj.release(), &info, wrapper, args.GetIsolate(), WrapperConfiguration::Dependent);
62 args.GetReturnValue().Set(wrapper);
V8MutationObserverCustom.cpp 57 v8::Handle<v8::Object> wrapper = args.Holder(); local
59 RefPtr<MutationCallback> callback = V8MutationCallback::create(v8::Handle<v8::Function>::Cast(arg), context, wrapper, args.GetIsolate());
62 V8DOMWrapper::associateObjectWithWrapper<V8MutationObserver>(observer.release(), &info, wrapper, args.GetIsolate(), WrapperConfiguration::Dependent);
63 args.GetReturnValue().Set(wrapper);
V8SVGLengthCustom.cpp 44 SVGPropertyTearOff<SVGLength>* wrapper = V8SVGLength::toNative(info.Holder()); local
45 SVGLength& imp = wrapper->propertyReference();
47 SVGLengthContext lengthContext(wrapper->contextElement());
56 SVGPropertyTearOff<SVGLength>* wrapper = V8SVGLength::toNative(info.Holder()); local
57 if (wrapper->isReadOnly()) {
67 SVGLength& imp = wrapper->propertyReference();
69 SVGLengthContext lengthContext(wrapper->contextElement());
73 wrapper->commitChange();
78 SVGPropertyTearOff<SVGLength>* wrapper = V8SVGLength::toNative(args.Holder()); local
79 if (wrapper->isReadOnly())
    [all...]
V8WebKitPointCustom.cpp 59 v8::Handle<v8::Object> wrapper = args.Holder(); local
60 V8DOMWrapper::associateObjectWithWrapper<V8WebKitPoint>(point.release(), &info, wrapper, args.GetIsolate(), WrapperConfiguration::Dependent);
61 args.GetReturnValue().Set(wrapper);
V8ArrayBufferCustom.cpp 73 v8::Handle<v8::Object> wrapper = v8::ArrayBuffer::New(impl->data(), impl->byteLength()); local
77 V8DOMWrapper::associateObjectWithWrapper<V8ArrayBuffer>(impl, &info, wrapper, isolate, WrapperConfiguration::Independent);
78 return wrapper;
V8FormDataCustom.cpp 49 v8::Handle<v8::Object> wrapper = args.Holder(); local
50 V8DOMWrapper::associateObjectWithWrapper<V8FormData>(domFormData.release(), &info, wrapper, args.GetIsolate(), WrapperConfiguration::Dependent);
51 args.GetReturnValue().Set(wrapper);
  /external/clang/test/CodeGen/
2010-08-12-asm-aggr-arg.c 6 struct wrapper { struct
12 struct wrapper w;
  /external/antlr/antlr-3.4/runtime/Python/unittests/
testbase.py 13 def wrapper(test_method): function in function:broken
25 return wrapper
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
CustomElementWrapper.cpp 106 v8::Handle<v8::Object> wrapper = V8DOMWrapper::createWrapper(creationContext, binding->wrapperType(), element.get(), isolate); local
107 if (wrapper.IsEmpty())
110 wrapper->SetPrototype(binding->prototype());
112 V8DOMWrapper::associateObjectWithWrapper<WrapperType>(element, binding->wrapperType(), wrapper, isolate, WrapperConfiguration::Dependent);
113 return wrapper;
DOMDataStore.h 61 // way is to check whether the wrappable's wrapper is the same as
98 static void setWrapper(T* object, v8::Handle<v8::Object> wrapper, v8::Isolate* isolate, const WrapperConfiguration& configuration)
102 ScriptWrappable::setWrapperInObject(object, wrapper, isolate, configuration);
106 return current(isolate)->template set<V8T>(object, wrapper, isolate, configuration);
119 inline void set(T* object, v8::Handle<v8::Object> wrapper, v8::Isolate* isolate, const WrapperConfiguration& configuration)
122 ASSERT(!wrapper.IsEmpty());
124 ScriptWrappable::setWrapperInObject(object, wrapper, isolate, configuration);
127 m_wrapperMap.set(V8T::toInternalPointer(object), wrapper, configuration); local
V8EventListenerList.h 100 V8EventListener* wrapper = doFindWrapper(object, wrapperProperty); local
101 if (wrapper)
102 return wrapper;
  /external/chromium_org/third_party/WebKit/Source/core/svg/properties/
SVGTransformListPropertyTearOff.h 66 RefPtr<SVGPropertyTearOff<SVGTransform> > wrapper = SVGPropertyTearOff<SVGTransform>::create(m_values->consolidate()); local
67 m_wrappers->append(wrapper);
70 return wrapper.release();
  /cts/tests/tests/view/src/android/view/inputmethod/cts/
InputConnectionWrapperTest.java 36 InputConnectionWrapper wrapper = new InputConnectionWrapper(null, true); local
38 wrapper.beginBatchEdit();
43 wrapper.setTarget(inputConnection);
45 wrapper.beginBatchEdit();
47 wrapper.clearMetaKeyStates(KeyEvent.META_ALT_ON);
49 wrapper.commitCompletion(new CompletionInfo(1, 1, "testText"));
51 wrapper.commitCorrection(new CorrectionInfo(0, "oldText", "newText"));
53 wrapper.commitText("Text", 1);
55 wrapper.deleteSurroundingText(10, 100);
57 wrapper.endBatchEdit()
    [all...]
  /external/chromium/base/win/
wrapped_window_proc_unittest.cc 71 TestWrappedExceptionFiter wrapper; local
76 EXPECT_TRUE(wrapper.called());
  /external/chromium_org/base/win/
wrapped_window_proc_unittest.cc 71 TestWrappedExceptionFiter wrapper; local
76 EXPECT_TRUE(wrapper.called());
  /external/chromium_org/printing/
metafile_skia_wrapper.cc 24 skia::RefPtr<MetafileSkiaWrapper> wrapper; local
26 wrapper = skia::AdoptRef(new MetafileSkiaWrapper(metafile));
29 meta.setRefCnt(kMetafileKey, wrapper.get());

Completed in 1351 milliseconds

1 2 3 4 5 6 7 8 91011>>