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

1 2 3

  /external/webkit/WebKit/wx/
WebFrame.cpp 82 m_impl = new WebFramePrivate();
91 RefPtr<WebCore::Frame> newFrame = WebCore::Frame::create(container->m_impl->page, parentFrame, loaderClient);
93 m_impl->frame = newFrame.get();
106 m_impl->frame->ref();
108 m_impl->frame->init();
115 if (m_impl)
116 delete m_impl;
121 if (m_impl)
122 return m_impl->frame;
129 if (m_impl->frame && m_impl->frame->loader()
    [all...]
  /external/webkit/WebCore/bindings/v8/
ScriptString.h 42 ScriptString() : m_impl(0) {}
43 ScriptString(const String& s) : m_impl(ScriptStringImpl::create(s)) {}
44 ScriptString(const char* s) : m_impl(ScriptStringImpl::create(s)) {}
46 operator String() const { return m_impl->toString(); }
48 bool isNull() const { return !m_impl.get() || m_impl->isNull(); }
49 size_t size() const { return m_impl->size(); }
53 m_impl = ScriptStringImpl::create(s);
59 m_impl->append(s);
65 return isNull() ? v8::Handle<v8::Value>(v8::Null()) : v8::Handle<v8::Value>(m_impl->v8StringHandle())
69 RefPtr<ScriptStringImpl> m_impl; member in class:WebCore::ScriptString
    [all...]
  /external/webkit/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...]
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...]
HashSet.h 98 HashTableType m_impl; member in class:WTF::HashSet
118 m_impl.swap(other.m_impl);
124 return m_impl.size();
130 return m_impl.capacity();
136 return m_impl.isEmpty();
142 return m_impl.begin();
148 return m_impl.end();
154 return m_impl.begin();
160 return m_impl.end();
    [all...]
HashMap.h 108 HashTableType m_impl; member in class:WTF::HashMap
145 m_impl.swap(other.m_impl);
151 return m_impl.size();
157 return m_impl.capacity();
163 return m_impl.isEmpty();
169 return m_impl.begin();
175 return m_impl.end();
181 return m_impl.begin();
187 return m_impl.end()
    [all...]
RefPtrHashMap.h 116 HashTableType m_impl; member in class:WTF::HashMap
122 m_impl.swap(other.m_impl);
128 return m_impl.size();
134 return m_impl.capacity();
140 return m_impl.isEmpty();
146 return m_impl.begin();
152 return m_impl.end();
158 return m_impl.begin();
164 return m_impl.end()
    [all...]
  /external/webkit/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/WebCore/bindings/js/
JSMessageChannelCustom.cpp 39 if (MessagePort* port = m_impl->port1())
42 if (MessagePort* port = m_impl->port2())
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(Identifier(exec, m_impl->columnNames()[i]), jsValue, DontDelete | ReadOnly);
JSWorkerContextBase.h 50 WorkerContext* impl() const { return m_impl.get(); }
54 RefPtr<WorkerContext> m_impl; member in class:WebCore::JSWorkerContextBase
  /external/webkit/WebCore/bridge/jni/
JNIBridge.h 51 m_impl.init();
56 m_impl.init(e, s);
61 m_impl.init(getJNIEnv(), s);
64 const char* UTF8String() const { return m_impl.UTF8String(); }
65 const jchar* uchars() const { return m_impl.uchars(); }
66 int length() const { return m_impl.length(); }
68 operator UString() const { return m_impl.uString(); }
72 JavaStringImpl m_impl; member in class:JSC::Bindings::JavaString
  /external/webkit/WebCore/platform/text/
