HomeSort by relevance Sort by last modified time
    Searched full:diff (Results 26 - 50 of 1576) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/tcpdump/tests/
mpls-ldp-hello.sh 7 if diff mpls-ldp-hello.new mpls-ldp-hello.out
print-flags.sh 6 if (../tcpdump -$i -s0 -nr print-flags.pcap | tee print-$i.new | diff - print-$i.out)
esp2.sh 7 if diff esp2.new esp2.out
  /external/webkit/WebKitTools/Scripts/webkitpy/steps/
confirmdiff.py 44 diff = self.cached_lookup(state, "diff")
45 self._tool.user.page(diff)
46 if not self._tool.user.confirm("Was that diff correct?"):
  /external/bluetooth/glib/tests/
run-collate-tests.sh 28 diff collate.out ${srcdir:-.}/collate/$name.unicode ||
31 diff collate.out ${srcdir:-.}/collate/$name.unicode ||
34 diff collate.out ${srcdir:-.}/collate/$name.file ||
  /external/skia/src/views/
SkProgressBarView.cpp 16 void SkProgressBarView::changeProgress(int diff)
18 int newProg = fProgress + diff;
28 SkAnimator::DifferenceType diff = fAnim.draw(canvas, &paint, SkTime::GetMSecs()); local
30 if (diff == SkAnimator::kDifferent)
32 else if (diff == SkAnimator::kPartiallyDifferent)
SkBorderView.cpp 43 SkAnimator::DifferenceType diff = fAnim.draw(canvas, &paint, SkTime::GetMSecs()); local
45 if (diff == SkAnimator::kDifferent)
47 else if (diff == SkAnimator::kPartiallyDifferent)
  /packages/apps/Launcher2/src/com/android/launcher2/
