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

<<11121314151617181920>>

  /prebuilts/go/linux-x86/src/cmd/vendor/github.com/google/pprof/internal/symbolz/
symbolz_test.go 30 "http://host:8000/profilez?seconds=5": "http://host:8000/symbolz",
31 "http://host:8000/profilez?seconds=5&format=proto": "http://host:8000/symbolz",
34 "http://host:8000/debug/pprof/profile?seconds=10": "http://host:8000/debug/pprof/symbol",
  /external/autotest/server/site_tests/firmware_ECLidSwitch/
firmware_ECLidSwitch.py 14 def delayed(seconds):
17 t = Timer(seconds, f, args, kargs)
  /external/drrickorang/LoopbackApp/app/src/main/java/org/drrickorang/loopback/
GlitchAndCallbackHeatMapView.java 351 for (int seconds = 0; seconds <= testDurationSeconds - secondsPerTick;
352 seconds += secondsPerTick) {
353 float xPos = startXPos + (((float) seconds / testDurationSeconds) * width);
356 canvas.drawText(String.format("%dh:%02dm", seconds / SECONDS_PER_HOUR,
357 (seconds / SECONDS_PER_MINUTE) % MINUTES_PER_HOUR),
360 canvas.drawText(String.format("%dm:%02ds", seconds / SECONDS_PER_MINUTE,
361 seconds % SECONDS_PER_MINUTE),
  /external/eigen/lapack/
dsecnd_NONE.f 19 *> DSECND returns nothing instead of returning the user time for a process in seconds.
second_NONE.f 19 *> SECOND returns nothing instead of returning the user time for a process in seconds.
  /external/golang-protobuf/ptypes/
duration.go 46 // Range of a durpb.Duration in seconds, as specified in
47 // google/protobuf/duration.proto. This is about 10,000 years in seconds.
60 if d.Seconds < minSeconds || d.Seconds > maxSeconds {
61 return fmt.Errorf("duration: %v: seconds out of range", d)
66 // Seconds and Nanos must have the same sign, unless d.Nanos is zero.
67 if (d.Seconds < 0 && d.Nanos > 0) || (d.Seconds > 0 && d.Nanos < 0) {
68 return fmt.Errorf("duration: %v: seconds and nanos have different signs", d)
80 d := time.Duration(p.Seconds) * time.Secon
    [all...]
  /external/libcxx/test/std/experimental/filesystem/fs.op.funcs/fs.op.last_write_time/
last_write_time.pass.cpp 84 file_time_type tp(seconds(-5));
104 auto max_sec = duration_cast<seconds>(file_time_type::max().time_since_epoch()).count();
146 auto sec = duration_cast<seconds>(tp.time_since_epoch()).count();
204 using Sec = std::chrono::seconds;
245 using Sec = std::chrono::seconds;
260 // when the number of seconds is '-1'.
309 using Sec = std::chrono::seconds;
342 using Sec = std::chrono::seconds;
380 using Sec = std::chrono::seconds;
  /external/llvm/test/Bindings/OCaml/
irreader.ml 9 (* Note: It takes several seconds for ocamlopt to link an executable with
passmgr_builder.ml 9 (* Note: It takes several seconds for ocamlopt to link an executable with
vectorize.ml 9 (* Note: It takes several seconds for ocamlopt to link an executable with
  /external/protobuf/src/google/protobuf/
duration.pb.h 100 // optional int64 seconds = 1;
103 ::google::protobuf::int64 seconds() const;
135 // optional int64 seconds = 1;
139 inline ::google::protobuf::int64 Duration::seconds() const { function in class:google::protobuf::Duration
140 // @@protoc_insertion_point(field_get:google.protobuf.Duration.seconds)
146 // @@protoc_insertion_point(field_set:google.protobuf.Duration.seconds)
timestamp.pb.h 110 // optional int64 seconds = 1;
113 ::google::protobuf::int64 seconds() const;
148 // optional int64 seconds = 1;
152 inline ::google::protobuf::int64 Timestamp::seconds() const { function in class:google::protobuf::Timestamp
153 // @@protoc_insertion_point(field_get:google.protobuf.Timestamp.seconds)
159 // @@protoc_insertion_point(field_set:google.protobuf.Timestamp.seconds)
  /external/python/cpython2/Doc/includes/
tzinfo-examples.py 46 STDOFFSET = timedelta(seconds = -_time.timezone)
48 DSTOFFSET = timedelta(seconds = -_time.altzone)
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/types/
TimestampTagTest.java 99 int seconds = cal.get(Calendar.SECOND); // 0..59 local
103 + String.valueOf(minutes) + ":" + String.valueOf(seconds) + " ("
  /external/stressapptest/src/
sattypes.h 164 // Convert microseconds argument to nano seconds.
170 inline bool sat_sleep(time_t seconds) {
172 req.tv_sec = seconds;
  /external/swiftshader/src/Main/
FrameBufferX11.cpp 150 static double fpsTime = sw::Timer::seconds();
153 double time = sw::Timer::seconds();
  /external/swiftshader/third_party/LLVM/test/Bindings/Ocaml/
target.ml 6 (* Note: It takes several seconds for ocamlopt to link an executable with
  /libcore/ojluni/src/test/java/time/tck/java/time/
TCKZoneOffset.java 640 private void doTestOffset(ZoneOffset offset, int hours, int minutes, int seconds) {
641 assertEquals(offset.getTotalSeconds(), hours * 60 * 60 + minutes * 60 + seconds);
643 if (hours == 0 && minutes == 0 && seconds == 0) {
646 String str = (hours < 0 || minutes < 0 || seconds < 0) ? "-" : "+";
650 if (seconds != 0) {
652 str += Integer.toString(Math.abs(seconds) + 100).substring(1);
657 assertEquals(offset, ZoneOffset.ofHoursMinutesSeconds(hours, minutes, seconds));
658 if (seconds == 0) {
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/LTO/legacy/
ThinLTOCodeGenerator.h 151 /// Cache policy: interval (seconds) between two prune of the cache. Set to a
155 CacheOptions.Policy.Interval = std::chrono::seconds(Interval);
158 /// Cache policy: expiration (in seconds) for an entry.
162 CacheOptions.Policy.Expiration = std::chrono::seconds(Expiration);
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Support/
Chrono.h 44 LLVM_ATTRIBUTE_ALWAYS_INLINE inline TimePoint<std::chrono::seconds>
47 return time_point_cast<seconds>(system_clock::from_time_t(T));
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/LTO/legacy/
ThinLTOCodeGenerator.h 151 /// Cache policy: interval (seconds) between two prune of the cache. Set to a
155 CacheOptions.Policy.Interval = std::chrono::seconds(Interval);
158 /// Cache policy: expiration (in seconds) for an entry.
162 CacheOptions.Policy.Expiration = std::chrono::seconds(Expiration);
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/Support/
Chrono.h 44 LLVM_ATTRIBUTE_ALWAYS_INLINE inline TimePoint<std::chrono::seconds>
47 return time_point_cast<seconds>(system_clock::from_time_t(T));
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/LTO/legacy/
ThinLTOCodeGenerator.h 151 /// Cache policy: interval (seconds) between two prune of the cache. Set to a
155 CacheOptions.Policy.Interval = std::chrono::seconds(Interval);
158 /// Cache policy: expiration (in seconds) for an entry.
162 CacheOptions.Policy.Expiration = std::chrono::seconds(Expiration);
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/Support/
Chrono.h 44 LLVM_ATTRIBUTE_ALWAYS_INLINE inline TimePoint<std::chrono::seconds>
47 return time_point_cast<seconds>(system_clock::from_time_t(T));
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/LTO/legacy/
ThinLTOCodeGenerator.h 151 /// Cache policy: interval (seconds) between two prune of the cache. Set to a
155 CacheOptions.Policy.Interval = std::chrono::seconds(Interval);
158 /// Cache policy: expiration (in seconds) for an entry.
162 CacheOptions.Policy.Expiration = std::chrono::seconds(Expiration);

Completed in 1234 milliseconds

<<11121314151617181920>>