String.cpp 55 m_impl = StringImpl::create(str, len);
67 m_impl = StringImpl::create(str, len);
74 m_impl = StringImpl::create(str);
81 m_impl = StringImpl::create(str, length);
93 if (str.m_impl) {
94 if (m_impl) {
97 StringImpl::createUninitialized(m_impl->length() + str.length(), data);
98 memcpy(data, m_impl->characters(), m_impl->length() * sizeof(UChar));
99 memcpy(data + m_impl->length(), str.characters(), str.length() * sizeof(UChar))
    [all...]
PlatformString.h 77 String(StringImpl* i) : m_impl(i) { }
78 String(PassRefPtr<StringImpl> i) : m_impl(i) { }
79 String(RefPtr<StringImpl> i) : m_impl(i) { }
81 void swap(String& o) { m_impl.swap(o.m_impl); }
84 String(WTF::HashTableDeletedValueType) : m_impl(WTF::HashTableDeletedValue) { }
85 bool isHashTableDeletedValue() const { return m_impl.isHashTableDeletedValue(); }
106 { return m_impl ? m_impl->find(c, start) : -1; }
108 { return m_impl ? m_impl->find(matchFunction, start) : -1;
260 RefPtr<StringImpl> m_impl; member in class:WebCore::String
    [all...]
  /external/webkit/WebCore/dom/
QualifiedName.h 63 QualifiedName() : m_impl(0) { }
66 QualifiedName(const QualifiedName& other) : m_impl(other.m_impl) { ref(); }
67 const QualifiedName& operator=(const QualifiedName& other) { other.ref(); deref(); m_impl = other.m_impl; return *this; }
69 bool operator==(const QualifiedName& other) const { return m_impl == other.m_impl; }
72 bool matches(const QualifiedName& other) const { return m_impl == other.m_impl || (localName() == other.localName() && namespaceURI() == other.namespaceURI()); }
74 bool hasPrefix() const { return m_impl->m_prefix != nullAtom;
96 QualifiedNameImpl* m_impl; member in class:WebCore::QualifiedName
    [all...]
QualifiedName.cpp 60 m_impl = *addResult.first;
62 m_impl->ref();
78 if (!m_impl)
82 if (m_impl->hasOneRef())
83 gNameCache->remove(m_impl);
84 m_impl->deref();
112 if (!m_impl->m_localNameUpper)
113 m_impl->m_localNameUpper = m_impl->m_localName.upper();
114 return m_impl->m_localNameUpper
    [all...]
Attribute.cpp 39 RefPtr<Attr> r = m_impl;
Attribute.h 57 Attr* attr() const { return m_impl; }
75 : m_name(name), m_value(value), m_impl(0)
79 : m_name(nullAtom, name, nullAtom), m_value(value), m_impl(0)
86 Attr* m_impl; member in class:WebCore::Attribute
  /external/webkit/WebCore/platform/text/haiku/
StringHaiku.cpp 44 m_impl = StringImpl::empty();
46 m_impl = StringImpl::create(str, size);
  /external/webkit/WebCore/platform/text/mac/
StringMac.mm 34 m_impl = StringImpl::empty();
38 m_impl = StringImpl::create(buffer.data(), size);
  /external/webkit/WebCore/platform/haiku/
CursorHaiku.cpp 39 : m_impl(cursor)
44 : m_impl(other.m_impl)
59 m_impl = other.m_impl;
  /external/webkit/WebCore/platform/graphics/qt/
GraphicsLayerQt.cpp 560 , m_impl(PassOwnPtr<GraphicsLayerQtImpl>(new GraphicsLayerQtImpl(this)))
583 m_impl->m_pendingContent.regionToUpdate = QRegion(QRect(QPoint(0, 0), QSize(size().width(), size().height())));
584 m_impl->notifyChange(GraphicsLayerQtImpl::DisplayChange);
590 m_impl->m_pendingContent.regionToUpdate|= QRectF(rect).toAlignedRect();
591 m_impl->notifyChange(GraphicsLayerQtImpl::DisplayChange);
597 m_impl->setObjectName(name);
604 m_impl->notifyChange(GraphicsLayerQtImpl::ParentChange);
611 m_impl->notifyChange(GraphicsLayerQtImpl::ChildrenChange);
618 m_impl->notifyChange(GraphicsLayerQtImpl::ChildrenChange);
626 m_impl->notifyChange(GraphicsLayerQtImpl::ChildrenChange)
    [all...]
  /external/webkit/WebCore/platform/wince/
CursorWince.cpp 41 : m_impl(other.m_impl)
46 : m_impl(CursorNone)
56 m_impl = other.m_impl;
61 : m_impl(c)
  /external/webkit/WebCore/platform/gtk/
CursorGtk.cpp 60 : m_impl(other.m_impl)
62 if (m_impl)
63 gdk_cursor_ref(m_impl);
69 m_impl = gdk_cursor_new_from_pixbuf(gdk_display_get_default(), pixbuf, hotSpot.x(), hotSpot.y());
75 if (m_impl)
76 gdk_cursor_unref(m_impl);
81 gdk_cursor_ref(other.m_impl);
82 gdk_cursor_unref(m_impl);
83 m_impl = other.m_impl
    [all...]
  /external/webkit/WebCore/platform/text/qt/
StringQt.cpp 39 m_impl = StringImpl::create(reinterpret_cast<const UChar*>(qstr.constData()), qstr.length());
46 m_impl = StringImpl::create(reinterpret_cast<const UChar*>(ref.unicode()), ref.length());

Completed in 358 milliseconds

1 2 3