HomeSort by relevance Sort by last modified time
    Searched refs:nextDiff (Results 1 - 2 of 2) sorted by null

  /external/google-diff-match-patch/name/fraser/neil/plaintext/
diff_match_patch.java 874 Diff nextDiff = pointer.hasNext() ? pointer.next() : null;
876 while (nextDiff != null) {
878 nextDiff.operation == Operation.EQUAL) {
882 equality2 = nextDiff.text;
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/forms/
InputType.cpp 866 const Decimal nextDiff = step * n;
867 if (current < stepRange.minimum() - nextDiff)
868 current = stepRange.minimum() - nextDiff;
869 if (current > stepRange.maximum() - nextDiff)
870 current = stepRange.maximum() - nextDiff;

Completed in 1655 milliseconds