Home
last modified time | relevance | path

Searched refs:time (Results 851 - 875 of 5040) sorted by relevance

1...<<31323334353637383940>>...202

/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/test/unittest/common/syncer/
H A Dkv_virtual_device.cpp35 int KvVirtualDevice::PutData(const Key &key, const Value &value, const Timestamp &time, int flag) in PutData() argument
38 LOGI("dev %s put data time %" PRIu64, deviceId_.c_str(), time); in PutData()
39 return syncAble->PutData(key, value, time, flag); in PutData()
/foundation/graphic/graphic_2d/rosen/modules/composer/vsync/test/systemtest/
H A Dvsync_setvsyncrate_test.cpp40 static void OnVSync(int64_t time, void *data) in OnVSync() argument
42 onVsyncPeriod = time - lastTimeStamp; in OnVSync()
43 lastTimeStamp = time; in OnVSync()
/third_party/ffmpeg/libavcodec/
H A Djacosubdec.c27 #include <time.h>
35 #undef time macro
46 time_t now = time(0); in insert_datetime()
74 {"\\T", "%H:%M", insert_datetime}, // current time
/third_party/ffmpeg/libavformat/
H A Dmovenc.h81 int64_t time; member
91 uint64_t time; member
196 int64_t time; member
/third_party/googletest/googletest/test/
H A Dgtest_xml_test_utils.py54 Exceptions are any attribute named "time", which needs only be
158 * The "time" attribute of <testsuites>, <testsuite> and <testcase>
182 time = element.getAttributeNode('time')
183 time.value = re.sub(r'^\d+(\.\d+)?$', '*', time.value)
/third_party/icu/tools/cldr/cldr-to-icu/src/main/java/org/unicode/icu/tool/cldrtoicu/
H A DIcuFunctions.java8 import java.time.LocalDate;
9 import java.time.LocalDateTime;
10 import java.time.ZoneOffset;
/third_party/lzma/CPP/7zip/Crypto/
H A DRandGen.cpp48 #include <time.h>
50 #include <sys/time.h>
182 const time_t v2 = time(NULL); in Init()
/third_party/node/deps/v8/tools/chrome/
H A Dlinux_perf.py15 import time namespace
154 time.sleep(options.timeout)
163 time.sleep(1)
/third_party/musl/porting/liteos_a/kernel/include/
H A Dtime.h36 #include <sys/time.h>
58 time_t time (time_t *);
150 __REDIR(time, __time64);
/third_party/littlefs/scripts/
H A Dtailpipe.py19 import time namespace
118 time.sleep(sleep or 0.01)
132 time.sleep(sleep or 0.1)
/third_party/node/deps/v8/src/base/platform/
H A Dplatform-aix.cc14 #include <sys/time.h>
54 const char* LocalTimezone(double time) override;
73 time_t utc = time(nullptr); in LocalTimeOffset()
/third_party/rust/crates/bindgen/bindgen-tests/tests/expectations/tests/
H A Dissue-1291.rs18 pub time: f32,
104 unsafe { ::std::ptr::addr_of!((*ptr).time) as usize - ptr as usize }, in bindgen_test_layout_RTCRay()
110 stringify!(time) in bindgen_test_layout_RTCRay()
/third_party/python/Lib/test/
H A Dbisect_cmd.py28 import time namespace
131 start_time = time.monotonic()
168 dt = math.ceil(time.monotonic() - start_time)
H A Dtest_winsound.py4 import time namespace
61 time.sleep(0.5)
142 time.sleep(0.5)
/third_party/python/Lib/test/support/
H A Dinterpreters.py3 import time namespace
157 time.sleep(_delay)
186 time.sleep(2)
/third_party/vk-gl-cts/external/vulkan-docs/src/scripts/
H A Dextdependency.py196 import time namespace
197 startTime = time.process_time()
202 endTime = time.process_time()
205 print('Total time = {} time/loop = {}'.format(deltaT, deltaT / args.loops))
/third_party/skia/third_party/externals/swiftshader/src/Main/
H A DFrameBufferX11.cpp162 double time = sw::Timer::seconds(); in blit() local
163 double delta = time - fpsTime; in blit()
173 fpsTime = time; in blit()
/third_party/skia/third_party/externals/swiftshader/third_party/marl/tools/cmd/benchdiff/
H A Dmain.go28 "time"
34 minDiff = flag.Duration("min-diff", time.Microsecond*10, "Filter away time diffs less than this duration")
91 a time.Duration
92 b time.Duration
/foundation/multimedia/media_library/frameworks/services/media_dfx/src/
H A Ddfx_manager.cpp75 void DfxManager::HandleTimeOutOperation(std::string &bundleName, int32_t type, int32_t object, int32_t time) in HandleTimeOutOperation() argument
81 dfxReporter_->ReportTimeOutOperation(bundleName, type, object, time); in HandleTimeOutOperation()
292 int64_t time = MediaFileUtils::UTCTimeSeconds(); in HandleHalfDayMissions() local
293 prefs->PutLong(LAST_HALF_DAY_REPORT_TIME, time); in HandleHalfDayMissions()
611 int64_t time = prefs->GetLong(CLOUD_SYNC_START_TIME, 0); in SetStartTime() local
613 if (time != 0) { in SetStartTime()
616 time = MediaFileUtils::UTCTimeSeconds(); in SetStartTime()
617 prefs->PutLong(CLOUD_SYNC_START_TIME, time); in SetStartTime()
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/test/unittest/common/interfaces/
H A Ddistributeddb_interfaces_auto_launch_test.cpp304 Timestamp time = 100; // initial valid timestamp. in PutSyncData() local
305 kvStore->GetMaxTimestamp(time); in PutSyncData()
307 time += 10; // add the diff for 10. in PutSyncData()
309 time -= 10; // add the diff for -10. in PutSyncData()
311 vect.push_back({key, value, time, 0, DBCommon::TransferHashString("deviceB")}); in PutSyncData()
529 void SetAutoLaunchLifeCycleTime(const std::string &storeId, uint32_t time) in SetAutoLaunchLifeCycleTime() argument
531 LOGI("SetAutoLifeTime:%u", time); in SetAutoLaunchLifeCycleTime()
537 EXPECT_EQ(connection->Pragma(PRAGMA_SET_AUTO_LIFE_CYCLE, static_cast<PragmaData>(&time)), E_OK); in SetAutoLaunchLifeCycleTime()
628 * @tc.steps: step5. Check the notifier for waiting for more than the life time of the auto launched database. in HWTEST_F()
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/util/
H A DTrieMapTest.java178 public void time(int repeat) { in timeIteration()
188 logln("\titeration time\tTREEMAP\tn/a\t" + t.toString(testMap.size()) + "\t\titerations=" + t.getIterations()); in timeIteration()
190 logln("\titeration time\tHASHMAP\tn/a\t" + t.toString(testMap.size(), comparisonTime) + "\titerations=" + t.getIterations()); in timeIteration()
196 public void time(int repeat) { in timeIteration()
205 logln("\titeration time\t" + style + "\tn/a\t" + t.toString(testMap.size(), comparisonTime) + "\titerations=" + t.getIterations()); in timeIteration()
319 public void time(int repeat) { in timeBuilding()
325 logln("\tbuild time\tTREEMAP\tn/a\t" + t.toString(testmap.size()) + "\t\titerations=" + t.getIterations()); in timeBuilding()
330 public void time(int repeat) { in timeBuilding()
336 logln("\tbuild time\tHASHMAP\tn/a\t" + t.toString(testmap.size(), comparisonTime) + "\titerations=" + t.getIterations()); in timeBuilding()
342 public void time(in in timeBuilding()
506 abstract public void time(int repeat); time() method in TrieMapTest.MyLoop
[all...]
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/
H A DTrieMapTest.java175 public void time(int repeat) { in timeIteration()
185 logln("\titeration time\tTREEMAP\tn/a\t" + t.toString(testMap.size()) + "\t\titerations=" + t.getIterations()); in timeIteration()
187 logln("\titeration time\tHASHMAP\tn/a\t" + t.toString(testMap.size(), comparisonTime) + "\titerations=" + t.getIterations()); in timeIteration()
193 public void time(int repeat) { in timeIteration()
202 logln("\titeration time\t" + style + "\tn/a\t" + t.toString(testMap.size(), comparisonTime) + "\titerations=" + t.getIterations()); in timeIteration()
316 public void time(int repeat) { in timeBuilding()
322 logln("\tbuild time\tTREEMAP\tn/a\t" + t.toString(testmap.size()) + "\t\titerations=" + t.getIterations()); in timeBuilding()
327 public void time(int repeat) { in timeBuilding()
333 logln("\tbuild time\tHASHMAP\tn/a\t" + t.toString(testmap.size(), comparisonTime) + "\titerations=" + t.getIterations()); in timeBuilding()
339 public void time(in in timeBuilding()
503 abstract public void time(int repeat); time() method in TrieMapTest.MyLoop
[all...]
/third_party/node/lib/internal/console/
H A Dconstructor.js397 time(label = 'default') {
401 process.emitWarning(`Label '${label}' already exists for console.time()`);
404 trace(kTraceBegin, kTraceConsoleCategory, `time::${label}`, 0);
412 trace(kTraceEnd, kTraceConsoleCategory, `time::${label}`, 0);
422 trace(kTraceInstant, kTraceConsoleCategory, `time::${label}`, 0);
618 const time = self._times.get(label);
619 if (time === undefined) {
623 const duration = process.hrtime(time);
/foundation/communication/wifi/wifi/test/wifi_standard/wifi_framework/wifi_manage/wifi_scan/
H A Dscan_service_test.cpp867 time_t now = time(nullptr); in AllowSystemTimerScanFail5()
982 time_t now = time(nullptr); in GetAllowBandFreqsControlInfoSuccess1()
999 time_t now = time(nullptr); in GetAllowBandFreqsControlInfoSuccess2()
1193 time_t now = time(nullptr); in AllowScanDuringCustomSceneSuccess1()
1207 time_t now = time(nullptr); in AllowScanDuringCustomSceneSuccess2()
1221 time_t now = time(nullptr); in AllowScanDuringCustomSceneFail1()
1239 time_t now = time(nullptr); in AllowScanDuringCustomSceneFail2()
1257 time_t now = time(nullptr); in AllowScanDuringCustomSceneFail3()
1338 time_t fixedScanTime = time(nullptr) - 1; in PnoScanByIntervalSuccess2()
1347 time_t fixedScanTime = time(nullpt in PnoScanByIntervalSuccess3()
[all...]
/foundation/barrierfree/accessibility/common/interface/src/
H A Daccessible_ability_manager_service_proxy.cpp742 RetError AccessibleAbilityManagerServiceProxy::SetMouseAutoClick(const int32_t time) in SetMouseAutoClick() argument
754 if (!data.WriteInt32(time)) { in SetMouseAutoClick()
755 HILOG_ERROR("fail, connection write SetMouseAutoClick time"); in SetMouseAutoClick()
955 HILOG_ERROR("fail, connection write SetDaltonizationColorFilter time"); in SetDaltonizationColorFilter()
968 RetError AccessibleAbilityManagerServiceProxy::SetContentTimeout(const uint32_t time) in SetContentTimeout() argument
980 if (!data.WriteUint32(time)) { in SetContentTimeout()
981 HILOG_ERROR("fail, connection write SetContentTimeout time"); in SetContentTimeout()
1006 HILOG_ERROR("fail, connection write SetBrightnessDiscount time"); in SetBrightnessDiscount()
1031 HILOG_ERROR("fail, connection write SetAudioBalance time"); in SetAudioBalance()
1043 RetError AccessibleAbilityManagerServiceProxy::SetClickResponseTime(const uint32_t time) in SetClickResponseTime() argument
1093 SetIgnoreRepeatClickTime(const uint32_t time) SetIgnoreRepeatClickTime() argument
1188 GetMouseAutoClick(int32_t &time) GetMouseAutoClick() argument
1465 GetClickResponseTime(uint32_t& time) GetClickResponseTime() argument
1511 GetIgnoreRepeatClickTime(uint32_t& time) GetIgnoreRepeatClickTime() argument
[all...]

Completed in 18 milliseconds

1...<<31323334353637383940>>...202