HomeSort by relevance Sort by last modified time
    Searched full:wrapper (Results 76 - 100 of 1325) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/webkit/WebCore/bindings/js/
JSDOMBinding.h 233 void cacheDOMObjectWrapper(JSC::ExecState*, void* objectHandle, DOMObject* wrapper);
234 void forgetDOMNode(JSNode* wrapper, Node* node, Document* document);
235 void forgetDOMObject(DOMObject* wrapper, void* objectHandle);
238 void cacheDOMNodeWrapper(JSC::ExecState*, Document*, Node*, JSNode* wrapper);
292 // FIXME: new (exec) could use a different globalData than the globalData this wrapper is cached on.
293 WrapperClass* wrapper = new (exec) WrapperClass(getDOMStructure<WrapperClass>(exec, globalObject), globalObject, object); local
294 cacheDOMObjectWrapper(exec, object, wrapper);
295 return wrapper;
301 if (DOMObject* wrapper = getCachedDOMObjectWrapper(exec, object))
302 return wrapper;
310 DOMObject* wrapper = createDOMObjectWrapper<WrapperClass, DOMClass>(exec, globalObject, object); local
333 WrapperClass* wrapper = new (exec) WrapperClass(getDOMStructure<WrapperClass>(exec, globalObject), globalObject, node); local
    [all...]
JSLazyEventListener.h 32 static PassRefPtr<JSLazyEventListener> create(const String& functionName, const String& eventParameterName, const String& code, Node* node, const String& sourceURL, int lineNumber, JSC::JSObject* wrapper, DOMWrapperWorld* isolatedWorld)
34 return adoptRef(new JSLazyEventListener(functionName, eventParameterName, code, node, sourceURL, lineNumber, wrapper, isolatedWorld));
39 JSLazyEventListener(const String& functionName, const String& eventParameterName, const String& code, Node*, const String& sourceURL, int lineNumber, JSC::JSObject* wrapper, DOMWrapperWorld* isolatedWorld);
  /dalvik/tests/079-phantom/src/
