HomeSort by relevance Sort by last modified time
    Searched refs:seconds (Results 501 - 525 of 1528) sorted by null

<<21222324252627282930>>

  /external/autotest/venv/lucifer/
handoffs.py 37 - datetime.timedelta(seconds=_JOB_GRACE_SECS))
  /external/ltp/testcases/kernel/device-drivers/v4l/user_space/
v4l2_show.c 61 ".seconds=%u, "
78 buf->timecode.seconds,
  /external/webrtc/webrtc/modules/video_coding/utility/
quality_scaler_unittest.cc 102 int seconds,
128 << " seconds.";
144 << "No downscale within " << kNumSeconds << " seconds.";
160 FAIL() << "No downscale within " << kNumSeconds << " seconds.";
195 << kNumSeconds << " seconds.";
208 << " seconds.";
296 int seconds,
308 TriggerResolutionChange(kDropFrame, seconds, initial_framerate);
325 // The "seconds * 1.5" is to ensure spatial resolution to recover.
326 // For example, in 10 seconds test, framerate reduction happens in the firs
    [all...]
  /external/webrtc/webrtc/tools/rtcbot/test/
oneWayVideoStreamingWithDownloadingFile.js 10 // and download a file from a server after 2 seconds of establishing
13 // The test succeeds after collecting stats for 10 seconds from both bots
  /external/webrtc/webrtc/voice_engine/
voe_audio_processing_impl.h 91 int TimeSinceLastTyping(int& seconds) override;
  /libcore/ojluni/src/main/java/java/time/
OffsetTime.java 409 * <li>{@code SECONDS}
    [all...]
  /packages/apps/Dialer/java/com/android/dialer/app/voicemail/
VoicemailPlaybackLayout.java 358 * <p>We always use four digits, two for minutes two for seconds. In the very unlikely event that
362 int seconds = millis / 1000; local
363 int minutes = seconds / 60;
364 seconds -= minutes * 60;
368 return String.format("%02d:%02d", minutes, seconds);
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/lib/Fuzzer/
FuzzerInternal.h 45 return duration_cast<seconds>(system_clock::now() - ProcessStartTime)
56 size_t Seconds = secondsSinceProcessStartUp();
57 return Seconds ? TotalNumberOfRuns / Seconds : 0;
  /prebuilts/clang/host/linux-x86/clang-4393122/prebuilt_include/llvm/lib/Fuzzer/
FuzzerInternal.h 45 return duration_cast<seconds>(system_clock::now() - ProcessStartTime)
56 size_t Seconds = secondsSinceProcessStartUp();
57 return Seconds ? TotalNumberOfRuns / Seconds : 0;
  /prebuilts/clang/host/linux-x86/clang-4479392/prebuilt_include/llvm/lib/Fuzzer/
FuzzerInternal.h 45 return duration_cast<seconds>(system_clock::now() - ProcessStartTime)
56 size_t Seconds = secondsSinceProcessStartUp();
57 return Seconds ? TotalNumberOfRuns / Seconds : 0;
  /system/netd/libnetdutils/include/netdutils/
BackoffSequence.h 31 template<typename time_type = std::chrono::seconds, typename counter_type = uint32_t>
  /test/vts-testcase/hal/thermal/V1_0/target_stress/
thermal_hidl_stress_test.cpp 55 status = cv_.wait_until(lock, now + std::chrono::seconds(TIMEOUT_PERIOD));
  /external/icu/icu4c/source/tools/tzcode/
zdump.c 692 register intmax_t myy, seconds, years; local
702 seconds = diff400 * SECSPER400YEARS;
705 seconds = isleap(myy) ? SECSPERLYEAR : SECSPERNYEAR;
709 if (t > absolute_max_time - seconds)
711 t += seconds;
718 seconds = diff400 * SECSPER400YEARS;
721 seconds = isleap(myy - 1) ? SECSPERLYEAR : SECSPERNYEAR;
725 if (t < absolute_min_time + seconds)
727 t -= seconds;
  /prebuilts/go/darwin-x86/src/time/
