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

1 2

  /external/webkit/Source/WebCore/bindings/cpp/
WebDOMEventTarget.h 70 WebDOMEventTargetPrivate* m_impl; member in class:WebDOMEventTarget
  /external/webkit/Source/WebCore/bindings/generic/
ActiveDOMCallback.h 53 OwnPtr<ActiveDOMObjectCallbackImpl> m_impl; member in class:WebCore::ActiveDOMCallback
ActiveDOMCallback.cpp 52 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/
WebDOMTestCallback.h 61 WebDOMTestCallbackPrivate* m_impl; member in class:WebDOMTestCallback
WebDOMTestInterface.h 49 WebDOMTestInterfacePrivate* m_impl; member in class:WebDOMTestInterface
WebDOMTestMediaQueryListListener.h 49 WebDOMTestMediaQueryListListenerPrivate* m_impl; member in class:WebDOMTestMediaQueryListListener
WebDOMTestSerializedScriptValueInterface.h 51 WebDOMTestSerializedScriptValueInterfacePrivate* m_impl; member in class:WebDOMTestSerializedScriptValueInterface
WebDOMTestObj.h 168 WebDOMTestObjPrivate* m_impl; member in class:WebDOMTestObj
  /external/webkit/Source/WebCore/platform/graphics/qt/
GraphicsLayerQt.h 87 OwnPtr<GraphicsLayerQtImpl> m_impl; member in class:WebCore::GraphicsLayerQt
  /external/webkit/Source/WebKit/wx/
WebEdit.h 60 WebCoreEditCommandPrivate* m_impl; member in class:wxWebEditCommand
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/presentation/
ButtonPropertyEditorPresentation.java 31 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/WebCore/bindings/js/
JSDOMWindowBase.h 52 DOMWindow* impl() const { return m_impl.get(); }
85 RefPtr<DOMWindow> m_impl; member in class:WebCore::JSDOMWindowBase
JSWorkerContextBase.h 49 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/
JSTestInterface.h 50 TestInterface* impl() const { return m_impl.get(); }
53 RefPtr<TestInterface> m_impl; member in class:WebCore::JSTestInterface
JSTestMediaQueryListListener.h 48 TestMediaQueryListListener* impl() const { return m_impl.get(); }
51 RefPtr<TestMediaQueryListListener> m_impl; member in class:WebCore::JSTestMediaQueryListListener
JSTestObj.h 57 TestObj* impl() const { return m_impl.get(); }
60 RefPtr<TestObj> m_impl; member in class:WebCore::JSTestObj
JSTestSerializedScriptValueInterface.h 50 TestSerializedScriptValueInterface* impl() const { return m_impl.get(); }
53 RefPtr<TestSerializedScriptValueInterface> m_impl; member in class:WebCore::JSTestSerializedScriptValueInterface
  /external/webkit/Source/WebCore/bridge/jni/
JavaString.h 48 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/jsc/
JavaStringJSC.h 45 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/webkit/Source/WebCore/bridge/jni/v8/
JavaStringV8.h 47 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/
GraphicsContext3DInternal.h 281 OwnPtr<WebKit::WebGraphicsContext3D> m_impl; member in class:WebCore::GraphicsContext3DInternal
  /external/webkit/Source/JavaScriptCore/wtf/
HashCountedSet.h 75 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.contains(value);
    [all...]
HashIterators.h 43 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(impl) {
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...]
HashSet.h 95 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.contains(value);
    [all...]
  /external/webkit/Source/JavaScriptCore/runtime/
UString.h 48 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 318 milliseconds

1 2