HomeSort by relevance Sort by last modified time
    Searched refs:startPosition (Results 1 - 25 of 37) sorted by null

1 2

  /external/webkit/WebCore/editing/
InsertTextCommand.cpp 125 Position startPosition(endingSelection().start());
132 Position downstream(startPosition.downstream());
135 VisiblePosition caret(startPosition);
144 startPosition = startPosition.upstream();
146 // It is possible for the node that contains startPosition to contain only unrendered whitespace,
148 Position positionBeforeStartNode(positionInParentBeforeNode(startPosition.node()));
149 deleteInsignificantText(startPosition.upstream(), startPosition.downstream());
150 if (!startPosition.node()->inDocument()
    [all...]
Editor.cpp     [all...]
ApplyStyleCommand.h 103 Position startPosition();
IndentOutdentCommand.cpp 317 setEndingSelection(VisibleSelection(startRange->startPosition(), endRange->startPosition(), DOWNSTREAM));
ApplyStyleCommand.cpp 532 Position ApplyStyleCommand::startPosition()
586 Position start = startPosition();
630 updateStartEnd(startRange->startPosition(), endRange->startPosition());
662 Position start = startPosition();
673 start = startPosition();
678 start = startPosition();
685 start = startPosition();
690 start = startPosition();
    [all...]
markup.cpp 832 VisiblePosition visibleStart(updatedRange->startPosition(), VP_DEFAULT_AFFINITY);
    [all...]
visible_units.cpp 150 pos = it.range()->startPosition();
237 pos = it.range()->startPosition();
247 if (visPos == VisiblePosition(charIt.range()->startPosition()))
    [all...]
VisibleSelection.cpp 89 : m_base(range->startPosition())
CompositeEditCommand.cpp     [all...]
  /external/webkit/WebCore/accessibility/
AccessibilityObject.cpp 196 VisiblePosition startPosition = startOfWord(visiblePos, LeftWordIfOnBoundary);
197 VisiblePosition endPosition = endOfWord(startPosition);
198 return VisiblePositionRange(startPosition, endPosition);
203 VisiblePosition startPosition = startOfWord(visiblePos, RightWordIfOnBoundary);
204 VisiblePosition endPosition = endOfWord(startPosition);
205 return VisiblePositionRange(startPosition, endPosition);
213 VisiblePosition startPosition = visiblePosition;
217 tempPosition = startPosition.previous();
231 startPosition = tempPosition;
234 return startPosition;
    [all...]
AccessibilityRenderObject.cpp     [all...]
  /external/webkit/WebCore/platform/text/
PlatformString.h 316 int find(const UChar*, size_t, UChar, int startPosition = 0);
317 int reverseFind(const UChar*, size_t, UChar, int startPosition = -1);
334 inline int find(const UChar* characters, size_t length, UChar character, int startPosition)
336 if (startPosition >= static_cast<int>(length))
338 for (size_t i = startPosition; i < length; ++i) {
345 inline int find(const UChar* characters, size_t length, CharacterMatchFunctionPtr matchFunction, int startPosition)
347 if (startPosition >= static_cast<int>(length))
349 for (size_t i = startPosition; i < length; ++i) {
356 inline int reverseFind(const UChar* characters, size_t length, UChar character, int startPosition)
358 if (startPosition >= static_cast<int>(length) || !length
    [all...]
  /external/icu4c/layout/
LigatureSubstSubtables.cpp 30 le_int32 startPosition = glyphIterator->getCurrStreamPosition();
60 glyphIterator->setCurrStreamPosition(startPosition);
LookupProcessor.cpp 31 le_int32 startPosition = glyphIterator->getCurrStreamPosition();
43 glyphIterator->setCurrStreamPosition(startPosition);
  /external/webkit/WebCore/svg/
SVGTextContentElement.cpp 61 int startOffset, long startPosition, long length, bool isVerticalText, long& atCharacter)
69 bool usesFullRange = (startPosition == -1 && length == -1);
72 if (usesFullRange || (atCharacter >= startPosition && atCharacter <= startPosition + length)) {
89 if (atCharacter == startPosition + length - 1)
105 StartPosition,
154 long startPosition = m_queryStartPosition;
157 float textLength = cumulativeCharacterRangeLength(start, end, textBox, startOffset, startPosition, length, isVerticalText, m_atCharacter);
164 if (m_atCharacter == startPosition + length)
171 case StartPosition
    [all...]
SVGFont.cpp 139 static inline bool isCompatibleArabicForm(const SVGGlyphIdentifier& identifier, const Vector<SVGGlyphIdentifier::ArabicForm>& chars, unsigned startPosition, unsigned endPosition)
144 Vector<SVGGlyphIdentifier::ArabicForm>::const_iterator it = chars.begin() + startPosition;
157 const Vector<SVGGlyphIdentifier::ArabicForm>& chars, unsigned startPosition, unsigned endPosition)
207 return isCompatibleArabicForm(identifier, chars, startPosition, endPosition);
  /libcore/luni/src/main/java/java/util/
UUID.java 215 int startPosition = 0;
219 position[i] = uuid.indexOf("-", startPosition);
221 startPosition = position[i] + 1;
  /external/webkit/WebCore/rendering/
RenderTextControl.cpp 253 VisiblePosition startPosition = visiblePositionForIndex(start);
256 endPosition = startPosition;
260 // startPosition and endPosition can be null position for example when
262 if (startPosition.isNotNull() && endPosition.isNotNull()) {
263 ASSERT(startPosition.deepEquivalent().node()->shadowAncestorNode() == node() && endPosition.deepEquivalent().node()->shadowAncestorNode() == node());
265 VisibleSelection newSelection = VisibleSelection(startPosition, endPosition);
  /external/webkit/WebCore/dom/
Range.h 97 const Position startPosition() const { return m_start.toPosition(); }
Range.cpp     [all...]
  /external/webkit/WebCore/page/
DOMSelection.cpp 384 selection->setSelection(VisibleSelection(r->startPosition(), range->endPosition(), DOWNSTREAM));
397 selection->setSelection(VisibleSelection(range->startPosition(), r->endPosition(), DOWNSTREAM));
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/voice/
RecognitionView.java 242 private void showWave(ShortBuffer waveBuffer, int startPosition, int endPosition) {
268 int startIndex = startPosition - 2000; // include 250ms before speech
  /cts/tests/tests/widget/src/android/widget/cts/
HorizontalScrollViewTest.java 868 private void delayedCheckFling(final int startPosition, final boolean movingRight) {
873 return mScrollView.getScrollX() > startPosition;
875 return mScrollView.getScrollX() < startPosition;
ScrollViewTest.java 895 private void delayedCheckFling(final int startPosition, final boolean movingDown) {
900 return mScrollView.getScrollY() > startPosition;
902 return mScrollView.getScrollY() < startPosition;
  /external/webkit/WebCore/accessibility/gtk/
AccessibilityObjectWrapperAtk.cpp     [all...]

Completed in 532 milliseconds

1 2