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

1 2 3

  /external/webkit/Source/WebCore/editing/
DeleteFromTextNodeCommand.cpp 36 , m_node(node)
40 ASSERT(m_node);
41 ASSERT(m_offset <= m_node->length());
42 ASSERT(m_offset + m_count <= m_node->length());
47 ASSERT(m_node);
49 if (!m_node->rendererIsEditable())
53 m_text = m_node->substringData(m_offset, m_count, ec);
59 document()->axObjectCache()->nodeTextChangeNotification(m_node->renderer(), AXObjectCache::AXTextDeleted, m_offset, m_count);
61 m_node->deleteData(m_offset, m_count, ec);
66 ASSERT(m_node);
    [all...]
InsertIntoTextNodeCommand.cpp 38 , m_node(node)
42 ASSERT(m_node);
43 ASSERT(m_offset <= m_node->length());
49 if (!m_node->rendererIsEditable())
53 RenderText* renderText = toRenderText(m_node->renderer());
59 m_node->insertData(m_offset, m_text, ec);
62 document()->axObjectCache()->nodeTextChangeNotification(m_node->renderer(), AXObjectCache::AXTextInserted, m_offset, m_text.length());
67 if (!m_node->rendererIsEditable())
72 document()->axObjectCache()->nodeTextChangeNotification(m_node->renderer(), AXObjectCache::AXTextDeleted, m_offset, m_text.length());
75 m_node->deleteData(m_offset, m_text.length(), ec)
    [all...]
RemoveNodeCommand.cpp 36 , m_node(node)
38 ASSERT(m_node);
39 ASSERT(m_node->parentNode());
44 ContainerNode* parent = m_node->parentNode();
49 m_refChild = m_node->nextSibling();
52 m_node->remove(ec);
63 parent->insertBefore(m_node.get(), refChild.get(), ec);
AppendNodeCommand.cpp 37 , m_node(node)
40 ASSERT(m_node);
41 ASSERT(!m_node->parentNode());
63 m_parent->appendChild(m_node.get(), ec);
66 sendAXTextChangedIgnoringLineBreaks(m_node.get(), AXObjectCache::AXTextInserted);
76 sendAXTextChangedIgnoringLineBreaks(m_node.get(), AXObjectCache::AXTextDeleted);
79 m_node->remove(ec);
RemoveNodePreservingChildrenCommand.cpp 36 , m_node(node)
38 ASSERT(m_node);
44 for (Node* child = m_node->firstChild(); child; child = child->nextSibling())
51 insertNodeBefore(child.release(), m_node);
53 removeNode(m_node);
TextIterator.cpp 328 m_node = r->firstNode();
329 if (!m_node)
331 setUpFullyClippedStack(m_fullyClippedStack, m_node);
332 m_offset = m_node == m_startContainer ? m_startOffset : 0;
351 m_positionNode = m_node;
383 // Emit the extra newline, and position it *inside* m_node, after m_node's
389 Node* baseNode = m_node->lastChild() ? m_node->lastChild() : m_node;
    [all...]
RemoveNodePreservingChildrenCommand.h 45 RefPtr<Node> m_node; member in class:WebCore::RemoveNodePreservingChildrenCommand
AppendNodeCommand.h 47 RefPtr<Node> m_node; member in class:WebCore::AppendNodeCommand
DeleteFromTextNodeCommand.h 48 RefPtr<Text> m_node; member in class:WebCore::DeleteFromTextNodeCommand
InsertIntoTextNodeCommand.h 48 RefPtr<Text> m_node; member in class:WebCore::InsertIntoTextNodeCommand
RemoveNodeCommand.h 46 RefPtr<Node> m_node; member in class:WebCore::RemoveNodeCommand
  /external/webkit/Source/WebKit2/WebProcess/InjectedBundle/DOM/