example_test.go 96 fmt.Printf("there are %.0f seconds in %v\n", complex.Seconds(), complex)
100 // there are 4210 seconds in 1h10m10s
123 fmt.Printf("take off in t-%.0f seconds.", m.Seconds())
124 // Output: take off in t-90 seconds.
261 // When parsing, if the seconds value is followed by a decimal point
273 // Fractional seconds can be printed by adding a run of 0s or 9s after
274 // a decimal point in the seconds value in the layout string.
359 // 1 billion seconds of Unix, three ways
    [all...]
  /prebuilts/go/linux-x86/src/time/
example_test.go 96 fmt.Printf("there are %.0f seconds in %v\n", complex.Seconds(), complex)
100 // there are 4210 seconds in 1h10m10s
123 fmt.Printf("take off in t-%.0f seconds.", m.Seconds())
124 // Output: take off in t-90 seconds.
261 // When parsing, if the seconds value is followed by a decimal point
273 // Fractional seconds can be printed by adding a run of 0s or 9s after
274 // a decimal point in the seconds value in the layout string.
359 // 1 billion seconds of Unix, three ways
    [all...]
  /external/python/cpython3/Lib/test/
datetimetester.py 263 timedelta(seconds=1), timedelta(1), -timedelta(1)]:
410 eq(td(), td(weeks=0, days=0, hours=0, minutes=0, seconds=0,
413 eq(td(0, 1), td(seconds=1))
418 eq(td(minutes=1), td(seconds=60))
419 eq(td(seconds=1), td(milliseconds=1000))
426 eq(td(minutes=1.0/60), td(seconds=1))
427 eq(td(seconds=0.001), td(milliseconds=1))
487 eq(td(seconds=1) * 0.123456, td(microseconds=123456))
488 eq(td(seconds=1) * 0.6112295, td(microseconds=611229))
505 eq(td(seconds=1) / (1 / 0.6112295), td(microseconds=611229)
    [all...]
  /developers/build/prebuilts/gradle/WatchFace/Application/src/main/java/com/example/android/wearable/watchface/
DigitalWatchFaceCompanionConfigActivity.java 162 setUpColorPickerSelection(R.id.seconds, KEY_SECONDS_COLOR, config, R.string.color_gray);
167 setUpColorPickerListener(R.id.seconds, KEY_SECONDS_COLOR);
  /developers/samples/android/wearable/wear/WatchFace/Application/src/main/java/com/example/android/wearable/watchface/
DigitalWatchFaceCompanionConfigActivity.java 162 setUpColorPickerSelection(R.id.seconds, KEY_SECONDS_COLOR, config, R.string.color_gray);
167 setUpColorPickerListener(R.id.seconds, KEY_SECONDS_COLOR);
  /development/samples/browseable/WatchFace/Application/src/com.example.android.wearable.watchface/
DigitalWatchFaceCompanionConfigActivity.java 162 setUpColorPickerSelection(R.id.seconds, KEY_SECONDS_COLOR, config, R.string.color_gray);
167 setUpColorPickerListener(R.id.seconds, KEY_SECONDS_COLOR);
  /external/autotest/contrib/
remove_old_tests_in_tko.sql 7 -- Delete tko_tests older than 180 days in batches of 5k. Wait for 5 seconds to
  /external/drrickorang/LoopbackApp/app/src/main/java/org/drrickorang/loopback/
CaptureHolder.java 120 long seconds = TimeUnit.MILLISECONDS.toSeconds(timeFromTestStartMS) - local
122 String timeString = String.format("%02dh%02dm%02ds", hours, minutes, seconds);
  /external/eigen/bench/tensors/
benchmark_main.cc 173 double seconds = static_cast<double>(g_benchmark_total_time_ns)/1e9; local
174 snprintf(throughput, sizeof(throughput), " %8.2f MFlops/s", mflops_processed/seconds);
  /external/google-benchmark/src/
timers.cc 87 return (static_cast<double>(info.user_time.seconds) +
89 static_cast<double>(info.system_time.seconds) +
  /external/libcxx/test/libcxx/experimental/filesystem/
convert_file_time.sh.cpp 143 static_assert(is_representable(FileTimeT(seconds(max_time_t))), "");
144 static_assert(is_representable(FileTimeT(seconds(min_time_t))), "");
  /external/libcxx/utils/google-benchmark/src/
timers.cc 87 return (static_cast<double>(info.user_time.seconds) +
89 static_cast<double>(info.system_time.seconds) +

Completed in 1636 milliseconds

<<21222324252627282930>>