Searched defs:m_impl (Results 1 - 25 of 34) sorted by relevance

12

/external/webkit/Source/WebCore/bindings/cpp/
H A DWebDOMEventTarget.h70 WebDOMEventTargetPrivate* m_impl; member in class:WebDOMEventTarget
/external/webkit/Source/WebCore/bindings/generic/
H A DActiveDOMCallback.h53 OwnPtr<ActiveDOMObjectCallbackImpl> m_impl; member in class:WebCore::ActiveDOMCallback
H A DActiveDOMCallback.cpp52 destroyOnContextThread(m_impl.release());
57 : m_impl(impl)
61 OwnPtr<ActiveDOMObjectCallbackImpl> m_impl; member in class:WebCore::DestroyOnContextThreadTask
123 : m_impl(new ActiveDOMObjectCallbackImpl(context))
129 destroyOnContextThread(m_impl.release());
134 return m_impl->canInvokeCallback();
139 return m_impl->scriptExecutionContext();
/external/webkit/Source/WebCore/bindings/scripts/test/CPP/
H A DWebDOMTestCallback.h61 WebDOMTestCallbackPrivate* m_impl; member in class:WebDOMTestCallback
H A DWebDOMTestInterface.h49 WebDOMTestInterfacePrivate* m_impl; member in class:WebDOMTestInterface
H A DWebDOMTestMediaQueryListListener.h49 WebDOMTestMediaQueryListListenerPrivate* m_impl; member in class:WebDOMTestMediaQueryListListener
H A DWebDOMTestSerializedScriptValueInterface.h51 WebDOMTestSerializedScriptValueInterfacePrivate* m_impl; member in class:WebDOMTestSerializedScriptValueInterface
H A DWebDOMTestObj.h168 WebDOMTestObjPrivate* m_impl; member in class:WebDOMTestObj
/external/webkit/Source/WebCore/platform/graphics/qt/
H A DGraphicsLayerQt.h87 OwnPtr<GraphicsLayerQtImpl> m_impl; member in class:WebCore::GraphicsLayerQt
/external/webkit/Source/WebKit/wx/
H A DWebEdit.h60 WebCoreEditCommandPrivate* m_impl; member in class:wxWebEditCommand
/external/webkit/Source/WebCore/bindings/js/
H A DJSDOMWindowBase.h52 DOMWindow* impl() const { return m_impl.get(); }
85 RefPtr<DOMWindow> m_impl; member in class:WebCore::JSDOMWindowBase
H A DJSWorkerContextBase.h49 WorkerContext* impl() const { return m_impl.get(); }
58 RefPtr<WorkerContext> m_impl; member in class:WebCore::JSWorkerContextBase
/external/webkit/Source/WebCore/bindings/scripts/test/JS/
H A DJSTestInterface.h50 TestInterface* impl() const { return m_impl.get(); }
53 RefPtr<TestInterface> m_impl; member in class:WebCore::JSTestInterface
H A DJSTestMediaQueryListListener.h48 TestMediaQueryListListener* impl() const { return m_impl.get(); }
51 RefPtr<TestMediaQueryListListener> m_impl; member in class:WebCore::JSTestMediaQueryListListener
H A DJSTestObj.h57 TestObj* impl() const { return m_impl.get(); }
60 RefPtr<TestObj> m_impl; member in class:WebCore::JSTestObj
H A DJSTestSerializedScriptValueInterface.h50 TestSerializedScriptValueInterface* impl() const { return m_impl.get(); }
53 RefPtr<TestSerializedScriptValueInterface> m_impl; member in class:WebCore::JSTestSerializedScriptValueInterface
/external/webkit/Source/WebCore/bridge/jni/
H A DJavaString.h48 m_impl.init();
53 m_impl.init(e, s);
58 m_impl.init(getJNIEnv(), s);
61 const char* utf8() const { return m_impl.utf8(); }
62 int length() const { return m_impl.length(); }
63 StringImpl* impl() const { return m_impl.impl(); }
66 JavaStringImpl m_impl; member in class:JSC::Bindings::JavaString
/external/webkit/Source/WebCore/bridge/jni/v8/
H A DJavaStringV8.h47 m_impl = StringImpl::create(jChars, size);
54 m_utf8String = String(m_impl).utf8();
58 StringImpl* impl() const { return m_impl.get(); }
61 RefPtr<StringImpl> m_impl; member in class:JSC::Bindings::JavaStringImpl
/external/webkit/Source/WebKit/chromium/src/
H A DGraphicsContext3DInternal.h281 OwnPtr<WebKit::WebGraphicsContext3D> m_impl; member in class:WebCore::GraphicsContext3DInternal
/external/webkit/Source/WebCore/bridge/jni/jsc/
H A DJavaStringJSC.h45 m_impl = 0;
51 m_impl = UString().impl();
60 m_impl = UString(reinterpret_cast<const UChar*>(uc), size).impl();
69 m_utf8String = UString(m_impl).utf8();
73 int length() const { return m_impl->length(); }
74 StringImpl* impl() const { return m_impl.get(); }
77 RefPtr<StringImpl> m_impl; member in class:JSC::Bindings::JavaStringImpl
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/presentation/
H A DButtonPropertyEditorPresentation.java31 private final ButtonPropertyEditorPresentationImpl m_impl; field in class:ButtonPropertyEditorPresentation
44 m_impl =
59 m_impl.setSelection(propertyTable, property, selected);
74 return m_impl.show(propertyTable, property, x, y, width, height);
79 m_impl.hide(propertyTable, property);
/external/webkit/Source/JavaScriptCore/wtf/
H A DHashCountedSet.h75 ImplType m_impl; member in class:WTF::HashCountedSet
81 return m_impl.size();
87 return m_impl.capacity();
99 return m_impl.begin();
105 return m_impl.end();
111 return m_impl.begin();
117 return m_impl.end();
123 return m_impl.find(value);
129 return m_impl.find(value);
135 return m_impl
[all...]
H A DHashIterators.h43 HashTableConstIteratorAdapter(const typename HashTableType::const_iterator& impl) : m_impl(impl) {}
45 const ValueType* get() const { return (const ValueType*)m_impl.get(); }
49 HashTableConstIteratorAdapter& operator++() { ++m_impl; return *this; }
55 typename HashTableType::const_iterator m_impl; member in struct:WTF::HashTableConstIteratorAdapter
65 HashTableIteratorAdapter(const typename HashTableType::iterator& impl) : m_impl(impl) {}
67 ValueType* get() const { return (ValueType*)m_impl.get(); }
71 HashTableIteratorAdapter& operator++() { ++m_impl; return *this; }
75 typename HashTableType::const_iterator i = m_impl;
82 typename HashTableType::iterator m_impl; member in struct:WTF::HashTableIteratorAdapter
90 HashTableConstKeysIterator(const ConstIterator& impl) : m_impl(imp
99 ConstIterator m_impl; member in struct:WTF::HashTableConstKeysIterator
116 ConstIterator m_impl; member in struct:WTF::HashTableConstValuesIterator
139 Iterator m_impl; member in struct:WTF::HashTableKeysIterator
162 Iterator m_impl; member in struct:WTF::HashTableValuesIterator
[all...]
H A DHashSet.h95 HashTableType m_impl; member in class:WTF::HashSet
115 m_impl.swap(other.m_impl);
121 return m_impl.size();
127 return m_impl.capacity();
133 return m_impl.isEmpty();
139 return m_impl.begin();
145 return m_impl.end();
151 return m_impl.find(value);
157 return m_impl
[all...]
/external/webkit/Source/JavaScriptCore/runtime/
H A DUString.h48 UString(StringImpl* impl) : m_impl(impl) { }
49 UString(PassRefPtr<StringImpl> impl) : m_impl(impl) { }
50 UString(RefPtr<StringImpl> impl) : m_impl(impl) { }
55 void swap(UString& o) { m_impl.swap(o.m_impl); }
60 bool isNull() const { return !m_impl; }
61 bool isEmpty() const { return !m_impl || !m_impl->length(); }
63 StringImpl* impl() const { return m_impl.get(); }
67 if (!m_impl)
113 RefPtr<StringImpl> m_impl; member in class:JSC::UString
[all...]

Completed in 384 milliseconds

12