HomeSort by relevance Sort by last modified time
    Searched refs:diff (Results 1226 - 1250 of 3197) sorted by null

<<41424344454647484950>>

  /frameworks/base/core/tests/coretests/src/android/os/
WorkSourceTest.java 103 assertFalse(ws1.diff(ws2));
104 assertFalse(ws2.diff(ws1));
  /frameworks/base/services/usage/java/com/android/server/usage/
AppTimeLimitController.java 328 long diff = stopTime - startTime; local
329 group.timeRemaining -= diff;
  /frameworks/native/cmds/dumpsys/
dumpsys.cpp 391 auto diff = std::chrono::duration_cast<std::chrono::milliseconds>(end - now);
392 return std::max(diff.count(), 0ll);
  /packages/apps/Contacts/src/com/android/contacts/model/
RawContactDeltaList.java 249 private void buildSplitContactDiffWrapper(final ArrayList<CPOWrapper> diff, int[] backRefs) {
258 diff.add(new CPOWrapper(builder.build(), CompatUtils.TYPE_UPDATE));
  /packages/apps/Dialer/java/com/android/incallui/answer/impl/affordance/
SwipeButtonView.java 283 float diff = circleRadius - minBackgroundRadius; local
285 values[0].setFloatValues(circleStartValue + diff, circleRadius);
  /packages/apps/Gallery2/src/com/android/gallery3d/app/
MoviePlayer.java 216 int diff = mLastSystemUiVis ^ visibility;
218 if ((diff & View.SYSTEM_UI_FLAG_HIDE_NAVIGATION) != 0
  /prebuilts/clang/host/darwin-x86/clang-3859424/bin/
git-clang-format 42 If two commits are given (requires --diff), run clang-format on all lines in the
97 p.add_argument('--diff', action='store_true',
98 help='print a diff instead of applying the changes')
119 help='revision from which to compute the diff')
129 if not opts.diff:
130 die('--diff is required when two commits are given')
151 # The computed diff outputs absolute paths, so we must cd before accessing
171 elif opts.diff:
276 """Return a subprocess object producing the diff from `commits`.
282 git_tool = 'diff-index
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/bin/
git-clang-format 42 If two commits are given (requires --diff), run clang-format on all lines in the
97 p.add_argument('--diff', action='store_true',
98 help='print a diff instead of applying the changes')
119 help='revision from which to compute the diff')
129 if not opts.diff:
130 die('--diff is required when two commits are given')
151 # The computed diff outputs absolute paths, so we must cd before accessing
171 elif opts.diff:
276 """Return a subprocess object producing the diff from `commits`.
282 git_tool = 'diff-index
    [all...]
  /prebuilts/clang/host/linux-x86/clang-3859424/bin/
git-clang-format 42 If two commits are given (requires --diff), run clang-format on all lines in the
97 p.add_argument('--diff', action='store_true',
98 help='print a diff instead of applying the changes')
119 help='revision from which to compute the diff')
129 if not opts.diff:
130 die('--diff is required when two commits are given')
151 # The computed diff outputs absolute paths, so we must cd before accessing
171 elif opts.diff:
276 """Return a subprocess object producing the diff from `commits`.
282 git_tool = 'diff-index
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4053586/bin/
git-clang-format 42 If two commits are given (requires --diff), run clang-format on all lines in the
97 p.add_argument('--diff', action='store_true',
98 help='print a diff instead of applying the changes')
119 help='revision from which to compute the diff')
129 if not opts.diff:
130 die('--diff is required when two commits are given')
151 # The computed diff outputs absolute paths, so we must cd before accessing
171 elif opts.diff:
276 """Return a subprocess object producing the diff from `commits`.
282 git_tool = 'diff-index
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/fix/
main_test.go 123 data, err := diff([]byte(a), []byte(b))
  /prebuilts/go/linux-x86/src/cmd/fix/
main_test.go 123 data, err := diff([]byte(a), []byte(b))
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/refactorings/core/
RefactoringTestBase.java 178 String diff = getDiff(before, after); local
179 for (String line : Splitter.on('\n').split(diff)) {
  /system/chre/util/tests/
array_queue_test.cc 448 typename traits::difference_type diff = std::distance(q.begin(), q.end());
449 EXPECT_EQ(diff, q.size());
  /test/vts/harnesses/tradefed/src/com/android/tradefed/testtype/
VtsMultiDeviceTestResultParser.java 290 int diff = calculateStartDate ? 1 : -1; local
292 for (int index = begin; index >= 0 && index < lines.length; index += diff) {
  /tools/repohooks/
pre-upload.py 287 diff = rh.git.get_affected_files(commit)
296 hook_results = hook(project, commit, desc, diff)
  /tools/tradefederation/core/prod-tests/src/com/android/framework/tests/
BandwidthMicroBenchMarkTest.java 424 float diff = Math.abs(BandwidthStats.computePercentDifference( local
426 if (diff < mServerDifferenceThreshold) {
  /external/deqp/modules/gles2/performance/
es2pShaderOperatorTests.cpp 405 const Vec2 diff = data[i] - mid; local
407 slopeNumerator += diff.x()*diff.y();
408 slopeDenominator += diff.x()*diff.x();
429 const float diff = estY - data[i].y(); local
430 error += diff*diff;
448 const float diff = meanY - data[i].y(); local
449 error += diff*diff
    [all...]
  /external/deqp/modules/gles3/performance/
es3pShaderOperatorTests.cpp 405 const Vec2 diff = data[i] - mid; local
407 slopeNumerator += diff.x()*diff.y();
408 slopeDenominator += diff.x()*diff.x();
429 const float diff = estY - data[i].y(); local
430 error += diff*diff;
448 const float diff = meanY - data[i].y(); local
449 error += diff*diff
    [all...]
  /external/skia/src/core/
SkMatrix.cpp 597 SkScalar diff; local
600 diff = dst.width() - src.width() * sy;
602 diff = dst.height() - src.height() * sy;
606 diff = SkScalarHalf(diff);
610 tx += diff;
612 ty += diff;
1796 double diff = Sa - Sd; local
    [all...]
  /external/skqp/src/core/
SkMatrix.cpp 596 SkScalar diff; local
599 diff = dst.width() - src.width() * sy;
601 diff = dst.height() - src.height() * sy;
605 diff = SkScalarHalf(diff);
609 tx += diff;
611 ty += diff;
1795 double diff = Sa - Sd; local
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/
events.c 1271 struct os_reltime diff; local
1274 &bss->last_update, &diff);
1278 (unsigned int) diff.sec,
1279 (unsigned int) diff.usec);
1602 int min_diff, diff; local
3888 struct os_reltime diff; local
3923 struct os_reltime now, diff; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
intobject.c 551 const double diff = doubled_longprod - doubleprod; local
552 const double absdiff = diff >= 0.0 ? diff : -diff;
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
intobject.c 537 const double diff = doubled_longprod - doubleprod; local
538 const double absdiff = diff >= 0.0 ? diff : -diff;
    [all...]
  /device/linaro/hikey/uefi-tools/
edk2-build.sh 386 if ! git diff-index --quiet HEAD --; then

Completed in 1686 milliseconds

<<41424344454647484950>>