Bitmap.java 74 Bitmap.NativeWrapper wrapper = new Bitmap.NativeWrapper(nativeData); local
75 PhantomWrapper phan = new PhantomWrapper(wrapper, sPhantomQueue,
78 return wrapper;
107 * We keep a copy of the native data pointer value, and set the wrapper
112 PhantomWrapper(Bitmap.NativeWrapper wrapper,
115 super(wrapper, queue);
  /external/webkit/WebCore/bindings/v8/custom/
V8NavigatorCustom.cpp 50 v8::Handle<v8::Object> wrapper = getDOMObjectMap().get(impl);
51 if (wrapper.IsEmpty()) {
52 wrapper = V8Navigator::wrap(impl);
53 if (!wrapper.IsEmpty())
54 V8DOMWrapper::setHiddenWindowReference(impl->frame(), V8DOMWindow::navigatorIndex, wrapper);
56 return wrapper;
V8SVGMatrixCustom.cpp 56 RefPtr<V8SVGStaticPODTypeWrapper<AffineTransform> > wrapper = V8SVGStaticPODTypeWrapper<AffineTransform>::create(m1.multLeft(m2)); local
57 return toV8(wrapper.get());
75 RefPtr<V8SVGStaticPODTypeWrapper<AffineTransform> > wrapper = V8SVGStaticPODTypeWrapper<AffineTransform>::create(result); local
76 return toV8(wrapper.get());
96 RefPtr<V8SVGStaticPODTypeWrapper<AffineTransform> > wrapper = V8SVGStaticPODTypeWrapper<AffineTransform>::create(result); local
97 return toV8(wrapper.get());
V8StyleSheetCustom.cpp 45 v8::Handle<v8::Object> wrapper = V8StyleSheet::wrap(impl);
48 if (ownerNode && !wrapper.IsEmpty()) {
50 wrapper->SetInternalField(V8StyleSheet::ownerNodeIndex, owner);
52 return wrapper;
V8WebGLByteArrayCustom.cpp 69 v8::Handle<v8::Object> wrapper = V8WebGLByteArray::wrap(impl);
70 if (!wrapper.IsEmpty())
71 wrapper->SetIndexedPropertiesToExternalArrayData(impl->baseAddress(), v8::kExternalByteArray, impl->length());
72 return wrapper;
V8WebGLFloatArrayCustom.cpp 69 v8::Handle<v8::Object> wrapper = V8WebGLFloatArray::wrap(impl);
70 if (!wrapper.IsEmpty())
71 wrapper->SetIndexedPropertiesToExternalArrayData(impl->baseAddress(), v8::kExternalFloatArray, impl->length());
72 return wrapper;
V8WebGLIntArrayCustom.cpp 69 v8::Handle<v8::Object> wrapper = V8WebGLIntArray::wrap(impl);
70 if (!wrapper.IsEmpty())
71 wrapper->SetIndexedPropertiesToExternalArrayData(impl->baseAddress(), v8::kExternalIntArray, impl->length());
72 return wrapper;
V8WebGLShortArrayCustom.cpp 69 v8::Handle<v8::Object> wrapper = V8WebGLShortArray::wrap(impl);
70 if (!wrapper.IsEmpty())
71 wrapper->SetIndexedPropertiesToExternalArrayData(impl->baseAddress(), v8::kExternalShortArray, impl->length());
72 return wrapper;
V8WebGLUnsignedByteArrayCustom.cpp 69 v8::Handle<v8::Object> wrapper = V8WebGLUnsignedByteArray::wrap(impl);
70 if (!wrapper.IsEmpty())
71 wrapper->SetIndexedPropertiesToExternalArrayData(impl->baseAddress(), v8::kExternalUnsignedByteArray, impl->length());
72 return wrapper;
V8WebGLUnsignedIntArrayCustom.cpp 69 v8::Handle<v8::Object> wrapper = V8WebGLUnsignedIntArray::wrap(impl);
70 if (!wrapper.IsEmpty())
71 wrapper->SetIndexedPropertiesToExternalArrayData(impl->baseAddress(), v8::kExternalUnsignedIntArray, impl->length());
72 return wrapper;
V8WebGLUnsignedShortArrayCustom.cpp 69 v8::Handle<v8::Object> wrapper = V8WebGLUnsignedShortArray::wrap(impl);
70 if (!wrapper.IsEmpty())
71 wrapper->SetIndexedPropertiesToExternalArrayData(impl->baseAddress(), v8::kExternalUnsignedShortArray, impl->length());
72 return wrapper;
  /external/fdlibm/
w_pow.c 16 * wrapper ieee_pow(x,y) return x**y
23 double ieee_pow(double x, double y) /* wrapper pow */
25 double ieee_pow(x,y) /* wrapper pow */
  /external/libffi/testsuite/lib/
wrapper.exp 19 # ${tool}_maybe_build_wrapper -- Build wrapper object if the target
20 # needs it. FILENAME is the path to the wrapper file. If there are
32 # The wrapper code may contain code that gcc objects on. This
  /bionic/libm/src/
w_cabs.c 2 * cabs() wrapper for hypot().
  /dalvik/libcore/security/src/main/java/org/bouncycastle/i18n/filter/
UntrustedInput.java 5 * Wrapper class to mark untrusted input.
  /external/oprofile/libutil/
op_libiberty.c 3 * Wrapper for libiberty - always use this instead of
  /external/webkit/WebCore/accessibility/mac/
AXObjectCacheMac.mm 48 [obj->wrapper() detach];
49 [obj->wrapper() release];
100 NSAccessibilityPostNotification(obj->wrapper(), macNotification);
103 [obj->wrapper() accessibilityPostedNotification:macNotification];
  /external/webkit/WebCore/bindings/v8/
V8DOMWrapper.cpp 90 void V8DOMWrapper::setIndexedPropertiesToExternalArray(v8::Handle<v8::Object> wrapper,
122 wrapper->SetIndexedPropertiesToExternalArrayData(address,
129 void V8DOMWrapper::setJSWrapperForDOMObject(void* object, v8::Persistent<v8::Object> wrapper)
131 ASSERT(V8DOMWrapper::maybeDOMWrapper(wrapper));
133 V8ClassIndex::V8WrapperType type = V8DOMWrapper::domWrapperType(wrapper);
143 getDOMObjectMap().set(object, wrapper);
147 void V8DOMWrapper::setJSWrapperForActiveDOMObject(void* object, v8::Persistent<v8::Object> wrapper)
149 ASSERT(V8DOMWrapper::maybeDOMWrapper(wrapper));
151 V8ClassIndex::V8WrapperType type = V8DOMWrapper::domWrapperType(wrapper);
160 getActiveDOMObjectMap().set(object, wrapper);
345 v8::Handle<v8::Value> wrapper = object->GetInternalField(v8DOMWrapperObjectIndex); local
363 v8::Handle<v8::Value> wrapper = object->GetInternalField(v8DOMWrapperObjectIndex); local
378 v8::Persistent<v8::Object>* wrapper = node->wrapper(); local
434 v8::Handle<v8::Object> wrapper = getActiveDOMObjectMap().get(xmlHttpRequest); local
444 v8::Handle<v8::Object> wrapper = getActiveDOMObjectMap().get(port); local
450 v8::Handle<v8::Object> wrapper = getDOMObjectMap().get(upload); local
    [all...]
DOMDataStore.h 186 v8::Persistent<v8::Object>* wrapper = obj->wrapper(); local
187 return wrapper ? *wrapper : v8::Persistent<v8::Object>();
190 virtual void set(Node* obj, v8::Persistent<v8::Object> wrapper)
193 ASSERT(!obj->wrapper());
194 v8::Persistent<v8::Object>* entry = m_table.add(wrapper);
196 wrapper.MakeWeak(obj, weakReferenceCallback());
201 return obj->wrapper();
233 ASSERT(node->wrapper() == entry)
    [all...]
  /external/wpa_supplicant/
crypto_none.c 2 * WPA Supplicant / Empty template functions for crypto wrapper
crypto.h 2 * WPA Supplicant / wrapper functions for crypto libraries
22 * Wrapper code for using each crypto library is in its own file (crypto*.c)
151 * (CONFIG_TLS=internal). If that is not used, the crypto wrapper does not need
164 * (CONFIG_TLS=internal). If that is not used, the crypto wrapper does not need
183 * (CONFIG_TLS=internal). If that is not used, the crypto wrapper does not need
206 * (CONFIG_TLS=internal). If that is not used, the crypto wrapper does not need
222 * (CONFIG_TLS=internal). If that is not used, the crypto wrapper does not need
237 * (CONFIG_TLS=internal). If that is not used, the crypto wrapper does not need
248 * (CONFIG_TLS=internal). If that is not used, the crypto wrapper does not need
268 * (CONFIG_TLS=internal). If that is not used, the crypto wrapper does not nee
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/src/crypto/
crypto_none.c 2 * WPA Supplicant / Empty template functions for crypto wrapper
crypto.h 2 * WPA Supplicant / wrapper functions for crypto libraries
22 * Wrapper code for using each crypto library is in its own file (crypto*.c)
152 * (CONFIG_TLS=internal). If that is not used, the crypto wrapper does not need
165 * (CONFIG_TLS=internal). If that is not used, the crypto wrapper does not need
184 * (CONFIG_TLS=internal). If that is not used, the crypto wrapper does not need
207 * (CONFIG_TLS=internal). If that is not used, the crypto wrapper does not need
223 * (CONFIG_TLS=internal). If that is not used, the crypto wrapper does not need
238 * (CONFIG_TLS=internal). If that is not used, the crypto wrapper does not need
249 * (CONFIG_TLS=internal). If that is not used, the crypto wrapper does not need
269 * (CONFIG_TLS=internal). If that is not used, the crypto wrapper does not nee
    [all...]

Completed in 196 milliseconds

1 2 34 5 6 7 8 91011>>