Searched refs:previous (Results 1 - 25 of 356) sorted by last modified time

1234567891011>>

/external/webkit/Source/WebKit/android/WebCoreSupport/autofill/
H A DFormManagerAndroid.cpp159 // a previous node of |element|.
162 Node* previous = element.previousSibling(); local
163 if (!previous)
166 if (previous->isTextNode()) {
167 inferred_label = WTFStringToString16(previous->nodeValue());
171 // If we didn't find text, check for previous paragraph.
174 if (inferred_label.empty() && previous->isElementNode()) {
175 Element* element = static_cast<Element*>(previous);
180 // If we didn't find paragraph, check for previous paragraph to this.
184 Node* sibling = previous
246 Node* previous = parent; local
292 Node* previous = parent->previousSibling(); local
[all...]
/external/webkit/Source/WebKit/android/content/
H A Daddress_detector.cpp401 char16 previous = SafePreviousChar(it_, begin_); local
402 if (IsAsciiDigit(previous)) {
412 char16 last_digit = previous;
/external/webkit/Source/WebKit/android/jni/
H A DWebViewCore.cpp1743 VisiblePosition nextPos = forward ? pos.next() : pos.previous();
1799 VisiblePosition prevEndPosition(endPosition.previous());
2123 /* We may want to cache the previous values and only send the notification
4321 // Clear previous active match.
4332 // Start from the previous active match.
/external/webkit/Source/WebKit/mac/Plugins/Hosted/
H A DNetscapePluginHostProxy.mm111 mach_port_t previous;
113 CFMachPortGetPort(m_deadNameNotificationPort.get()), MACH_MSG_TYPE_MAKE_SEND_ONCE, &previous);
114 ASSERT(previous == MACH_PORT_NULL);
/external/webkit/Source/WebKit/mac/WebView/
H A DWebFrame.mm510 // FIXME: This is always "for interchange". Is that right? See the previous method.
1119 if (UChar previousChar = startVisiblePos.previous().characterAfter())
/external/webkit/Source/WebKit/mac/icu/unicode/
H A Duiter.h162 * Check if previous() can still return another code unit.
165 * @return boolean value for whether previous() can still return another code unit
205 * Function type declaration for UCharIterator.previous().
212 * @return the previous code unit (after pre-decrementing the current index)
326 * limit, and previous() only checks the current index against the start,
411 * (public) Check if previous() can still return another code unit.
445 UCharIteratorPrevious *previous; member in struct:UCharIterator
514 * Helper function for UCharIterator to get the previous code point.
521 * @return the previous code point (after pre-decrementing the current index)
/external/webkit/Tools/Scripts/webkitpy/thirdparty/
H A DBeautifulSoup.py118 def setup(self, parent=None, previous=None):
122 self.previous = previous
158 if self.previous:
159 self.previous.next = nextElement
161 nextElement.previous = self.previous
162 self.previous = None
204 newChild.previous = self
209 newChild.previous
[all...]
/external/webkit/Source/JavaScriptGlue/icu/unicode/
H A Duiter.h162 * Check if previous() can still return another code unit.
165 * @return boolean value for whether previous() can still return another code unit
205 * Function type declaration for UCharIterator.previous().
212 * @return the previous code unit (after pre-decrementing the current index)
326 * limit, and previous() only checks the current index against the start,
411 * (public) Check if previous() can still return another code unit.
445 UCharIteratorPrevious *previous; member in struct:UCharIterator
514 * Helper function for UCharIterator to get the previous code point.
521 * @return the previous code point (after pre-decrementing the current index)
/external/webkit/Source/WebCore/accessibility/
H A DAccessibilityObject.cpp223 tempPosition = startPosition.previous();
250 VisiblePosition prevVisiblePos = visiblePos.previous();
262 prevVisiblePos = prevVisiblePos.previous();
515 VisiblePosition prevVisiblePos = visiblePos.previous();
550 VisiblePosition prevVisiblePos = visiblePos.previous();
560 prevVisiblePos = prevVisiblePos.previous();
602 VisiblePosition previousVisiblePos = visiblePos.previous();
637 VisiblePosition previousPos = visiblePos.previous();
H A DAccessibilityObject.h512 VisiblePosition previousVisiblePosition(const VisiblePosition& visiblePos) const { return visiblePos.previous(); }
/external/webkit/Source/WebCore/accessibility/gtk/
H A DAccessibilityObjectWrapperAtk.cpp2635 RefPtr<Range> range = makeRange(startPosition, endPosition.previous());
/external/webkit/Source/WebCore/bindings/v8/
H A DIntrusiveDOMWrapperMap.h81 Chunk* previous = last->m_previous; local
82 if (!previous)
85 clearEntries(previous->m_entries, previous->m_entries + CHUNK_SIZE);
86 last = previous;
106 explicit Chunk(Chunk* previous) : m_previous(previous) { } argument
H A DV8NPUtils.cpp131 ExceptionHandlerInfo* previous; member in struct:WebCore::ExceptionHandlerInfo
141 info->previous = topHandler;
151 topHandler = topHandler->previous;
/external/webkit/Source/WebCore/dom/
H A DNode.h242 void setPreviousSibling(Node* previous) { m_previous = previous; } argument
255 // Returns the previous leaf node or 0 if there are no more.
370 // removed from its previous scope. Do not use to change documents.
641 // removed from its previous document.
H A DPosition.cpp240 Position Position::previous(PositionMoveType moveType) const function in class:WebCore::Position
341 // 2. It is the last position in the node and the previous visually equivalent position
343 // 3. It is an editable position and both the next and previous visually equivalent
427 currentPos = currentPos.previous();
H A DPosition.h128 Position previous(PositionMoveType = CodePoint) const;
/external/webkit/Source/WebCore/editing/
H A DApplyBlockElementCommand.cpp75 setEndingSelection(VisibleSelection(visibleStart, visibleEnd.previous(CannotCrossEditingBoundary)));
189 if (startStyle->preserveNewline() && isNewLineAtPosition(start) && !isNewLineAtPosition(start.previous()) && start.offsetInContainerNode() > 0)
190 start = startOfParagraph(end.previous()).deepEquivalent();
216 if (!isNewLineAtPosition(end.previous()) && isNewLineAtPosition(end))
H A DBreakBlockquoteCommand.cpp103 pos = pos.previous();
H A DCompositeEditCommand.cpp500 VisiblePosition previousVisiblePos(visiblePos.previous());
501 Position previous(previousVisiblePos.deepEquivalent());
503 if (isCollapsibleWhitespace(previousVisiblePos.characterAfter()) && previous.deprecatedNode()->isTextNode() && !previous.deprecatedNode()->hasTagName(brTag))
504 replaceTextInNode(static_cast<Text*>(previous.deprecatedNode()), previous.deprecatedEditingOffset(), 1, nonBreakingSpaceString());
872 VisiblePosition beforeParagraph = startOfParagraphToMove.previous();
950 VisiblePosition beforeParagraph = startOfParagraphToMove.previous(CannotCrossEditingBoundary);
1116 VisiblePosition previous(caret.previous(CannotCrossEditingBoundar
[all...]
H A DDeleteSelectionCommand.cpp113 // For HRs, we'll get a position at (HR,1) when hitting delete from the beginning of the previous line, or (HR,0) when forward deleting,
236 VisiblePosition visiblePos = VisiblePosition(m_upstreamStart, VP_DEFAULT_AFFINITY).previous();
395 if (node == m_startBlock && !isEndOfBlock(VisiblePosition(firstPositionInNode(m_startBlock.get())).previous()))
H A DEditor.cpp268 VisiblePosition previous = start.previous(); local
270 if (previous.isNull() || previous.deepEquivalent().deprecatedNode()->rootEditableElement() != startContainer->rootEditableElement())
1559 // inserting the previous composition text into text nodes oddly.
1691 VisiblePosition oneBeforeStart = start.previous();
1722 VisiblePosition oneBeforeStart = startVisiblePosition(spellingSearchRange.get(), DOWNSTREAM).previous();
2415 // we choose previous word as the last word.
2518 VisiblePosition previous = next.previous(); local
[all...]
H A DInsertListCommand.cpp125 setEndingSelection(VisibleSelection(visibleStart, visibleEnd.previous(CannotCrossEditingBoundary)));
270 previousListChild = enclosingListChild(start.previous().deepEquivalent().deprecatedNode(), listNode);
342 Element* previousList = adjacentEnclosingList(start.deepEquivalent(), start.previous(CannotCrossEditingBoundary), listTag);
H A DInsertParagraphSeparatorCommand.cpp45 // pasting, it's easy to have each new line be a div deeper than the previous. E.g., in the case
254 // similar case where previous position is in another, presumeably nested, block.
255 if (isFirstInBlock || !inSameBlock(visiblePos, visiblePos.previous())) {
H A DInsertTextCommand.cpp157 startPosition = endPosition.previous();
H A DReplaceSelectionCommand.cpp371 VisiblePosition prev = startOfInsertedContent.previous(CannotCrossEditingBoundary);
508 RefPtr<Node> previous = m_lastLeafInserted->traversePreviousNode(); local
510 m_lastLeafInserted = previous;
755 m_lastLeafInserted = destination.previous().deepEquivalent().deprecatedNode();
770 // Stop if any previous sibling is a block.
885 setEndingSelection(endingSelection().visibleStart().previous());
916 originalVisPosBeforeEndBR = VisiblePosition(positionBeforeNode(endBR), DOWNSTREAM).previous();
1052 VisiblePosition destination = startOfInsertedContent.previous();
1144 !isCharacterSmartReplaceExempt(startOfInsertedContent.previous().characterAfter(), true);
1179 if (visiblePos.previous()
[all...]

Completed in 464 milliseconds

1234567891011>>