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

1 2

  /external/libedit/
README.android 8 * Initial downstream on 2013/10/30: Synched to libedit-20130712-3.1.tar.gz
  /external/chromium_org/content/test/
mock_google_streaming_server.h 51 net::TestURLFetcher* GetURLFetcher(bool downstream) const;
mock_google_streaming_server.cc 143 bool downstream) const {
145 downstream ? kDownstreamUrlFetcherId : kUpstreamUrlFetcherId);
  /external/chromium_org/third_party/WebKit/Source/core/editing/
InsertTextCommand.cpp 156 // If the caret is just before a placeholder, downstream will normalize the caret to it.
157 Position downstream(startPosition.downstream());
158 if (lineBreakExistsAtPosition(downstream)) {
162 placeholder = downstream;
175 deleteInsignificantText(startPosition, startPosition.downstream());
179 startPosition = startPosition.downstream();
232 Position insertPos = VisiblePosition(pos, DOWNSTREAM).deepEquivalent();
CompositeEditCommand.cpp 653 // Set upstream and downstream to define the extent of the whitespace surrounding text[offset].
658 int downstream = endOffset; local
659 while ((unsigned)downstream < text.length() && isWhitespace(text[downstream]))
660 downstream++;
662 int length = downstream - upstream;
667 VisiblePosition visibleDownstreamPos(Position(textNode, downstream));
674 isEndOfParagraph(visibleDownstreamPos) || (unsigned)downstream == text.length());
695 deleteInsignificantText(upstreamPos, position.downstream());
696 position = upstreamPos.downstream();
    [all...]
