Searched refs:m_impl (Results 1 - 25 of 77) sorted by relevance

1234

/external/webkit/Source/WebKit/wx/
H A DWebFrame.cpp84 m_impl = new WebFramePrivate();
93 RefPtr<WebCore::Frame> newFrame = WebCore::Frame::create(container->m_impl->page, parentFrame, loaderClient);
95 m_impl->frame = newFrame.get();
108 m_impl->frame->ref();
110 m_impl->frame->init();
117 if (m_impl)
118 delete m_impl;
123 if (m_impl)
124 return m_impl->frame;
131 if (m_impl
[all...]
H A DWebEdit.cpp59 m_impl = new WebCoreEditCommandPrivate(new WebCore::WebCoreEditCommand(frame->document()));
66 delete m_impl;
67 m_impl = 0;
72 if (m_impl && m_impl->command())
73 m_impl->command()->setElementAttribute(element->impl(), WebCore::QualifiedName(WTF::nullAtom, WTF::String(name), WTF::nullAtom), WTF::String(value));
78 if (m_impl && m_impl->command())
79 m_impl->command()->apply();
/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/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/webkit/Source/WebCore/bindings/scripts/test/CPP/
H A DWebDOMTestCallback.cpp54 , m_impl(0)
60 , m_impl(new WebDOMTestCallbackPrivate(impl))
67 m_impl = copy.impl() ? new WebDOMTestCallbackPrivate(copy.impl()) : 0;
72 delete m_impl;
73 m_impl = copy.impl() ? new WebDOMTestCallbackPrivate(copy.impl()) : 0;
79 return m_impl ? m_impl->impl.get() : 0;
84 delete m_impl;
85 m_impl = 0;
H A DWebDOMTestInterface.cpp43 , m_impl(0)
49 , m_impl(new WebDOMTestInterfacePrivate(impl))
56 m_impl = copy.impl() ? new WebDOMTestInterfacePrivate(copy.impl()) : 0;
61 delete m_impl;
62 m_impl = copy.impl() ? new WebDOMTestInterfacePrivate(copy.impl()) : 0;
68 return m_impl ? m_impl->impl.get() : 0;
73 delete m_impl;
74 m_impl = 0;
H A DWebDOMTestMediaQueryListListener.cpp42 , m_impl(0)
48 , m_impl(new WebDOMTestMediaQueryListListenerPrivate(impl))
55 m_impl = copy.impl() ? new WebDOMTestMediaQueryListListenerPrivate(copy.impl()) : 0;
60 delete m_impl;
61 m_impl = copy.impl() ? new WebDOMTestMediaQueryListListenerPrivate(copy.impl()) : 0;
67 return m_impl ? m_impl->impl.get() : 0;
72 delete m_impl;
73 m_impl = 0;
H A DWebDOMTestSerializedScriptValueInterface.cpp44 , m_impl(0)
50 , m_impl(new WebDOMTestSerializedScriptValueInterfacePrivate(impl))
57 m_impl = copy.impl() ? new WebDOMTestSerializedScriptValueInterfacePrivate(copy.impl()) : 0;
62 delete m_impl;
63 m_impl = copy.impl() ? new WebDOMTestSerializedScriptValueInterfacePrivate(copy.impl()) : 0;
69 return m_impl ? m_impl->impl.get() : 0;
74 delete m_impl;
75 m_impl = 0;
/external/webkit/Source/WebCore/platform/text/cf/
H A DStringCF.cpp37 m_impl = StringImpl::empty();
41 m_impl = StringImpl::create(buffer.data(), size);
47 if (!m_impl)
50 return m_impl->createCFString();
/external/webkit/Source/JavaScriptCore/wtf/
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/WebCore/bindings/js/
H A DJSXMLHttpRequestUploadCustom.cpp48 if (XMLHttpRequest* xmlHttpRequest = m_impl->associatedXMLHttpRequest())
51 m_impl->markJSEventListeners(markStack);
H A DJSNodeIteratorCustom.cpp36 if (NodeFilter* filter = m_impl->filter())
H A DJSTreeWalkerCustom.cpp36 if (NodeFilter* filter = m_impl->filter())
H A DJSSQLResultSetRowListCustom.cpp50 if (index < 0 || (unsigned)index >= m_impl->length()) {
57 unsigned numColumns = m_impl->columnNames().size();
60 const SQLValue& value = m_impl->values()[valuesIndex + i];
77 object->putDirect(exec->globalData(), Identifier(exec, stringToUString(m_impl->columnNames()[i])), jsValue, DontDelete | ReadOnly);
/external/webkit/Source/WebCore/dom/
H A DQualifiedName.h62 QualifiedName(WTF::HashTableDeletedValueType) : m_impl(hashTableDeletedValue()) { }
63 bool isHashTableDeletedValue() const { return m_impl == hashTableDeletedValue(); }
66 QualifiedName() : m_impl(0) { }
69 QualifiedName(const QualifiedName& other) : m_impl(other.m_impl) { ref(); }
70 const QualifiedName& operator=(const QualifiedName& other) { other.ref(); deref(); m_impl = other.m_impl; return *this; }
72 bool operator==(const QualifiedName& other) const { return m_impl == other.m_impl; }
75 bool matches(const QualifiedName& other) const { return m_impl
101 QualifiedNameImpl* m_impl; member in class:WebCore::QualifiedName
[all...]
H A DQualifiedName.cpp60 m_impl = *addResult.first;
62 m_impl->ref();
83 if (!m_impl)
88 if (m_impl->hasOneRef())
89 gNameCache->remove(m_impl);
90 m_impl->deref();
122 if (!m_impl->m_localNameUpper)
123 m_impl->m_localNameUpper = m_impl->m_localName.upper();
124 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...]
/external/webkit/Source/JavaScriptCore/wtf/text/
H A DWTFString.h110 String(StringImpl* impl) : m_impl(impl) { }
111 String(PassRefPtr<StringImpl> impl) : m_impl(impl) { }
112 String(RefPtr<StringImpl> impl) : m_impl(impl) { }
117 void swap(String& o) { m_impl.swap(o.m_impl); }
123 bool isNull() const { return !m_impl; }
124 bool isEmpty() const { return !m_impl || !m_impl->length(); }
126 StringImpl* impl() const { return m_impl.get(); }
130 if (!m_impl)
351 RefPtr<StringImpl> m_impl; member in class:WTF::String
[all...]
H A DWTFString.cpp43 : m_impl(characters ? StringImpl::create(characters, length) : 0)
60 m_impl = StringImpl::create(str, len);
65 : m_impl(characters ? StringImpl::create(characters, length) : 0)
71 : m_impl(characters ? StringImpl::create(characters) : 0)
84 if (str.m_impl) {
85 if (m_impl) {
87 if (str.length() > numeric_limits<unsigned>::max() - m_impl->length())
89 RefPtr<StringImpl> newImpl = StringImpl::createUninitialized(m_impl->length() + str.length(), data);
90 memcpy(data, m_impl->characters(), m_impl
[all...]
/external/webkit/Source/JavaScriptCore/wtf/brew/
H A DStringBrew.cpp40 m_impl = StringImpl::create(str, len);
/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/JavaScriptCore/wtf/haiku/
H A DStringHaiku.cpp38 m_impl = String::fromUTF8(string.String(), string.Length()).impl();
40 m_impl = StringImpl::empty();
/external/webkit/Source/WebCore/bindings/generic/
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();
H A DActiveDOMCallback.h53 OwnPtr<ActiveDOMObjectCallbackImpl> m_impl; member in class:WebCore::ActiveDOMCallback

Completed in 1845 milliseconds

1234