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

1 2 3 4

  /external/webkit/Source/WebKit/wx/
WebFrame.cpp 84 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->frame && m_impl->frame->loader()
    [all...]
WebEdit.cpp 59 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();
WebView.cpp 375 m_impl = new WebViewPrivate();
388 m_impl->page = new WebCore::Page(pageClients);
389 editorClient->setPage(m_impl->page);
395 WebCore::Settings* settings = m_impl->page->settings();
428 delete m_impl->page;
429 m_impl->page = 0;
437 if (m_impl && m_impl->page && m_impl->page->focusController())
438 m_impl->page->focusController()->setActive(event.GetActive())
    [all...]
  /external/webkit/Source/JavaScriptCore/wtf/
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...]
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...]
HashMap.h 109 HashTableType m_impl; member in class:WTF::HashMap
147 m_impl.swap(other.m_impl);
153 return m_impl.size();
159 return m_impl.capacity();
165 return m_impl.isEmpty();
171 return m_impl.begin();
177 return m_impl.end();
183 return m_impl.begin();
189 return m_impl.end()
    [all...]
RefPtrHashMap.h 120 HashTableType m_impl; member in class:WTF::HashMap
126 m_impl.swap(other.m_impl);
132 return m_impl.size();
138 return m_impl.capacity();
144 return m_impl.isEmpty();
150 return m_impl.begin();
156 return m_impl.end();
162 return m_impl.begin();
168 return m_impl.end()
    [all...]
  /external/webkit/Source/JavaScriptCore/wtf/text/
WTFString.cpp 43 : 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->length() * sizeof(UChar))
    [all...]
WTFString.h 110 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...]
  /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/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...]
  /external/webkit/Source/WebCore/bindings/scripts/test/CPP/
WebDOMTestInterface.cpp 43 , 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;
WebDOMTestMediaQueryListListener.cpp 42 , 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;
WebDOMTestSerializedScriptValueInterface.cpp 44 , 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;
WebDOMTestCallback.cpp 54 , 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;
  /external/webkit/Source/WebCore/dom/
QualifiedName.h 62 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 == other.m_impl || (localName() == other.localName() && namespaceURI() == other.namespaceURI());
101 QualifiedNameImpl* m_impl; member in class:WebCore::QualifiedName
    [all...]
QualifiedName.cpp 60 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->m_localNameUpper
    [all...]
  /external/webkit/Source/WebCore/platform/text/cf/
StringCF.cpp 37 m_impl = StringImpl::empty();
41 m_impl = StringImpl::create(buffer.data(), size);
47 if (!m_impl)
50 return m_impl->createCFString();
  /external/webkit/Source/WebKit/chromium/src/
GraphicsContext3DChromium.cpp 125 m_impl.set(webContext);
137 return context->m_internal->m_impl.get();
142 return m_impl.get();
147 return m_impl->getPlatformTextureId();
152 m_impl->prepareTexture();
189 if (canvasBitmap->width() == m_impl->width() && canvasBitmap->height() == m_impl->height()) {
198 if (m_resizingBitmap.width() != m_impl->width() || m_resizingBitmap.height() != m_impl->height()) {
200 m_impl->width()
    [all...]
  /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/WebCore/bindings/generic/
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/cpp/
WebDOMEventTarget.cpp 66 , m_impl(0)
72 , m_impl(new WebDOMEventTargetPrivate(impl))
79 m_impl = copy.impl() ? new WebDOMEventTargetPrivate(copy.impl()) : 0;
84 delete m_impl;
85 m_impl = 0;
90 return m_impl ? m_impl->impl.get() : 0;
203 delete m_impl;
204 m_impl = copy.impl() ? new WebDOMEventTargetPrivate(copy.impl()) : 0;
  /external/webkit/Source/WebCore/bindings/js/
JSSQLResultSetRowListCustom.cpp 50 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);

Completed in 332 milliseconds

1 2 3 4