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

12 3

  /external/apache-xml/src/main/java/org/apache/xml/serializer/
TreeWalker.java 145 startNode(pos);
199 startNode(pos);
258 protected void startNode(Node node) throws org.xml.sax.SAXException
322 // System.out.println("TreeWalker#startNode: "+node.getNodeName());
334 // System.out.println("TreeWalker#startNode: attr["+i+"] = "+attrName+", "+attr.getNodeValue());
  /external/apache-xml/src/main/java/org/apache/xml/utils/
TreeWalker.java 177 startNode(pos);
230 startNode(pos);
289 protected void startNode(Node node) throws org.xml.sax.SAXException
335 // System.out.println("TreeWalker#startNode: "+node.getNodeName());
342 // System.out.println("TreeWalker#startNode: attr["+i+"] = "+attrName+", "+attr.getNodeValue());
345 // System.out.println("TreeWalker#startNode: attr["+i+"] = "+attrName+", "+attr.getNodeValue());
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRCommonTreeNodeStream.h 112 - (NSString *) toStringFromNode:(id<ANTLRBaseTree>)startNode ToNode:(id<ANTLRBaseTree>)stopNode;
ANTLRUnbufferedCommonTreeNodeStream.h 93 - (NSString *) toStringFromNode:(id)startNode toNode:(id)stopNode;
  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/sax2dtm/
SAX2DTM2.java     [all...]
SAX2DTM.java 530 int startNode = identity;
550 } while (DTM.NULL != identity && (_parent(identity) >= startNode));
    [all...]
  /external/webkit/Source/WebKit/win/
WebHTMLRepresentation.h 61 /* [in] */ IDOMNode* startNode,
  /external/webkit/Source/WebCore/inspector/front-end/
utilities.js 48 var startNode;
60 if (!startNode)
61 startNode = stayWithinNode;
69 startNode = node;
76 if (startNode)
82 if (!startNode) {
83 startNode = stayWithinNode;
87 startNode = this;
127 result.setStart(startNode, startOffset);
  /external/srec/tools/make_ve_grammar/
make_ve_grammar.c 99 nodeID startNode = 0;
205 fprintf(pFile_PCLG,"%d\t%d\thmm%d_#sil#\t-pau-\n", startNode, pauEndNode, i);
  /external/webkit/Source/WebCore/editing/
markup.cpp 126 Node* serializeNodes(Node* startNode, Node* pastEnd);
320 Node* StyledMarkupAccumulator::serializeNodes(Node* startNode, Node* pastEnd)
325 for (Node* n = startNode; n != pastEnd; n = next) {
382 // or b) ancestors that we never encountered during a pre-order traversal starting at startNode:
383 ASSERT(startNode->isDescendantOf(parent));
561 Node* startNode = updatedRange->firstNode();
572 startNode = visibleStart.next().deepEquivalent().deprecatedNode();
575 if (pastEnd && Range::compareBoundaryPoints(startNode, 0, pastEnd, 0, ec) >= 0) {
592 Node* lastClosed = accumulator.serializeNodes(startNode, pastEnd);
    [all...]
TypingCommand.cpp 175 Node* startNode = selectionForInsertion.start().deprecatedNode();
177 if (startNode && startNode->rootEditableElement() && compositionType != TextCompositionUpdate) {
181 startNode->rootEditableElement()->dispatchEvent(evt, ec);
TextIterator.cpp 243 static bool checkFormControlElement(Node* startNode)
245 Node* node = startNode;
    [all...]
ApplyStyleCommand.h 97 void applyInlineStyleToNodeRange(EditingStyle*, Node* startNode, Node* pastEndNode);
SelectionController.cpp     [all...]
Editor.cpp 539 Node* startNode = range->editingStartPosition().deprecatedNode();
540 if (startNode) {
544 for (Node* n = startNode; n && n != pastEnd; n = n->traverseNextNode()) {
656 Node* startNode;
658 startNode = m_frame->selection()->selection().start().downstream().deprecatedNode();
660 if (enclosingBlock(startNode) != enclosingBlock(endNode))
663 startNode = m_frame->selection()->selection().visibleStart().deepEquivalent().deprecatedNode();
665 RenderObject* renderer = startNode->renderer();
685 Node* startNode = enclosingNodeWithTag(m_frame->selection()->selection().start(), ulTag);
687 if (startNode && endNode && startNode == endNode
    [all...]
ReplaceSelectionCommand.cpp     [all...]
  /external/webkit/Source/WebKit/win/Interfaces/
IWebHTMLRepresentation.idl 62 - (NSAttributedString *)attributedStringFrom:(DOMNode *)startNode startOffset:(int)startOffset to:(DOMNode *)endNode endOffset:(int)endOffset;
64 HRESULT attributedStringFromDOMNodes([in] IDOMNode* startNode, [in] int startOffset, [in] IDOMNode* endNode, [in] int endOffset, [out, retval] IDataObject** attributedString);
  /external/webkit/Source/WebCore/rendering/
RenderTextControl.cpp 306 Node* startNode = 0;
314 setContainerAndOffsetForRange(node, start - offset, startNode, start);
324 if (!startNode || !endNode)
327 return Range::create(document(), startNode, start, endNode, end);
  /external/webkit/Source/WebKit/mac/WebView/
WebHTMLRepresentation.mm 278 - (NSAttributedString *)attributedStringFrom:(DOMNode *)startNode startOffset:(int)startOffset to:(DOMNode *)endNode endOffset:(int)endOffset
280 return [WebHTMLConverter editingAttributedStringFromRange:Range::create(core(startNode)->document(), core(startNode), startOffset, core(endNode), endOffset).get()];
WebFrame.mm 641 Node *startNode = core([range startContainer]);
643 if (startNode && startNode->renderer()) {
644 RenderLayer *layer = startNode->renderer()->enclosingLayer();
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/formatting/
XmlPrettyPrinter.java 130 * startNode or contain it as a descendant.
135 * @param startNode the node to start formatting at
138 * @param openTagOnly if true, only format the open tag of the startNode (and nothing
141 public void prettyPrint(int rootDepth, Node root, Node startNode, Node endNode,
143 if (startNode == null) {
144 startNode = root;
149 assert !openTagOnly || startNode == endNode;
151 mStartNode = startNode;
    [all...]
  /libcore/luni/src/main/java/java/util/concurrent/
ConcurrentLinkedDeque.java     [all...]
  /external/webkit/Source/WebCore/dom/
Node.cpp     [all...]
  /external/aac/libAACdec/src/
aacdec_hcrs.cpp 388 UINT startNode;
411 startNode = *aHuffTable[pExtendedSortedCodebook[extendedSortedCodebookIdx]];
420 *iNode++ = startNode;
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/serializer/dom3/
DOM3TreeWalker.java 272 startNode(pos);
345 startNode(pos);
395 protected void startNode(Node node) throws org.xml.sax.SAXException {
    [all...]

Completed in 624 milliseconds

12 3