HomeSort by relevance Sort by last modified time
    Searched defs:node (Results 1426 - 1450 of 2129) sorted by null

<<51525354555657585960>>

  /external/chromium_org/third_party/WebKit/Source/core/editing/
ReplaceSelectionCommand.cpp 73 Node* firstChild() const;
74 Node* lastChild() const;
81 void removeNode(PassRefPtrWillBeRawPtr<Node>);
82 void removeNodePreservingChildren(PassRefPtrWillBeRawPtr<Node>);
85 PassRefPtrWillBeRawPtr<Element> insertFragmentForTestRendering(Node* rootEditableNode);
86 void removeUnrenderedNodes(Node*);
88 void removeInterchangeNodes(Node*);
90 void insertNodeBefore(PassRefPtrWillBeRawPtr<Node>, Node* refNode);
98 static bool isInterchangeNewlineNode(const Node *node
296 Node* node = container->firstChild(); local
647 RefPtrWillBeRawPtr<Node> node = prpNode; local
1090 RefPtrWillBeRawPtr<Node> node = refNode->nextSibling(); local
1308 RefPtrWillBeRawPtr<Node> node = document().createEditingTextNode(collapseWhiteSpace ? nonBreakingSpaceString() : " "); local
1332 RefPtrWillBeRawPtr<Node> node = document().createEditingTextNode(collapseWhiteSpace ? nonBreakingSpaceString() : " "); local
    [all...]
SpellChecker.cpp 109 for (Node* node = &toLocalFrame(frame)->document()->rootNode(); node; node = NodeTraversal::next(*node)) {
110 node->setAlreadySpellChecked(false);
193 Node* topNode = highestEditableRoot(position);
203 // else we were already at the start of the editable node
212 Node* searchEndNodeAfterWrap = spellingSearchRange->endContainer();
406 // If we're not in an editable node, bail
809 Node* node = findFirstMarkable(m_frame.selection().start().deprecatedNode()); local
    [all...]
htmlediting.cpp 65 // Atomic means that the node has no children, or has children which are ignored for the
67 bool isAtomicNode(const Node *node)
69 return node && (!node->hasChildren() || editingIgnoresContent(node));
84 Node* nodeA = commonScope->ancestorInThisScope(a.containerNode());
89 Node* nodeB = commonScope->ancestorInThisScope(b.containerNode());
116 Node* highestEditableRoot(const Position& position, EditableType editableType)
118 Node* node = position.deprecatedNode() local
156 Node* node = p.parentAnchoredEquivalent().anchorNode(); local
172 Node* node = pos.deprecatedNode(); local
179 Node* node = p.deprecatedNode(); local
191 Node* node = p.containerNode(); local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/parser/
HTMLTreeBuilder.cpp 222 // to insert a text node (as opposed to inserting an empty text node).
303 // and instead use the DocumentFragment as a root node.
956 // http://www.whatwg.org/specs/web-apps/current-work/#adjusted-current-node
1519 HTMLElementStack::ElementRecord* node = furthestBlock; local
1790 RefPtrWillBeRawPtr<Element> node = m_tree.takeForm(); local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorOverlay.cpp 37 #include "core/dom/Node.h"
147 static bool buildNodeQuads(Node* node, Vector<FloatQuad>& quads)
149 RenderObject* renderer = node->renderer();
150 LocalFrame* containingFrame = node->document().frame();
161 if (renderer->node() && renderer->node()->isSVGElement() && !renderer->isSVGRoot()) {
222 static void buildNodeHighlight(Node* node, const HighlightConfig& highlightConfig, Highlight* highlight)
224 RenderObject* renderer = node->renderer()
645 Node* node = m_highlightNode.get(); local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderTheme.cpp 616 Node* node = renderer->node();
617 if (!node)
621 if (node->focused() && !node->shouldHaveFocusAppearance())
676 Node* node = o->node(); local
677 if (!node)
703 Node* node = o->node(); local
711 Node* node = o->node(); local
730 Node* node = o->node(); local
740 Node* node = o->node(); local
749 Node* node = o->node(); local
760 Node* node = o->node(); local
829 Node* node = o->node(); local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/timeline/
Layers3DView.js 699 var node = activeObject && activeObject.layer && activeObject.layer.nodeForSelfOrAncestor(); variable
702 if (node)
703 contextMenu.appendApplicableItems(node);
  /external/chromium_org/third_party/WebKit/Source/web/
WebAXObject.cpp 43 #include "core/dom/Node.h"
849 WebNode WebAXObject::node() const function in class:blink::WebAXObject
854 Node* node = m_private->node();
855 if (!node)
858 return WebNode(node);
882 Node* node = m_private->node(); local
898 Node* node = m_private->node(); local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/wtf/
LinkedHashSet.h 107 // If we take a copy of a node we can't copy the next and prev pointers,
145 typedef LinkedHashSetNode<Value> Node;
150 typedef HashTable<Node, Node, IdentityExtractor,
240 AddResult insertBefore(iterator it, ValuePeekInType newValue) { return m_impl.template add<NodeHashFunctions>(newValue, it.node()); }
254 Node* anchor() { return reinterpret_cast<Node*>(&m_anchor); }
255 const Node* anchor() const { return reinterpret_cast<const Node*>(&m_anchor); }
256 Node* firstNode() { return reinterpret_cast<Node*>(m_anchor.m_next);
346 Node* node() { return const_cast<Node*>(m_iterator.node()); } function in class:WTF::LinkedHashSetIterator
386 const Node* node() const { return static_cast<const Node*>(m_position); } function in class:WTF::LinkedHashSetConstIterator
565 LinkedHashSet::Node* node = m_impl.template lookup<LinkedHashSet::NodeHashFunctions, ValuePeekInType>(value); local
574 const LinkedHashSet::Node* node = m_impl.template lookup<LinkedHashSet::NodeHashFunctions, ValuePeekInType>(value); local
591 const LinkedHashSet::Node* node = m_impl.template lookup<TranslatedFunctions, const T&>(value); local
602 const LinkedHashSet::Node* node = m_impl.template lookup<TranslatedFunctions, const T&>(value); local
638 Node* node = result.storedValue; local
650 Node* node = result.storedValue; local
    [all...]
ListHashSet.h 82 typedef ListHashSetNode<ValueArg, Allocator> Node;
83 typedef HashTraits<Node*> NodeTraits;
87 typedef HashTable<Node*, Node*, IdentityExtractor, NodeHash, NodeTraits, NodeTraits, typename Allocator::TableAllocator> ImplType;
88 typedef HashTableIterator<Node*, Node*, IdentityExtractor, NodeHash, NodeTraits, NodeTraits, typename Allocator::TableAllocator> ImplTypeIterator;
89 typedef HashTableConstIterator<Node*, Node*, IdentityExtractor, NodeHash, NodeTraits, NodeTraits, typename Allocator::TableAllocator> ImplTypeConstIterator;
111 HashTableAddResult(Node* storedValue, bool isNewEntry) : storedValue(storedValue), isNewEntry(isNewEntry) { }
112 Node* storedValue
468 Node* node() { return m_iterator.node(); } function in class:WTF::ListHashSetIterator
535 Node* node() { return m_position; } function in class:WTF::ListHashSetConstIterator
576 Node* node() { return m_iterator.node(); } function in class:WTF::ListHashSetReverseIterator
642 Node* node() { return m_position; } function in class:WTF::ListHashSetConstReverseIterator
828 Node* node = *result.storedValue; local
840 Node* node = *result.storedValue; local
    [all...]
  /external/chromium_org/third_party/icu/source/i18n/
plurrule.cpp 1153 RuleChain *node=header; local
1161 while(node!=NULL) {
1162 fKeywordNames.addElement(new UnicodeString(node->keyword), status);
1166 if (node->keyword == PLURAL_KEYWORD_OTHER) {
1169 node=node->next;
  /external/chromium_org/third_party/libxml/src/
debugXML.c 46 xmlNodePtr node; /* current node */ member in struct:_xmlDebugCtxt
54 static void xmlCtxtDumpNodeList(xmlDebugCtxtPtr ctxt, xmlNodePtr node);
66 ctxt->node = NULL;
83 * @node: the node
84 * @ns: the namespace node
86 * Check that a given namespace is in scope on a node.
90 * an ancestor node.
93 xmlNsCheckScope(xmlNodePtr node, xmlNsPtr ns
2682 xmlNodePtr node; local
    [all...]
pattern.c 20 * and indicating we are on / (the document node), probably need
64 * xmlElementType enums, to indicate a node of any type.
92 int nodeType; /* type of node */
139 xmlNodePtr node; member in struct:_xmlStepState
181 xmlNodePtr elem; /* the current node if any */
460 xmlPatPushState(xmlStepStates *states, int step, xmlNodePtr node) {
477 states->states[states->nbstates++].node = node;
479 fprintf(stderr, "Push: %d, %s\n", step, node->name);
487 * @node: a nod
    [all...]
schematron.c 12 * - multiple rules applying in a single pattern/node
47 #define IS_SCHEMATRON(node, elem) \
48 ((node != NULL) && (node->type == XML_ELEMENT_NODE ) && \
49 (node->ns != NULL) && \
50 (xmlStrEqual(node->name, (const xmlChar *) elem)) && \
51 ((xmlStrEqual(node->ns->href, xmlSchematronNs)) || \
52 (xmlStrEqual(node->ns->href, xmlOldSchematronNs))))
54 #define NEXT_SCHEMATRON(node) \
55 while (node != NULL) {
88 xmlNodePtr node; \/* the node in the tree *\/ member in struct:_xmlSchematronTest
104 xmlNodePtr node; \/* the node in the tree *\/ member in struct:_xmlSchematronRule
1243 xmlNodePtr node = NULL; local
1294 xmlNodePtr child, node; local
    [all...]
xinclude.c 56 xmlNodePtr ref; /* the node making the reference in the source */
106 xmlXIncludeErrMemory(xmlXIncludeCtxtPtr ctxt, xmlNodePtr node,
111 __xmlRaiseError(NULL, NULL, NULL, ctxt, node, XML_FROM_XINCLUDE,
120 * @node: the context node
127 xmlXIncludeErr(xmlXIncludeCtxtPtr ctxt, xmlNodePtr node, int error,
132 __xmlRaiseError(NULL, NULL, NULL, ctxt, node, XML_FROM_XINCLUDE,
142 * @node: the context node
149 xmlXIncludeWarn(xmlXIncludeCtxtPtr ctxt, xmlNodePtr node, int error
1690 xmlNodePtr node; local
1793 xmlNodePtr node; local
    [all...]
xpointer.c 107 ctxt->context->lastError.node = ctxt->context->debugNode;
130 * @cur: the node
152 * @cur: the node
154 * Returns the index of the node in its parent children list, -1
174 * @cur: the node
207 * @node1: the first node
209 * @node2: the second node
236 * @node: the xmlNodePtr
237 * @indx: the indx within the node
244 xmlXPtrNewPoint(xmlNodePtr node, int indx)
1829 xmlNodePtr node = tmp->user; local
1919 xmlNodePtr node = tmp->user2; local
1978 xmlNodePtr node = (xmlNodePtr) loc->user; local
2087 xmlNodePtr node = (xmlNodePtr) loc->user; local
2115 xmlNodePtr node = (xmlNodePtr) loc->user; local
    [all...]
  /external/chromium_org/third_party/libxml/src/include/libxml/
xpath.h 75 * A node-set (an unordered collection of nodes without duplicates).
89 * - node-set
183 * @cur: the previous node being explored on that axis
189 * Returns the next node in that axis or NULL if at the end of the axis.
274 * - a node (the context node)
275 * - a node list (the context node list)
281 * The node may be modified when the context is passed to libxml2
288 xmlNodePtr node; /* The current node * member in struct:_xmlXPathContext
    [all...]
  /external/chromium_org/third_party/libxslt/libxslt/
pattern.c 72 xmlNodePtr node; member in struct:_xsltStepState
479 int step, xmlNodePtr node) {
500 states->states[states->nbstates++].node = node;
502 fprintf(stderr, "Push: %d, %s\n", step, node->name);
511 * @node: a node
515 * Test whether the node matches the pattern, do a direct evalutation
522 xmlNodePtr node, xmlNsPtr *nsList, int nsNr) {
531 doc = node->doc
    [all...]
xsltutils.c 64 * @node: the node
70 * Search and get the value of an attribute associated to a node
82 xsltGetCNsProp(xsltStylesheetPtr style, xmlNodePtr node,
90 if ((node == NULL) || (style == NULL) || (style->dict == NULL))
93 prop = node->properties;
95 return xmlGetProp(node, name);
104 (((prop->ns == NULL) && (node->ns != NULL) &&
105 (xmlStrEqual(node->ns->href, nameSpace))) ||
109 tmp = xmlNodeListGetString(node->doc, prop->children, 1)
924 xmlNodePtr node; local
1097 xmlNodePtr node; local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/glsl/
ast_function.cpp 85 foreach_list(node, parameters) {
86 const ir_variable *const param = (ir_variable *) node;
413 foreach_list (node, &f->signatures) {
414 ir_function_signature *sig = (ir_function_signature *) node;
659 foreach_list(node, &actual_parameters) {
660 ir_rvalue *rhs = (ir_rvalue *) node;
681 foreach_list(node, parameters) {
682 ir_constant *constant = ((ir_instruction *) node)->as_constant();
685 node->replace_with(constant);
756 foreach_list(node, parameters)
1183 exec_node *node = parameters->head; local
1270 exec_node *node = actual_parameters.head; local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
attrib.c 145 * Node for the attribute stack.
185 * Allocate new attribute node of given type/kind. Attach payload data.
1551 struct gl_attrib_node *node, *next; local
    [all...]
  /external/chromium_org/ui/views/controls/tree/
tree_view.cc 143 void TreeView::StartEditing(TreeModelNode* node) {
144 DCHECK(node);
148 if (model_->GetParent(node))
149 Expand(model_->GetParent(node));
150 // Select the node, else if the user commits the edit the selection reverts.
151 SetSelectedNode(node);
152 if (GetSelectedNode() != node)
223 InternalNode* node = model_node ? GetInternalNodeForModelNode(
226 bool changed = (selected_node_ != node);
229 selected_node_ = node;
301 InternalNode* node = GetInternalNodeForModelNode( local
329 InternalNode* node = GetNodeByRow(row, &depth); local
396 InternalNode* node = GetNodeByRow(row, &depth); local
471 InternalNode* node = local
642 InternalNode* node = GetNodeByRow(row, &depth); local
944 InternalNode* node = GetNodeByRow(row_count - 1, &depth); local
    [all...]
  /external/chromium_org/v8/src/
ast.cc 24 // All the Accept member functions for each syntax tree node type.
33 // Implementation of other node functionality.
748 RegExpTree* node = nodes->at(i); local
749 if (node->IsAnchoredAtStart()) { return true; }
750 if (node->max_match() > 0) { return false; }
759 RegExpTree* node = nodes->at(i); local
760 if (node->IsAnchoredAtEnd()) { return true; }
761 if (node->max_match() > 0) { return false; }
1003 RegExpTree* node = nodes->at(i); local
1004 int node_min_match = node->min_match()
    [all...]
  /external/chromium_org/v8/test/cctest/
test-cpu-profiler.cc 296 const ProfileNode* node = profile->top_down()->root(); local
297 while (node->children()->length() > 0) {
298 node = node->children()->last();
439 static void CheckChildrenNames(const v8::CpuProfileNode* node,
441 int count = node->GetChildrenCount();
443 v8::Handle<v8::String> name = node->GetChild(i)->GetFunctionName();
448 CHECK_NE(name, node->GetChild(j)->GetFunctionName());
455 const v8::CpuProfileNode* node,
457 int count = node->GetChildrenCount()
    [all...]
test-regexp.cc 525 return compile_data.node;
535 RegExpNode* node = Compile(input, multiline, is_ascii, &zone); local
536 USE(node);
539 RegExpEngine::DotPrint(input, node, false);
    [all...]

Completed in 2450 milliseconds

<<51525354555657585960>>