HomeSort by relevance Sort by last modified time
    Searched refs:m_node (Results 26 - 50 of 52) sorted by null

12 3

  /external/chromium_org/third_party/WebKit/Source/modules/webaudio/
AudioNodeOutput.h 49 AudioNode* node() const { return m_node; }
50 AudioContext* context() { return m_node->context(); }
89 AudioNode* m_node; member in class:WebCore::AudioNodeOutput
AudioNodeInput.cpp 41 , m_node(node)
AudioNodeOutput.cpp 38 : m_node(node)
  /external/chromium_org/third_party/WebKit/Source/core/events/
EventDispatcher.cpp 53 : m_node(node)
63 m_event->eventPath().resetWith(m_node.get());
109 m_event->setTarget(EventPath::eventTargetRespectingTargetRules(m_node.get()));
112 WindowEventContext windowEventContext(m_event.get(), m_node.get(), topEventContext());
113 InspectorInstrumentationCookie cookie = InspectorInstrumentation::willDispatchEvent(&m_node->document(), *m_event, windowEventContext.window(), m_node.get(), m_event->eventPath());
134 preDispatchEventHandlerResult = m_node->preDispatchEventHandler(m_event.get());
189 m_event->setTarget(EventPath::eventTargetRespectingTargetRules(m_node.get()));
194 m_node->postDispatchEventHandler(m_event.get(), preDispatchEventHandlerResult);
201 m_node->willCallDefaultEventHandler(*m_event)
    [all...]
