Searched refs:m_id (Results 1 - 25 of 49) sorted by relevance

12

/external/webkit/Source/WebKit2/Shared/
H A DWebPlatformTouchPoint.cpp39 : m_id(id)
48 encoder->encode(CoreIPC::In(m_id, m_state, m_screenPosition, m_position));
53 return decoder->decode(CoreIPC::Out(t.m_id, t.m_state, t.m_screenPosition, t.m_position));
/external/webkit/Source/WebCore/platform/android/
H A DPlatformTouchPointAndroid.cpp34 : m_id(id)
/external/webkit/Source/WebCore/platform/brew/
H A DPlatformTouchPointBrew.cpp34 : m_id(id)
/external/webkit/Source/WebCore/platform/efl/
H A DPlatformTouchPointEfl.cpp36 : m_id(id)
/external/webkit/Source/WebCore/css/
H A DCSSProperty.h36 : m_id(propID)
46 m_id = other.m_id;
54 int id() const { return m_id; }
69 int m_id : 15;
/external/webkit/Source/WebCore/inspector/
H A DInspectorWorkerResource.h50 intptr_t id() const { return m_id; }
55 : m_id(id)
61 intptr_t m_id; member in class:WebCore::InspectorWorkerResource
H A DInspectorDatabaseResource.cpp50 , m_id(nextUnusedId++)
60 jsonObject->setNumber("id", m_id);
H A DInspectorDatabaseResource.h52 int id() const { return m_id; }
58 int m_id; member in class:WebCore::InspectorDatabaseResource
H A DInspectorDOMStorageResource.cpp57 , m_id(s_nextUnusedId++)
75 jsonObject->setNumber("id", m_id);
111 m_frontend->updateDOMStorage(m_id);
H A DInspectorDOMStorageResource.h69 int id() const { return m_id; }
80 int m_id; member in class:WebCore::InspectorDOMStorageResource
H A DInspectorTimelineAgent.h72 int id() const { return m_id; }
154 int m_id; member in class:WebCore::InspectorTimelineAgent
/external/webkit/Source/WebCore/platform/chromium/
H A DTraceEvent.h52 void* m_id; member in class:WebCore::internal::ScopeTracer
58 , m_id(id)
67 PlatformBridge::traceEventEnd(m_name, m_id, m_extra.get());
/external/webkit/Source/WebCore/dom/
H A DRequestAnimationFrameCallback.h46 int m_id; member in class:WebCore::RequestAnimationFrameCallback
H A DScriptedAnimationController.cpp62 callback->m_id = id;
74 if (m_callbacks[i]->m_id == id) {
/external/webkit/Source/WebCore/platform/
H A DPlatformTouchPoint.h58 unsigned id() const { return m_id; }
64 unsigned m_id; member in class:WebCore::PlatformTouchPoint
/external/webkit/Source/WebCore/rendering/svg/
H A DRenderSVGResourceContainer.cpp39 , m_id(node->hasID() ? node->getIdAttribute() : nullAtom)
47 svgExtensionsFromNode(node())->removeResource(m_id);
82 extensions->removeResource(m_id);
83 m_id = static_cast<Element*>(node())->getIdAttribute();
157 if (!extensions->isPendingResource(m_id)) {
158 extensions->addResource(m_id, this);
162 OwnPtr<SVGDocumentExtensions::SVGPendingElements> clients(extensions->removePendingResource(m_id));
165 extensions->addResource(m_id, this);
/external/webkit/Source/WebCore/html/
H A DDataGridColumn.h47 const AtomicString& id() const { return m_id; }
48 void setId(const AtomicString& id) { m_id = id; columnChanged(); }
85 , m_id(columnID)
98 AtomicString m_id; member in class:WebCore::DataGridColumn
H A DHTMLAppletElement.h53 AtomicString m_id; member in class:WebCore::HTMLAppletElement
H A DHTMLAppletElement.cpp71 document->removeExtraNamedItem(m_id);
74 m_id = newId;
86 document->addExtraNamedItem(m_id);
97 document->removeExtraNamedItem(m_id);
/external/webkit/Source/WebCore/platform/qt/
H A DPlatformTouchPointQt.cpp33 m_id = static_cast<unsigned>(point.id());
/external/webkit/Source/WebCore/storage/
H A DIDBIndexBackendImpl.h55 ASSERT(m_id != InvalidId);
56 return m_id;
58 void setId(int64_t id) { m_id = id; }
59 bool hasValidId() const { return m_id != InvalidId; };
87 int64_t m_id; member in class:WebCore::IDBIndexBackendImpl
H A DIDBObjectStoreBackendImpl.h58 ASSERT(m_id != InvalidId);
59 return m_id;
61 void setId(int64_t id) { m_id = id; }
104 int64_t m_id; member in class:WebCore::IDBObjectStoreBackendImpl
H A DIDBDatabaseBackendImpl.cpp66 , m_id(InvalidId)
75 bool success = m_backingStore->extractIDBDatabaseMetaData(m_name, m_version, m_id);
76 ASSERT_UNUSED(success, success == (m_id != InvalidId));
77 if (!m_backingStore->setIDBDatabaseMetaData(m_name, m_version, m_id, m_id == InvalidId))
109 RefPtr<IDBObjectStoreBackendImpl> objectStore = IDBObjectStoreBackendImpl::create(m_backingStore.get(), m_id, name, keyPath, autoIncrement);
246 m_backingStore->getObjectStores(m_id, ids, names, keyPaths, autoIncrementFlags);
253 m_objectStores.set(names[i], IDBObjectStoreBackendImpl::create(m_backingStore.get(), m_id, ids[i], names[i], keyPaths[i], autoIncrementFlags[i]));
/external/webkit/Source/WebCore/platform/network/soup/
H A DSocketStreamHandle.h54 void* id() { return m_id; }
66 void* m_id; member in class:WebCore::SocketStreamHandle
H A DSocketStreamHandleSoup.cpp87 m_id = activateHandle(this);
92 reinterpret_cast<GAsyncReadyCallback>(connectedCallback), m_id);
115 reinterpret_cast<GAsyncReadyCallback>(readReadyCallback), m_id);
142 reinterpret_cast<GAsyncReadyCallback>(readReadyCallback), m_id);
225 g_source_set_callback(m_writeReadySource.get(), reinterpret_cast<GSourceFunc>(writeReadyCallback), m_id, 0);

Completed in 1720 milliseconds

12