InjectedBundleNodeHandle.cpp 85 : m_node(node)
91 domHandleCache().remove(m_node.get());
96 return m_node.get();
101 return getOrCreate(m_node->document());
109 if (!m_node->isElementNode())
112 return static_cast<Element*>(m_node.get())->boundsInWindowSpace();
117 return m_node.get()->renderRect(isReplaced);
122 if (!m_node->hasTagName(inputTag))
125 static_cast<HTMLInputElement*>(m_node.get())->setValueForUser(value);
130 if (!m_node->hasTagName(inputTag)
    [all...]
  /external/webkit/Source/WebCore/dom/
NodeWithIndex.h 38 : m_node(node)
44 Node* node() const { return m_node; }
49 m_index = m_node->nodeIndex();
52 ASSERT(m_index == static_cast<int>(m_node->nodeIndex()));
57 Node* m_node; member in class:WebCore::NodeWithIndex
EventContext.cpp 38 : m_node(node)
48 m_node->handleLocalEvents(event);
EventContext.h 48 RefPtr<Node> m_node; member in class:WebCore::EventContext
55 return m_node.get();
EventDispatcher.cpp 167 if (m_node->shadowHost() == relatedTarget.get())
169 } else if ((*firstDivergentBoundary) == m_node.get()) {
200 Node* target = m_node.get();
228 : m_node(node)
239 if (!m_node->inDocument())
247 Node* ancestor = m_node.get();
281 event->setTarget(eventTargetRespectingSVGTargetRules(m_node.get()));
290 WindowEventContext windowContext(event.get(), m_node.get(), topEventContext());
292 InspectorInstrumentationCookie cookie = InspectorInstrumentation::willDispatchEvent(m_node->document(), *event, windowContext.window(), m_node.get(), m_ancestors)
    [all...]
EventDispatcher.h 69 RefPtr<Node> m_node; member in class:WebCore::EventDispatcher
77 return m_node.get();
  /external/webkit/Source/JavaScriptCore/runtime/
ScopeChain.h 90 : m_node(node)
94 WriteBarrier<JSObject> const & operator*() const { return m_node->object; }
97 ScopeChainIterator& operator++() { m_node = m_node->next.get(); return *this; }
101 bool operator==(const ScopeChainIterator& other) const { return m_node == other.m_node; }
102 bool operator!=(const ScopeChainIterator& other) const { return m_node != other.m_node; }
105 ScopeChainNode* m_node; member in class:JSC::ScopeChainIterator
  /external/webkit/Source/WebCore/xml/
NativeXPathNSResolver.cpp 38 : m_node(node)
53 return m_node ? m_node->lookupNamespaceURI(prefix) : String();
  /external/webkit/Source/JavaScriptCore/parser/
NodeInfo.h 29 T m_node; member in struct:JSC::NodeInfo
45 T m_node; member in struct:JSC::NodeDeclarationInfo
  /external/webkit/Source/WebKit/win/
DOMCoreClasses.cpp 108 if (!m_node)
111 *result = BString(m_node->nodeName()).release();
118 if (!m_node)
120 WTF::String nodeValueStr = m_node->nodeValue();
145 if (!m_node || !m_node->parentNode())
147 *result = DOMNode::createInstance(m_node->parentNode());
154 if (!m_node)
160 *result = DOMNodeList::createInstance(m_node->childNodes().get());
191 if (!m_node)
    [all...]
  /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/webkit/Source/WebCore/css/
CSSMutableStyleDeclaration.cpp 44 : m_node(0)
54 , m_node(0)
65 , m_node(0)
77 , m_node(0)
102 // don't attach it to the same node, just leave the current m_node value
494 return m_node && m_node->isStyledElement() && static_cast<StyledElement*>(m_node)->inlineStyleDecl() == this;
499 if (m_node) {
501 m_node->setNeedsStyleRecalc(InlineStyleChange)
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/texmap/
GraphicsLayerTextureMapper.cpp 29 , m_node(new TextureMapperNode())
358 m_node->syncCompositingState(this, false);
365 m_node->syncCompositingState(this, true);
372 return m_node.get();

Completed in 437 milliseconds

1 2 3