EventContext.h 64 Node* node() const { return m_node.get(); }
87 RefPtr<Node> m_node; member in class:WebCore::EventContext
99 return target && target->toNode() && !target->toNode()->isSVGElement() && !target->toNode()->treeScope().isInclusiveAncestorOf(m_node->treeScope());
EventPath.cpp 109 : m_node(0)
115 : m_node(node)
124 m_node = node;
138 ASSERT(m_node);
140 m_node->document().updateDistributionForNodeIfNeeded(const_cast<Node*>(m_node));
142 Node* current = m_node;
144 if (!m_node->inDocument())
147 if (current->isShadowRoot() && m_event && determineDispatchBehavior(m_event, toShadowRoot(current), m_node) == StayInsideShadowDOM)
EventPath.h 76 Node* m_node; member in class:WebCore::EventPath
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
V8LazyEventListener.cpp 61 , m_node(node)
113 if (context->isDocument() && !toDocument(context)->allowInlineEventHandlers(m_node, this, m_sourceURL, m_position.m_line)) {
173 if (m_node && m_node->isHTMLElement())
174 formElement = toHTMLElement(m_node)->formOwner();
176 v8::Handle<v8::Object> nodeWrapper = toObjectWrapper<Node>(m_node, isolate);
178 v8::Handle<v8::Object> documentWrapper = toObjectWrapper<Document>(m_node ? m_node->ownerDocument() : 0, isolate);
V8LazyEventListener.h 76 Node* m_node; member in class:WebCore::V8LazyEventListener
  /external/apache-xml/src/main/java/org/apache/xalan/transformer/
NodeSorter.java 104 v.setItem(((NodeCompareElem) nodes.elementAt(i)).m_node, i);
159 XObject r1 = k.m_selectPat.execute(m_execContext, n1.m_node,
161 XObject r2 = k.m_selectPat.execute(m_execContext, n2.m_node,
222 XObject r1 = k.m_selectPat.execute(m_execContext, n1.m_node,
224 XObject r2 = k.m_selectPat.execute(m_execContext, n2.m_node,
271 DTM dtm = support.getDTM(n1.m_node); // %OPT%
272 result = dtm.isNodeAfter(n1.m_node, n2.m_node) ? -1 : 1;
465 int m_node; field in class:NodeSorter.NodeCompareElem
493 m_node = node
    [all...]
XalanTransformState.java 40 Node m_node = null; field in class:XalanTransformState
55 m_node = n;
  /external/chromium_org/third_party/WebKit/Source/core/html/parser/
HTMLStackItem.h 61 Element* element() const { return toElement(m_node.get()); }
62 ContainerNode* node() const { return m_node.get(); }
213 : m_node(node)
220 m_tokenLocalName = m_node->localName();
221 m_namespaceURI = m_node->namespaceURI();
228 : m_node(node)
236 RefPtr<ContainerNode> m_node; member in class:WebCore::HTMLStackItem
  /external/chromium_org/third_party/WebKit/Source/core/accessibility/
AXNodeObject.h 104 virtual bool isDetached() const OVERRIDE { return !m_node; }
190 virtual Node* node() const OVERRIDE { return m_node; }
204 Node* m_node; member in class:WebCore::AXNodeObject
AXNodeObject.cpp 60 , m_node(node)
457 m_node = 0;
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/
LinkHighlight.h 89 RefPtr<WebCore::Node> m_node; member in class:blink::LinkHighlight
  /external/chromium_org/third_party/WebKit/Source/web/tests/
PopupMenuTest.cpp 76 TestPopupMenuClient() : m_selectIndex(0), m_node(0) { }
81 if (m_node) {
82 HTMLSelectElement* select = toHTMLSelectElement(m_node);
125 void setFocusedNode(Node* node) { m_node = node; }
130 Node* m_node; member in class:__anon10946::TestPopupMenuClient
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
DOMPatchSupport.cpp 63 explicit Digest(Node* node) : m_node(node) { }
67 Node* m_node; member in struct:WebCore::DOMPatchSupport::Digest
166 Node* oldNode = oldDigest->m_node;
167 Node* newNode = newDigest->m_node;
319 if (oldList[i]->m_node->hasTagName(headTag)) {
323 if (oldList[i]->m_node->hasTagName(bodyTag)) {
363 if (oldHead && newList[i]->m_node->hasTagName(headTag))
365 if (oldBody && newList[i]->m_node->hasTagName(bodyTag))
388 RefPtr<Node> node = oldMap[i].first->m_node;
453 bool result = m_domEditor->insertBefore(parentNode, digest->m_node, anchor, exceptionState)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/editing/
TextIterator.h 149 Node* m_node; member in class:WebCore::TextIterator
231 Node* node() const { return m_node; }
257 Node* m_node; member in class:WebCore::SimplifiedBackwardsTextIterator
286 // Whether m_node has advanced beyond the iteration range (i.e. m_startNode).
  /external/chromium_org/courgette/
adjustment_method.cc 279 Node* m_node = FindModelNode(p_node); local
281 if (m_node == NULL) {
286 ExtendNode(m_node, m_trace_);
290 SkipCommittedLabels(m_node);
291 if (m_node->edges_in_frequency_order.empty()) {
297 Node* m_match = m_node->edges_in_frequency_order.front();
308 m_node->edges_in_frequency_order.pop_front();
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSComputedStyleDeclaration.cpp     [all...]
CSSComputedStyleDeclaration.h 143 RefPtr<Node> m_node; member in class:WebCore::CSSComputedStyleDeclaration
SVGCSSComputedStyleDeclaration.cpp 93 Node* node = m_node.get();
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderObject.h 390 bool isRoot() const { return document().documentElement() == m_node; }
589 return isAnonymous() ? 0 : m_node;
599 void clearNode() { m_node = 0; }
606 Document& document() const { return m_node->document(); }
1083 Node* m_node; member in class:WebCore::RenderObject
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/page/
TouchAdjustment.cpp 51 : m_node(node)
55 Node* node() const { return m_node; }
60 Node* m_node; member in class:WebCore::TouchAdjustment::SubtargetGeometry
  /external/chromium_org/third_party/WebKit/Source/core/frame/
SmartClip.cpp 72 if (!m_node)

Completed in 1046 milliseconds

12 3