HomeSort by relevance Sort by last modified time
    Searched full:diff (Results 151 - 175 of 4928) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/chromium/third_party/libjingle/source/talk/base/
time.cc 86 int32 diff = later - earlier; local
87 return (diff >= 0 && static_cast<uint32>(diff) < HALF);
96 int32 diff = later - earlier; local
97 return (diff > 0 && static_cast<uint32>(diff) < HALF);
  /external/chromium_org/chrome/browser/chromeos/login/screens/
screen_context.cc 90 void ScreenContext::GetChangesAndReset(DictionaryValue* diff) {
92 DCHECK(diff);
93 changes_.Swap(diff);
97 void ScreenContext::ApplyChanges(const DictionaryValue& diff,
103 keys->reserve(diff.size());
104 base::DictionaryValue::Iterator it(diff);
screen_context.h 69 // GetChangesAndReset() in |diff|. All previous contents of |diff|
71 void GetChangesAndReset(DictionaryValue* diff);
73 // Applies changes from |diff| to the context. All keys from |diff|
75 void ApplyChanges(const DictionaryValue& diff,
  /external/chromium_org/media/video/capture/win/
capability_list_win.cc 66 ResolutionDiff diff; local
67 diff.capability = &(*it);
68 diff.diff_width = it->width - requested_width;
69 diff.diff_height = it->height - requested_height;
71 diff.diff_frame_rate =
75 diff_list.push_back(diff);
  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
RenderSVGBlock.cpp 92 void RenderSVGBlock::styleWillChange(StyleDifference diff, const RenderStyle* newStyle)
94 if (diff == StyleDifferenceLayout)
96 RenderBlock::styleWillChange(diff, newStyle);
99 void RenderSVGBlock::styleDidChange(StyleDifference diff, const RenderStyle* oldStyle)
101 RenderBlock::styleDidChange(diff, oldStyle);
102 SVGResourcesCache::clientStyleChanged(this, diff, style());
RenderSVGInline.cpp 115 void RenderSVGInline::styleWillChange(StyleDifference diff, const RenderStyle* newStyle)
117 if (diff == StyleDifferenceLayout)
119 RenderInline::styleWillChange(diff, newStyle);
122 void RenderSVGInline::styleDidChange(StyleDifference diff, const RenderStyle* oldStyle)
124 RenderInline::styleDidChange(diff, oldStyle);
125 SVGResourcesCache::clientStyleChanged(this, diff, style());
RenderSVGGradientStop.cpp 42 void RenderSVGGradientStop::styleDidChange(StyleDifference diff, const RenderStyle* oldStyle)
44 RenderObject::styleDidChange(diff, oldStyle);
45 if (diff == StyleDifferenceEqual)
  /external/chromium_org/tools/git/
for-all-touched-files.py 51 """Provides a list of all new and modified files listed by [git diff
52 branch_name] where branch_name can be blank to get a diff of the
60 lines = GitShell('git diff --stat=600,500 %s' % branch_name)
76 """For each new or modified file output by [git diff branch_name],
98 help='Sets what to diff to (default origin/master). Set '
99 'to empty to diff workspace against HEAD.')
mass-rename.py 8 a rename. Expects "git diff --cached -M" to list a bunch of renames.
13 3) look at git diff (without --cached) to see what the damage is
26 popen = subprocess.Popen('git diff --cached --raw -M',
  /external/chromium_org/webkit/child/
fling_animator_impl_android.cc 106 gfx::Vector2d diff(current_position - last_position_);
110 WebKit::WebFloatSize scroll_amount(diff.x() / dpi_scale,
111 diff.y() / dpi_scale);
121 float diff_length = diff.Length();
125 current_velocity = gfx::PointF(diff.x() * scroll_to_velocity,
126 diff.y() * scroll_to_velocity);
  /external/libvpx/libvpx/vp8/encoder/ppc/
csystemdependent.c 47 void (*vp8_subtract_mby)(short *diff, unsigned char *src, unsigned char *pred, int stride);
48 void (*vp8_subtract_mbuv)(short *diff, unsigned char *usrc, unsigned char *vsrc, unsigned char *pred, int stride);
64 extern void subtract_mby_c(short *diff, unsigned char *src, unsigned char *pred, int stride);
65 extern void subtract_mbuv_c(short *diff, unsigned char *usrc, unsigned char *vsrc, unsigned char *pred, int stride);
96 extern void vp8_subtract_mby_ppc(short *diff, unsigned char *src, unsigned char *pred, int stride);
97 extern void vp8_subtract_mbuv_ppc(short *diff, unsigned char *usrc, unsigned char *vsrc, unsigned char *pred, int stride);
  /external/llvm/tools/llvm-diff/
llvm-diff.cpp 1 //===-- llvm-diff.cpp - Module comparator command-line driver ---*- C++ -*-===//
39 Diag.print("llvm-diff", errs());
51 Engine.diff(LFn, RFn);
82 // If any global names were given, just diff those.
87 // Otherwise, diff everything in the module.
89 Engine.diff(LModule, RModule);
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
NameNormalizer.java 89 int diff = getComplexityCollator().compare(clean1, clean2); local
90 if (diff != 0) {
91 return diff;
96 diff = -clean1.compareTo(clean2);
97 if (diff != 0) {
98 return diff;
  /external/chromium/chrome/browser/webdata/
autofill_entry.cc 33 int diff = name_.compare(key.name()); local
34 if (diff < 0) {
36 } else if (diff == 0) {
  /external/chromium_org/third_party/libusb/
windows-build.patch 0 diff --git a/libusb/libusb.h b/libusb/libusb.h
27 diff --git a/libusb/os/threads_posix.c b/libusb/os/threads_posix.c
43 diff --git a/libusb/os/windows_usb.c b/libusb/os/windows_usb.c
  /external/chromium_org/third_party/skia/src/views/animated/
SkBorderView.cpp 52 SkAnimator::DifferenceType diff = fAnim.draw(canvas, &paint, SkTime::GetMSecs()); local
54 if (diff == SkAnimator::kDifferent)
56 else if (diff == SkAnimator::kPartiallyDifferent)
  /external/skia/src/views/animated/
SkBorderView.cpp 52 SkAnimator::DifferenceType diff = fAnim.draw(canvas, &paint, SkTime::GetMSecs()); local
54 if (diff == SkAnimator::kDifferent)
56 else if (diff == SkAnimator::kPartiallyDifferent)
  /external/v8/test/cctest/
test-diy-fp.cc 18 DiyFp diff = DiyFp::Minus(diy_fp1, diy_fp2); local
20 CHECK(2 == diff.f()); // NOLINT
21 CHECK_EQ(0, diff.e());
  /frameworks/base/docs/html/tools/help/
etc1tool.jd 12 diff-file] [-o outfile]</pre>
53 <td><code>--showDifference <em>diff-file</em></code></td>
56 <code><em>diff-file</em></code> (only valid when encoding).</td>
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.team.core_3.5.100.R36x_v20100825-0800.jar 
  /cts/tools/signature-tools/templates/
Header.st 8 <th colspan="2"> API Diff Specification </th>
  /development/ndk/tools/
headers-diff-bionic-vs-ndk.py 136 """Difference routine based on git diff"""
138 subprocess.check_output(['git', 'diff', '--no-index', file_origin, file_probe])
160 ## comparison by git diff ##
167 ## storing git diff ##
179 """Print summary list of headers and write diff-report to file"""
195 diff = self.diffs[arch][root][include]
196 diff_fd.write(diff)
224 diff-report format:
225 git diff output for all headers
226 use --diff option to specify filenam
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
SensorTest.java 86 float[] diff = new float[3];
89 diff[i] = Math.round(mScale[i] * (event.values[i] - mPrev[i]) * 0.45f);
90 if (Math.abs(diff[i]) > 0) {
101 event.values[2] + ")" + " diff(" + diff[0] +
102 " " + diff[1] + " " + diff[2] + ")");
109 float x = diff[0];
110 float y = diff[1];
  /external/chromium_org/base/metrics/
histogram_samples.cc 111 void HistogramSamples::IncreaseSum(int64 diff) {
112 sum_ += diff;
115 void HistogramSamples::IncreaseRedundantCount(HistogramBase::Count diff) {
116 redundant_count_ += diff;
  /external/chromium_org/base/third_party/dmg_fp/
float_precision_crash.patch 0 diff --git a/base/third_party/dmg_fp/dtoa.cc b/base/third_party/dmg_fp/dtoa.cc

Completed in 5432 milliseconds

1 2 3 4 5 67 8 91011>>