SymmetricalLinearTween.java 83 long diff = now - mBase; local
84 mBase = now + diff - mDuration;
94 long diff = now-base;
96 float val = diff/(float)duration;
108 int frame = (int)(diff / FRAME_TIME);
110 if (diff < duration) {
113 if (diff >= duration) {
  /external/webkit/WebCore/svg/
SVGAnimateTransformElement.cpp 192 FloatSize diff = to.translate() - from.translate(); local
193 return sqrtf(diff.width() * diff.width() + diff.height() * diff.height());
198 FloatSize diff = to.scale() - from.scale(); local
199 return sqrtf(diff.width() * diff.width() + diff.height() * diff.height())
    [all...]
SVGAnimateMotionElement.cpp 206 FloatSize diff = m_toPoint - m_fromPoint; local
207 transform->translate(diff.width() * percentage + m_fromPoint.x(), diff.height() * percentage + m_fromPoint.y());
239 FloatSize diff = to - from;
240 return sqrtf(diff.width() * diff.width() + diff.height() * diff.height());
  /packages/apps/Contacts/src/com/android/contacts/model/
EntityDiff.java 48 final EntityDiff diff = new EntityDiff(); local
57 diff.add(builder.build());
66 diff.add(builder.build());
74 diff.add(builder.build());
79 diff.add(builder.build());
89 diff.add(builder.build());
105 diff.add(builder.build());
112 diff.add(builder.build());
123 diff.add(builder.build());
127 return diff;
    [all...]
EntitySet.java 115 final ArrayList<ContentProviderOperation> diff = Lists.newArrayList(); local
122 delta.buildAssert(diff);
125 final int assertMark = diff.size();
132 final int firstBatch = diff.size();
134 delta.buildDiff(diff);
147 diff.add(builder.build());
158 diff.add(builder.build());
163 buildSplitContactDiff(diff, backRefs);
167 if (diff.size() == assertMark) {
168 diff.clear()
    [all...]
  /external/elfutils/src/
sectionhash.c 37 GElf_Xword diff = (SH_FLAGS_IMPORTANT (one->flags) local
39 result = diff < 0 ? -1 : diff == 0 ? 0 : 1;
  /external/skia/include/core/
SkMath.h 101 int diff = max - value;
102 // clear diff if diff is positive
103 diff &= diff >> 31;
106 return (value + diff) & ~(value >> 31);
122 int diff = max - value;
123 // clear diff if diff is positive
124 diff &= diff >> 31
    [all...]
  /cts/tools/signature-tools/templates/
Header.st 8 <th colspan="2"> API Diff Specification </th>
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
SensorTest.java 87 float[] diff = new float[3];
90 diff[i] = Math.round(mScale[i] * (values[i] - mPrev[i]) * 0.45f);
91 if (Math.abs(diff[i]) > 0) {
101 + " diff(" + diff[0] + " " + diff[1] + " " + diff[2] + ")");
108 float x = diff[0];
109 float y = diff[1];
  /external/expat/amiga/
stdlib.c 79 int diff; local
82 diff = *((uint8 *)a++) - *((uint8 *)b++);
83 if ( diff ) {
84 return diff;
  /external/srec/srec/crec/
astar_pphash.c 48 asr_int32_t diff = 0; local
52 diff = parp1->token_index - parp2->token_index;
58 diff = parp1->word - parp2->word;
59 if (diff)
66 diff = (int)parp1->next - (int)parp2->next;
69 if (diff)
70 diff = (diff < 0 ? -1 : 1);
71 return diff;
  /external/webkit/WebCore/dom/
ChildNodeList.cpp 59 int diff = index - m_caches->lastItemOffset; local
60 unsigned dist = abs(diff);
71 int diff = index - pos; local
72 unsigned dist = abs(diff);
  /external/dropbear/debian/
changelog 11 * debian/diff/dbclient.1.diff: new: document -R option to dbclient
51 * debian/diff/dbclient-usage-typo.diff, debian/diff/manpages.diff: remove;
82 * debian/diff/dbclient-usage-typo.diff: new; fix typo.
83 * debian/diff/manpages.diff: new; add references to dbclient man page
    [all...]
  /packages/apps/Contacts/tests/src/com/android/contacts/
EntitySetTests.java 49 * Tests for {@link EntitySet} which focus on "diff" operations that should
180 final ArrayList<ContentProviderOperation> diff = Lists.newArrayList(); local
181 delta.buildAssert(diff);
182 delta.buildDiff(diff);
183 assertDiffPattern(diff, pattern);
190 static void assertDiffPattern(ArrayList<ContentProviderOperation> diff,
192 assertEquals("Unexpected operations", pattern.length, diff.size());
195 final ContentProviderOperation found = diff.get(i);
294 static int countExceptionUpdates(ArrayList<ContentProviderOperation> diff) {
296 for (ContentProviderOperation oper : diff) {
310 final ArrayList<ContentProviderOperation> diff = set.buildDiff(); local
321 final ArrayList<ContentProviderOperation> diff = set.buildDiff(); local
332 final ArrayList<ContentProviderOperation> diff = set.buildDiff(); local
344 final ArrayList<ContentProviderOperation> diff = set.buildDiff(); local
356 final ArrayList<ContentProviderOperation> diff = set.buildDiff(); local
    [all...]
  /build/tools/droiddoc/test/stubs/
run.sh 32 diff -r $DIR/expected $A_STUBS
34 diff -r $A_STUBS $B_STUBS
  /external/icu4c/tools/genren/
README 15 - Another good way to check the file is a side by side diff. After the above 'make install-header':
17 diff --side-by-side urename.sort urename.old.sort | more
  /external/webkit/WebKitTools/Scripts/webkitperl/VCSUtils_unittest/
gitdiff2svndiff.pl 54 diff --git a/WebCore/rendering/style/StyleFlexibleBoxData.h b/WebCore/rendering/style/StyleFlexibleBoxData.h
93 my $title = "gitdiff2svndiff: Convert mnemonic git diff to svn diff";
96 { 'a' => 'i', 'b' => 'w' }, # git-diff (compares the (i)ndex and the (w)ork tree)
97 { 'a' => 'c', 'b' => 'w' }, # git-diff HEAD (compares a (c)ommit and the (w)ork tree)
98 { 'a' => 'c', 'b' => 'i' }, # git diff --cached (compares a (c)ommit and the (i)ndex)
99 { 'a' => 'o', 'b' => 'w' }, # git-diff HEAD:file1 file2 (compares an (o)bject and a (w)ork tree entity)
100 { 'a' => '1', 'b' => '2' }, # git diff --no-index a b (compares two non-git things (1) and (2))
  /external/webkit/WebKitTools/Scripts/webkitpy/
diff_parser.py 46 """Converts a git formatted diff line to a svn formatted line.
49 line: A string representing a line of the diff.
51 conversion_patterns = (("^diff --git \w/(.+) \w/(?P<FilePath>.+)", lambda matched: "Index: " + matched.group('FilePath') + "\n"),
65 """Gets a converter function of diff lines.
68 first_diff_line: The first filename line of a diff file.
72 if match(r"^diff --git \w/", first_diff_line):
113 """Parses a diff.
162 logging.error('Unexpected diff format when parsing a chunk: %r' % line)

Completed in 55 milliseconds

12 3 4 5 6 7 8 91011>>