VisiblePosition.cpp 67 // When not at a line wrap, make sure to end up with DOWNSTREAM affinity.
68 if (m_affinity == UPSTREAM && (isNull() || inSameLine(VisiblePosition(position, DOWNSTREAM), *this)))
69 m_affinity = DOWNSTREAM;
96 VisiblePosition prev = VisiblePosition(pos, DOWNSTREAM);
100 // we should always be able to make the affinity DOWNSTREAM, because going previous from an
128 Position downstreamStart = p.downstream();
263 if ((p.isCandidate() && p.downstream() != downstreamStart) || p.atStartOfTree() || p.atEndOfTree())
277 VisiblePosition left = VisiblePosition(pos, DOWNSTREAM);
293 Position downstreamStart = p.downstream();
431 if ((p.isCandidate() && p.downstream() != downstreamStart) || p.atStartOfTree() || p.atEndOfTree()
    [all...]
htmlediting.cpp 229 Position downstreamStart = p.downstream();
232 if (p.isCandidate() && p.downstream() != downstreamStart)
252 Position downstreamStart = p.downstream();
255 if (p.isCandidate() && p.downstream() != downstreamStart)
458 VisiblePosition vPos = VisiblePosition(pos, DOWNSTREAM);
459 VisiblePosition firstInElement = VisiblePosition(firstPositionInOrBeforeNode(specialElement), DOWNSTREAM);
475 VisiblePosition vPos = VisiblePosition(pos, DOWNSTREAM);
476 VisiblePosition lastInElement = VisiblePosition(lastPositionInOrAfterNode(specialElement), DOWNSTREAM);
523 Position downstream(visiblePosition.deepEquivalent().downstream());
    [all...]
InsertParagraphSeparatorCommand.cpp 187 insertionPosition = insertionPosition.downstream();
260 setEndingSelection(VisibleSelection(firstPositionInNode(parent.get()), DOWNSTREAM, endingSelection().isDirectional()));
292 insertionPosition = insertionPosition.downstream();
305 setEndingSelection(VisibleSelection(insertionPosition, DOWNSTREAM, endingSelection().isDirectional()));
323 setEndingSelection(VisibleSelection(insertionPosition, DOWNSTREAM, endingSelection().isDirectional()));
328 // Move downstream. Typing style code will take care of carrying along the
330 insertionPosition = insertionPosition.downstream();
338 // we should move to its upstream or downstream position.
341 insertionPosition = insertionPosition.downstream();
347 // FIXME: We need the affinity for pos, but pos.downstream() does not give i
    [all...]
DeleteSelectionCommand.cpp 176 m_downstreamStart = start.downstream();
178 m_downstreamEnd = end.downstream();
237 m_downstreamStart = pos.downstream();
246 // Expand out one character downstream for smart delete and recalculate
250 m_downstreamEnd = pos.downstream();
    [all...]
InputMethodController.cpp 195 unsigned baseOffset = frame().selection().base().downstream().deprecatedEditingOffset();
290 Position base = frame().selection().base().downstream();
313 frame().selection().setSelectedRange(selectedRange.get(), DOWNSTREAM, FrameSelection::NonDirectional, NotUserTriggered);
321 Position base = frame().selection().base().downstream();
BreakBlockquoteCommand.cpp 67 // pos is a position equivalent to the caret. We use downstream() so that pos will
69 Position pos = endingSelection().start().downstream();
84 setEndingSelection(VisibleSelection(positionBeforeNode(breakElement.get()), DOWNSTREAM, endingSelection().isDirectional()));
94 setEndingSelection(VisibleSelection(positionBeforeNode(breakElement.get()), DOWNSTREAM, endingSelection().isDirectional()));
187 setEndingSelection(VisibleSelection(positionBeforeNode(breakElement.get()), DOWNSTREAM, endingSelection().isDirectional()));
ReplaceSelectionCommand.cpp     [all...]
TypingCommand.cpp 404 setEndingSelection(VisibleSelection(firstPositionInNode(root), DOWNSTREAM, endingSelection().isDirectional()));
467 setEndingSelection(VisibleSelection(positionBeforeNode(table), endingSelection().start(), DOWNSTREAM, endingSelection().isDirectional()));
541 Position downstreamEnd = endingSelection().end().downstream();
547 downstreamEnd = visibleEnd.next(CannotCrossEditingBoundary).deepEquivalent().downstream();
550 setEndingSelection(VisibleSelection(endingSelection().end(), positionAfterNode(downstreamEnd.containerNode()), DOWNSTREAM, endingSelection().isDirectional()));
ApplyBlockElementCommand.cpp 113 Position start = startOfSelection.deepEquivalent().downstream();
119 setEndingSelection(VisibleSelection(positionBeforeNode(placeholder.get()), DOWNSTREAM, endingSelection().isDirectional()));
  /external/chromium_org/third_party/icu/source/data/zone/
reslocal.mk 5 # The downstream packager may not need this file at all if their package is not
  /external/chromium_org/third_party/icu/source/data/curr/
reslocal.mk 5 # The downstream packager may not need this file at all if their package is not
  /external/chromium_org/third_party/icu/source/data/region/
reslocal.mk 5 # The downstream packager may not need this file at all if their package is not
  /external/chromium_org/third_party/icu/source/data/lang/
reslocal.mk 5 # The downstream packager may not need this file at all if their package is not
  /external/chromium_org/third_party/icu/source/data/locales/
reslocal.mk 5 # The downstream packager may not need this file at all if their package is not
  /external/chromium_org/tools/sheriffing/
buildinfo.js 68 * main builders because downstream trees provide git revision SHA1s through
  /external/chromium_org/third_party/WebKit/Source/core/dom/
Position.h 174 Position downstream(EditingBoundaryCrossingRule = CannotCrossEditingBoundary) const;
  /cts/suite/cts/deviceTests/browserbench/assets/octane/
deltablue.js 602 * unsatisfiable downstream constraint to be satisfied. We therefore collect
603 * a list of unsatisfied downstream constraints and attempt to
683 * downstream of the given constraint and recompute the actual
688 * encountered downstream of the given constraint. The sender is
690 * the given mark. Thus, encountering a marked node downstream of
712 * downstream of the given constraint. Answer a collection of
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/v8-v4/
v8-deltablue.js 593 * unsatisfiable downstream constraint to be satisfied. We therefore collect
594 * a list of unsatisfied downstream constraints and attempt to
674 * downstream of the given constraint and recompute the actual
679 * encountered downstream of the given constraint. The sender is
681 * the given mark. Thus, encountering a marked node downstream of
703 * downstream of the given constraint. Answer a collection of
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/v8-v5/
v8-deltablue.js 593 * unsatisfiable downstream constraint to be satisfied. We therefore collect
594 * a list of unsatisfied downstream constraints and attempt to
674 * downstream of the given constraint and recompute the actual
679 * encountered downstream of the given constraint. The sender is
681 * the given mark. Thus, encountering a marked node downstream of
703 * downstream of the given constraint. Answer a collection of
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/v8-v6/
v8-deltablue.js 593 * unsatisfiable downstream constraint to be satisfied. We therefore collect
594 * a list of unsatisfied downstream constraints and attempt to
674 * downstream of the given constraint and recompute the actual
679 * encountered downstream of the given constraint. The sender is
681 * the given mark. Thus, encountering a marked node downstream of
703 * downstream of the given constraint. Answer a collection of

Completed in 547 milliseconds

1 2