Home
last modified time | relevance | path

Searched refs:results (Results 326 - 350 of 1501) sorted by relevance

1...<<11121314151617181920>>...61

/foundation/communication/netmanager_base/test/netstatsmanager/unittest/net_stats_manager_test/
H A Dnet_stats_info_test.cpp111 std::vector<NetStatsInfo> results; in HWTEST_F() local
112 EXPECT_TRUE(NetStatsInfo::Unmarshalling(parcel, results)); in HWTEST_F()
130 std::unordered_map<uint32_t, NetStatsInfo> results; in HWTEST_F() local
131 EXPECT_TRUE(NetStatsInfo::Unmarshalling(parcel, results)); in HWTEST_F()
/foundation/communication/wifi/wifi/test/wifi_standard/wifi_framework/wifi_manage/wifi_scan/Mock/
H A Dmock_wifi_manager.h53 virtual void DealScanInfoNotify(std::vector<InterScanInfo> &results, int instId = 0) = 0;
54 virtual void DealStoreScanInfoEvent(std::vector<InterScanInfo> &results, int instId = 0) = 0;
69 MOCK_METHOD2(DealScanInfoNotify, void(std::vector<InterScanInfo> &results, int));
70 MOCK_METHOD2(DealStoreScanInfoEvent, void(std::vector<InterScanInfo> &results, int));
/foundation/distributeddatamgr/kv_store/frameworks/innerkitsimpl/distributeddatafwk/src/
H A Dkvdb_notifier_stub.cpp62 std::map<std::string, Status> results; in OnSyncCompleted() local
64 if (!ITypesUtil::Unmarshal(data, results, sequenceId)) { in OnSyncCompleted()
65 ZLOGE("Unmarshal results size:%{public}zu, sequenceId:%{public}" PRIu64, results.size(), sequenceId); in OnSyncCompleted()
68 SyncCompleted(std::move(results), sequenceId); in OnSyncCompleted()
/third_party/node/test/fixtures/wpt/common/
H A DPrefixedLocalStorage.js103 results = regex.exec(document.location.href);
104 if (results && results[2]) {
105 this.prefix = results[2];
/third_party/protobuf/benchmarks/php/
H A DPhpBenchmark.php132 $results = array(); variable
153 array_push($results, runBenchmark($arg, $behavior_prefix));
158 print json_encode($results);
161 foreach ($results as $result) {
/third_party/python/Lib/lib2to3/
H A Dfixer_base.py86 results = {"node": node}
87 return self.pattern.match(node, results) and results
89 def transform(self, node, results):
94 results: a dict mapping symbolic names to part of the match.
H A Dbtm_matcher.py100 results = defaultdict(list)
120 results[fixer].append(current_ast_node)
134 results[fixer].append(current_ast_node)
137 return results
/third_party/skia/tools/skqp/
H A Dfind_commit_with_best_gold_results.py95 results = []
98 results.append((commit_hash, get_results_for_commit(commit_hash, jobs)))
100 best_result = max(r for h, r in results)
101 for h, r in results:
/third_party/skia/buildtools/checkdeps/
H A Dcpp_checker.py13 import results namespace
50 results.DependencyViolation if the line violates a rule, or None
60 return True, results.DependencyViolation(
80 return True, results.DependencyViolation(include_path, rule, rules)
87 dependee_status = results.DependeeStatus(filepath)
H A Dproto_checker.py13 import results namespace
53 results.DependencyViolation if the line violates a rule, or None
63 return True, results.DependencyViolation(
87 return True, results.DependencyViolation(import_path, rule, rules)
94 dependee_status = results.DependeeStatus(filepath)
/kernel/linux/linux-6.6/tools/testing/selftests/
H A Dkselftest_harness.h132 snprintf(_metadata->results->reason, \
133 sizeof(_metadata->results->reason), fmt, ##__VA_ARGS__); \
136 _metadata->results->reason); \
845 struct __test_results *results; member
1119 memset(t->results->reason, 0, sizeof(t->results->reason)); in __run_test()
1149 ksft_test_result_skip("%s\n", t->results->reason[0] ? in __run_test()
1150 t->results->reason : "unknown"); in __run_test()
1161 struct __test_results *results; in test_harness_run() local
1185 results in test_harness_run()
[all...]
/foundation/resourceschedule/device_usage_statistics/test/unittest/
H A Ddevice_usage_statistics_multi_test.cpp237 std::vector<BundleActiveModuleRecord> results; in MultiTestQueryModuleUsageRecords() local
238 int32_t errCode = BundleActiveClient::GetInstance().QueryModuleUsageRecords(maxNum, results, g_defaultUserId); in MultiTestQueryModuleUsageRecords()
240 EXPECT_EQ(results.size(), 0); in MultiTestQueryModuleUsageRecords()
242 results.clear(); in MultiTestQueryModuleUsageRecords()
244 errCode = BundleActiveClient::GetInstance().QueryModuleUsageRecords(maxNum, results, g_defaultUserId); in MultiTestQueryModuleUsageRecords()
247 results.clear(); in MultiTestQueryModuleUsageRecords()
249 errCode = BundleActiveClient::GetInstance().QueryModuleUsageRecords(maxNum, results, g_defaultUserId); in MultiTestQueryModuleUsageRecords()
/third_party/node/deps/v8/third_party/wasm-api/example/
H A Dtable.cc12 const wasm::Val args[], wasm::Val results[]
15 results[0] = wasm::Val(-args[0].i32());
55 wasm::Val results[1]; variable
56 if (func->call(args, results)) {
60 return results[0].copy();
65 wasm::Val results[1]; in check_trap() local
66 if (! func->call(args, results)) { in check_trap()
/third_party/skia/third_party/externals/libwebp/src/enc/
H A Dpicture_psnr_enc.c180 int type, float results[5]) { in WebPPictureDistortion()
187 results == NULL) { in WebPPictureDistortion()
205 // results are reported as BGRA in WebPPictureDistortion()
209 w, h, 4, type, &distortion, results + c)) { in WebPPictureDistortion()
216 results[4] = (type == 1) ? (float)GetLogSSIM(total_distortion, total_size) in WebPPictureDistortion()
248 int type, float results[5]) { in WebPPictureDistortion()
253 if (results == NULL) return 0; in WebPPictureDistortion()
254 for (i = 0; i < 5; ++i) results[i] = 0.f; in WebPPictureDistortion()
179 WebPPictureDistortion(const WebPPicture* src, const WebPPicture* ref, int type, float results[5]) WebPPictureDistortion() argument
247 WebPPictureDistortion(const WebPPicture* src, const WebPPicture* ref, int type, float results[5]) WebPPictureDistortion() argument
/third_party/benchmark/src/
H A Dbenchmark.cc73 // until the results are considered significant.
84 // Minimum number of seconds a benchmark should be run before results should be
87 // Note: results gathered within this period are discarded and not used for
262 if (internal::NotSkipped == manager_->results.skipped_) { in SkipWithMessage()
263 manager_->results.skip_message_ = msg; in SkipWithMessage()
264 manager_->results.skipped_ = skipped_; in SkipWithMessage()
275 if (internal::NotSkipped == manager_->results.skipped_) { in SkipWithError()
276 manager_->results.skip_message_ = msg; in SkipWithError()
277 manager_->results.skipped_ = skipped_; in SkipWithError()
290 manager_->results in SetLabel()
[all...]
/third_party/vixl/test/aarch32/
H A Dtest-simulator-cond-rd-operand-const-t32.cc585 TestResult* results[ARRAY_SIZE(kTests)]; in TestHelper() local
594 // Allocate results on the heap for this test. in TestHelper()
595 results[i] = new TestResult; in TestHelper()
596 results[i]->outputs = new Inputs[kTests[i].input_size]; in TestHelper()
597 results[i]->output_size = kTests[i].input_size; in TestHelper()
625 __ Mov(result_ptr, Operand::From(results[i]->outputs)); in TestHelper()
667 // Print the results. in TestHelper()
672 for (size_t j = 0; j < results[i]->output_size; j++) { in TestHelper()
674 printf("0x%08" PRIx32, results[i]->outputs[j].apsr); in TestHelper()
676 printf("0x%08" PRIx32, results[ in TestHelper()
[all...]
/third_party/typescript/tests/baselines/reference/
H A DbadArrayIndex.js2 var results = number[]; variable
5 var results = number[]; variable
/foundation/communication/wifi/wifi/services/wifi_standard/wifi_framework/wifi_manage/wifi_native/client/hdi_client/
H A Dwifi_hdi_wpa_client.cpp136 ScanInfo *results = HdiWpaStaGetScanInfos(&size, GetHdiStaIfaceName(INSTID_WLAN0)); in QueryScanInfos() local
137 if (results == NULL) { in QueryScanInfos()
142 tmp.ssid = results[i].ssid; in QueryScanInfos()
143 tmp.bssid = results[i].bssid; in QueryScanInfos()
144 tmp.frequency = results[i].freq; in QueryScanInfos()
145 tmp.rssi = results[i].siglv; in QueryScanInfos()
146 tmp.timestamp = results[i].timestamp; in QueryScanInfos()
147 tmp.capabilities = results[i].flags; in QueryScanInfos()
148 tmp.channelWidth = (WifiChannelWidth)results[i].channelWidth; in QueryScanInfos()
149 tmp.centerFrequency0 = results[ in QueryScanInfos()
[all...]
/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/service/data_share/
H A Ddata_share_service_impl.cpp262 std::vector<OperationResult> results;
267 return results;
277 results.emplace_back(item.key_, result);
289 return results;
308 std::vector<OperationResult> results;
311 results.emplace_back(uri, subscribeStrategy_.Execute(context, [&id, &observer, &context, this]() {
316 return results;
322 std::vector<OperationResult> results;
325 results.emplace_back(uri, subscribeStrategy_.Execute(context, [&id, &context]() {
330 return results;
[all...]
/third_party/node/test/common/
H A Dwpt.js61 this.results = [];
84 this.results.push(result);
90 this.results = this.results.filter((result) => {
101 this.results = [...prev.results, ...this.results];
420 this.results = {};
649 console.log(JSON.stringify(Object.keys(this.results).sort().reduce(
651 obj[key] = this.results[ke
[all...]
/third_party/python/Lib/lib2to3/tests/data/fixers/myfixes/
H A Dfix_parrot.py11 def transform(self, node, results):
12 name = results["name"]
/foundation/communication/wifi/wifi/services/wifi_standard/wifi_framework/wifi_toolkit/config/
H A Dwifi_scan_config.h62 int SaveScanInfoList(const std::vector<WifiScanInfo> &results);
66 int GetScanInfoList(std::vector<WifiScanInfo> &results);
68 void GetScanInfoListInner(std::vector<WifiScanInfo> &results);
/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/service/kvdb/
H A Dkvdb_notifier_proxy.cpp59 void KVDBNotifierProxy::SyncCompleted(const std::map<std::string, Status> &results, uint64_t sequenceId) in SyncCompleted() argument
63 KVDBNotifierCode::TRANS_SYNC_COMPLETED), reply, results, sequenceId); in SyncCompleted()
65 ZLOGE("status:%{public}d, results size:%{public}zu, sequenceId:%{public}" PRIu64, in SyncCompleted()
66 status, results.size(), sequenceId); in SyncCompleted()
/foundation/distributeddatamgr/data_object/frameworks/innerkitsimpl/include/adaptor/
H A Dobject_callback_impl.h27 void Completed(const std::map<std::string, int32_t> &results) override;
46 void Completed(const std::map<std::string, std::vector<uint8_t>> &results, bool allReady) override;
56 void Completed(const std::map<std::string, std::vector<uint8_t>> &results, bool allReady) override;
/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/service/object/
H A Dobject_callback_proxy.h33 void Completed(const std::map<std::string, int32_t> &results) override;
63 void Completed(const std::map<std::string, std::vector<uint8_t>> &results, bool allReady) override;
78 void Completed(const std::map<std::string, std::vector<uint8_t>> &results, bool allReady) override;

Completed in 12 milliseconds

1...<<11121314151617181920>>...61