HomeSort by relevance Sort by last modified time
    Searched refs:seconds (Results 276 - 300 of 1395) sorted by null

<<11121314151617181920>>

  /external/protobuf/src/google/protobuf/
timestamp.pb.cc 85 "e.protobuf\"+\n\tTimestamp\022\017\n\007seconds\030\001 \001(\003"
230 // optional int64 seconds = 1;
283 // optional int64 seconds = 1;
284 if (this->seconds() != 0) {
285 ::google::protobuf::internal::WireFormatLite::WriteInt64(1, this->seconds(), output);
299 // optional int64 seconds = 1;
300 if (this->seconds() != 0) {
301 target = ::google::protobuf::internal::WireFormatLite::WriteInt64ToArray(1, this->seconds(), target);
317 // optional int64 seconds = 1;
318 if (this->seconds() != 0)
420 ::google::protobuf::int64 Timestamp::seconds() const { function in class:google::protobuf::Timestamp
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/timezone/
TimeZoneAliasTest.java 48 Zone.Seconds seconds = new Zone.Seconds(); local
76 if (zone.findOffsetOrdering(otherZone, seconds) != 0) {
78 + " differ at " + seconds);
92 Zone.Seconds diffDate = new Zone.Seconds();
182 Zone.Seconds diffDate = new Zone.Seconds();
228 public static class Seconds {
229 public long seconds = Long.MIN_VALUE; field in class:TimeZoneAliasTest.Zone.Seconds
304 long seconds = 0; local
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/timezone/
TimeZoneAliasTest.java 47 Zone.Seconds seconds = new Zone.Seconds(); local
75 if (zone.findOffsetOrdering(otherZone, seconds) != 0) {
77 + " differ at " + seconds);
91 Zone.Seconds diffDate = new Zone.Seconds();
181 Zone.Seconds diffDate = new Zone.Seconds();
227 public static class Seconds {
228 public long seconds = Long.MIN_VALUE; field in class:TimeZoneAliasTest.Zone.Seconds
303 long seconds = 0; local
    [all...]
  /external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/timescale/
GenerateCTimeScaleData.java 40 private static final long seconds = milliseconds * 1000; field in class:GenerateCTimeScaleData
41 private static final long minutes = seconds * 60;
84 } else if (units == seconds) {
85 cargs[0] = "seconds";
  /external/linux-kselftest/tools/testing/selftests/timers/
inconsistency-check.c 105 int consistency_test(int clock_type, unsigned long seconds)
120 while (seconds == -1 || now - then < seconds) {
184 printf(" -t: Number of seconds to run\n");
  /system/core/liblog/include/log/
log.h 228 * if last is NULL, caller _must_ provide a consistent value for seconds.
233 int __android_log_ratelimit(time_t seconds, time_t* last);
243 * // local state, 10 seconds ratelimit
251 #define IF_ALOG_RATELIMIT_LOCAL(seconds, state) \
252 if (__android_log_ratelimit(seconds, state) > 0)
  /bootable/recovery/
stub_ui.h 32 void ShowProgress(float portion, float seconds) override {}
  /external/autotest/client/cros/video/
sequence_generator.py 83 return [datetime.timedelta(seconds=t) for t in randomized_time_seq]
  /external/autotest/client/site_tests/power_BacklightSuspend/
power_BacklightSuspend.py 29 sys_power.kernel_suspend(seconds=5, state=suspend_state)
  /external/autotest/client/site_tests/power_LoadTest/extension/
urls.js 39 start: seconds(1),
41 delay: seconds(60), // A minute on each page
42 timeout: seconds(30),
50 start: minutes(36) + seconds(1),
51 duration: minutes(12) - seconds(1),
53 timeout: seconds(30),
68 timeout: seconds(30),
82 timeout: seconds(30),
  /external/google-benchmark/src/
benchmark.cc 59 "Minimum number of seconds we should run benchmark before "
180 void SetIterationTime(double seconds) { manual_time_used_ += seconds; }
210 // Manually set iteration time. User sets this with SetIterationTime(seconds).
219 double seconds) {
233 if (results.bytes_processed > 0 && seconds > 0.0) {
234 bytes_per_second = (results.bytes_processed / seconds);
237 if (results.items_processed > 0 && seconds > 0.0) {
238 items_per_second = (results.items_processed / seconds);
321 double seconds = results.cpu_time_used local
    [all...]
  /external/libcxx/utils/google-benchmark/src/
benchmark.cc 59 "Minimum number of seconds we should run benchmark before "
180 void SetIterationTime(double seconds) { manual_time_used_ += seconds; }
210 // Manually set iteration time. User sets this with SetIterationTime(seconds).
219 double seconds) {
233 if (results.bytes_processed > 0 && seconds > 0.0) {
234 bytes_per_second = (results.bytes_processed / seconds);
237 if (results.items_processed > 0 && seconds > 0.0) {
238 items_per_second = (results.items_processed / seconds);
321 double seconds = results.cpu_time_used local
    [all...]
  /external/pdfium/fpdfsdk/
cpdfsdk_datetime.h 35 CPDFSDK_DateTime& AddSeconds(int seconds);
  /external/protobuf/objectivec/google/protobuf/
Duration.pbobjc.h 40 /// as a count of seconds and fractions of seconds at nanosecond
52 /// duration.seconds = end.seconds - start.seconds;
55 /// if (duration.seconds < 0 && duration.nanos > 0) {
56 /// duration.seconds += 1;
58 /// } else if (durations.seconds > 0 && duration.nanos < 0) {
59 /// duration.seconds -= 1;
69 /// end.seconds = start.seconds + duration.seconds
83 @property(nonatomic, readwrite) int64_t seconds; variable
    [all...]
Timestamp.pbobjc.h 40 /// or calendar, represented as seconds and fractions of seconds at
44 /// seconds long, i.e. leap seconds are "smeared" so that no leap second
73 /// // is 11644473600 seconds before Unix epoch 1970-01-01T00:00:00Z.
89 /// seconds = int(now)
90 /// nanos = int((now - seconds) * 10**9)
91 /// timestamp = Timestamp(seconds=seconds, nanos=nanos)
94 /// Represents seconds of UTC time since Unix epoc
97 @property(nonatomic, readwrite) int64_t seconds; variable
    [all...]
  /external/protobuf/python/google/protobuf/internal/
json_format_test.py 252 message.value.seconds = 0
254 message.repeated_value.add().seconds = 20
256 message.repeated_value.add().seconds = 0
258 message.repeated_value.add().seconds = 100000000
261 message.repeated_value.add().seconds = 253402300799
264 message.repeated_value.add().seconds = -62135596800
285 self.assertEqual(parsed_message.value.seconds, -8 * 3600)
287 self.assertEqual(parsed_message.repeated_value[0].seconds, -8.5 * 3600)
288 self.assertEqual(parsed_message.repeated_value[1].seconds, 3600 + 23 * 60)
292 message.value.seconds =
    [all...]
  /external/swiftshader/src/Common/
Timer.cpp 37 double Timer::seconds() function in class:sw::Timer
  /external/webrtc/webrtc/modules/rtp_rtcp/source/rtcp_packet/
rrtr_unittest.cc 46 EXPECT_EQ(kNtpSec, parsed.ntp().seconds());
  /frameworks/rs/tests/lldb/cpp/InfiniteLoop/
InfiniteLoop.cpp 42 // Test is designed to loop forever, waits for two seconds
48 std::this_thread::sleep_for(std::chrono::seconds(2));
  /hardware/interfaces/radio/1.0/vts/functional/
sap_hidl_hal_test.cpp 45 status = cv.wait_until(lock, now + std::chrono::seconds(TIMEOUT_PERIOD));
  /prebuilts/go/darwin-x86/misc/cgo/test/
issue1560.go 9 long long mysleep(int seconds);
48 t.Fatalf("parallel %d-second sleeps slept for %f seconds", sleepSec, dt.Seconds())
  /prebuilts/go/linux-x86/misc/cgo/test/
issue1560.go 9 long long mysleep(int seconds);
48 t.Fatalf("parallel %d-second sleeps slept for %f seconds", sleepSec, dt.Seconds())
  /system/bt/embdrv/sbc/decoder/include/
oi_time.h 29 * Timeouts are specified as tenths of seconds in a 32-bit value. Timeout values
30 * specified by the Bluetooth specification are usually muliple seconds, so
33 * This file also contains macros to convert between seconds and the Link
53 * seconds.
64 * Macro to convert seconds to OI_INTERVAL time units
92 int32_t seconds; member in struct:__anon106033
124 * seconds.
167 * Convert seconds to the Link Manager 1.28-second units
175 * Convert Link Manager 1.28-second units to seconds.
  /system/update_engine/
libcurl_http_fetcher.h 77 // (more than a few seconds perhaps) before you call
79 void set_idle_seconds(int seconds) override { idle_seconds_ = seconds; }
82 void set_retry_seconds(int seconds) override { retry_seconds_ = seconds; }
237 // Seconds to wait before retrying a resume.
247 // Seconds to wait before asking libcurl to "perform".
  /tools/test/connectivity/acts/framework/acts/controllers/relay_lib/
relay.py 127 def set_no_for(self, seconds=button_press_time):
128 """Sets the relay to 'NORMALLY_OPEN' for seconds. Blocks the thread.
131 seconds: The number of seconds to sleep for.
134 sleep(seconds)
137 def set_nc_for(self, seconds=button_press_time):
138 """Sets the relay to 'NORMALLY_CLOSED' for seconds. Blocks the thread.
143 seconds: The number of seconds to sleep for.
146 sleep(seconds)
    [all...]

Completed in 2368 milliseconds

<<11121314151617181920>>