Home
last modified time | relevance | path

Searched refs:result (Results 901 - 925 of 17103) sorted by relevance

1...<<31323334353637383940>>...685

/third_party/protobuf/src/google/protobuf/compiler/java/
H A Djava_name_resolver.cc203 std::string result = FileJavaPackage(descriptor, immutable); in GetClassName() local
204 if (!result.empty()) result += '.'; in GetClassName()
205 result += GetFileClassName(descriptor, immutable); in GetClassName()
206 return result; in GetClassName()
214 std::string result; in GetClassFullName() local
216 result = FileJavaPackage(file, immutable); in GetClassFullName()
218 result = GetClassName(file, immutable); in GetClassFullName()
220 if (!result.empty()) { in GetClassFullName()
221 result in GetClassFullName()
252 std::string result; GetJavaClassFullName() local
[all...]
/third_party/node/deps/npm/test/lib/commands/
H A Dprofile.js40 result: () => mock.joinedOutput(),
72 const { profile, result } = await mockProfile(t, { npmProfile: defaultNpmProfile })
75 t.matchSnapshot(result(), 'should output table with contents')
79 const { profile, result } = await mockProfile(t, {
86 t.same(JSON.parse(result()), userProfile, 'should output json profile result')
90 const { profile, result } = await mockProfile(t, {
96 t.matchSnapshot(result(), 'should output all profile info as parseable result')
100 const { profile, result }
[all...]
/third_party/skia/third_party/externals/sfntly/java/src/com/google/typography/font/sfntly/table/opentype/component/
H A DRuleExtractor.java68 GlyphList result = new GlyphList(); in extract()
70 glyphIds.copyTo(result); in extract()
72 return result; in extract()
79 GlyphList result = new GlyphList(); in extract()
81 result.add(record.value); in extract()
83 return result; in extract()
88 Map<Integer, GlyphGroup> result = new LinkedHashMap<Integer, GlyphGroup>(); in extract()
90 if (!result.containsKey(record.property)) { in extract()
91 result.put(record.property, new GlyphGroup()); in extract()
93 GlyphGroup existingGlyphs = result in extract()
[all...]
/foundation/communication/netmanager_base/services/netconnmanager/src/
H A Dnet_http_probe_result.cpp55 bool NetHttpProbeResult::operator==(const NetHttpProbeResult &result) const in operator ==()
57 if (IsSuccessful() && result.IsSuccessful()) { in operator ==()
60 if (IsNeedPortal() && result.IsNeedPortal() && (redirectUrl_ == result.redirectUrl_)) { in operator ==()
63 if (IsFailed() && result.IsFailed()) { in operator ==()
69 bool NetHttpProbeResult::operator!=(const NetHttpProbeResult &result) const in operator !=()
71 return !(*this == result); in operator !=()
74 NetHttpProbeResult &NetHttpProbeResult::operator=(const NetHttpProbeResult &result) in operator =() argument
76 responseCode_ = result.responseCode_; in operator =()
77 redirectUrl_ = result in operator =()
[all...]
/third_party/skia/third_party/externals/spirv-tools/source/fuzz/
H A Did_use_descriptor.cpp25 auto result = in FindInstructionContainingUse() local
27 if (!result) { in FindInstructionContainingUse()
30 if (id_use_descriptor.in_operand_index() >= result->NumInOperands()) { in FindInstructionContainingUse()
33 if (result->GetSingleWordInOperand(id_use_descriptor.in_operand_index()) != in FindInstructionContainingUse()
37 return result; in FindInstructionContainingUse()
44 protobufs::IdUseDescriptor result; in MakeIdUseDescriptor() local
45 result.set_id_of_interest(id_of_interest); in MakeIdUseDescriptor()
46 *result.mutable_enclosing_instruction() = enclosing_instruction; in MakeIdUseDescriptor()
47 result.set_in_operand_index(in_operand_index); in MakeIdUseDescriptor()
48 return result; in MakeIdUseDescriptor()
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/fuzz/
H A Did_use_descriptor.cpp25 auto result = in FindInstructionContainingUse() local
27 if (!result) { in FindInstructionContainingUse()
30 if (id_use_descriptor.in_operand_index() >= result->NumInOperands()) { in FindInstructionContainingUse()
33 if (result->GetSingleWordInOperand(id_use_descriptor.in_operand_index()) != in FindInstructionContainingUse()
37 return result; in FindInstructionContainingUse()
44 protobufs::IdUseDescriptor result; in MakeIdUseDescriptor() local
45 result.set_id_of_interest(id_of_interest); in MakeIdUseDescriptor()
46 *result.mutable_enclosing_instruction() = enclosing_instruction; in MakeIdUseDescriptor()
47 result.set_in_operand_index(in_operand_index); in MakeIdUseDescriptor()
48 return result; in MakeIdUseDescriptor()
[all...]
/third_party/spirv-tools/source/fuzz/
H A Did_use_descriptor.cpp25 auto result = in FindInstructionContainingUse() local
27 if (!result) { in FindInstructionContainingUse()
30 if (id_use_descriptor.in_operand_index() >= result->NumInOperands()) { in FindInstructionContainingUse()
33 if (result->GetSingleWordInOperand(id_use_descriptor.in_operand_index()) != in FindInstructionContainingUse()
37 return result; in FindInstructionContainingUse()
44 protobufs::IdUseDescriptor result; in MakeIdUseDescriptor() local
45 result.set_id_of_interest(id_of_interest); in MakeIdUseDescriptor()
46 *result.mutable_enclosing_instruction() = enclosing_instruction; in MakeIdUseDescriptor()
47 result.set_in_operand_index(in_operand_index); in MakeIdUseDescriptor()
48 return result; in MakeIdUseDescriptor()
[all...]
/foundation/communication/wifi/wifi/services/wifi_standard/wifi_framework/wifi_manage/wifi_native/client/hdi_client/hdi_interface/
H A Dwifi_hdi_wpa_sta_impl.c118 int32_t result = wpaObj->RegisterWpaEventCallback(wpaObj, g_hdiWpaStaCallbackObj[instId], ifaceName); in RegisterEventCallback() local
119 if (result != HDF_SUCCESS) { in RegisterEventCallback()
121 LOGE("RegisterEventCallback: RegisterEventCallback failed result:%{public}d", result); in RegisterEventCallback()
148 int32_t result = wpaObj->UnregisterWpaEventCallback(wpaObj, g_hdiWpaStaCallbackObj[instId], ifaceName); in UnRegisterEventCallback() local
149 if (result != HDF_SUCCESS) { in UnRegisterEventCallback()
151 LOGE("UnRegisterEventCallback: UnregisterEventCallback failed result:%{public}d", result); in UnRegisterEventCallback()
225 int32_t result = wpaObj->SetNetwork(wpaObj, ifaceName, networkId, g_wpaSsidFields[pos].fieldName, conf.cfgValue); in SetNetwork() local
226 if (result ! in SetNetwork()
351 int32_t result = wpaObj->SelectNetwork(wpaObj, ifaceName, networkId); HdiWpaStaConnect() local
377 int32_t result = wpaObj->Reconnect(wpaObj, ifaceName); HdiWpaStaReconnect() local
402 int32_t result = wpaObj->Reassociate(wpaObj, ifaceName); HdiWpaStaReassociate() local
427 int32_t result = wpaObj->Disconnect(wpaObj, ifaceName); HdiWpaStaDisconnect() local
494 int32_t result = wpaObj->WifiStatus(wpaObj, ifaceName, &status); HdiWpaStaGetDeviceMacAddress() local
532 int32_t result = wpaObj->Scan(wpaObj, GetHdiStaIfaceName(INSTID_WLAN0)); HdiWpaStaScan() local
580 int32_t result = wpaObj->ScanResult(wpaObj, ifaceName, resultBuff, &resultBuffLen); HdiWpaStaGetScanInfos() local
644 int32_t result = wpaObj->RemoveNetwork(wpaObj, ifaceName, networkId); HdiWpaStaRemoveNetwork() local
674 int32_t result = wpaObj->AddNetwork(wpaObj, ifaceName, networkId); HdiWpaStaAddNetwork() local
700 int32_t result = wpaObj->EnableNetwork(wpaObj, ifaceName, networkId); HdiWpaStaEnableNetwork() local
726 int32_t result = wpaObj->DisableNetwork(wpaObj, ifaceName, networkId); HdiWpaStaDisableNetwork() local
771 int32_t result = wpaObj->SaveConfig(wpaObj, ifaceName); HdiWpaStaSaveConfig() local
855 int32_t result = wpaObj->WpsPbcMode(wpaObj, ifaceName, &wpsParam); HdiWpaStaStartWpsPbcMode() local
893 int32_t result = wpaObj->WpsPinMode(wpaObj, ifaceName, &wpsParam, pinCode); HdiWpaStaStartWpsPinMode() local
919 int32_t result = wpaObj->WpsCancel(wpaObj, ifaceName); HdiStopWpsSta() local
945 int32_t result = wpaObj->AutoConnect(wpaObj, ifaceName, enable); HdiWpaStaAutoConnect() local
971 int32_t result = wpaObj->BlocklistClear(wpaObj, ifaceName); HdiWpaStaBlocklistClear() local
997 int32_t result = wpaObj->SetPowerSave(wpaObj, ifaceName, enable); HdiWpaStaSetPowerSave() local
1023 int32_t result = wpaObj->SetCountryCode(wpaObj, ifaceName, countryCode); HdiWpaStaSetCountryCode() local
1049 int32_t result = wpaObj->GetCountryCode(wpaObj, ifaceName, countryCode, size); HdiWpaStaGetCountryCode() local
1075 int32_t result = wpaObj->SetSuspendMode(wpaObj, ifaceName, mode); HdiWpaStaSetSuspendMode() local
1101 int32_t result = wpaObj->ListNetworks(wpaObj, ifaceName, networkList, size); HdiWpaListNetworks() local
1128 int32_t result = wpaObj->GetNetwork(wpaObj, ifaceName, networkId, param, value, valueLen); HdiWpaGetNetwork() local
1149 int32_t result = wpaObj->StaShellCmd(wpaObj, ifName, cmd); HdiWpaStaSetShellCmd() local
1170 int32_t result = wpaObj->GetPskPassphrase(wpaObj, ifName, psk, pskLen); HdiWpaStaGetPskPassphrase() local
[all...]
/third_party/curl/lib/
H A Dws.c265 CURLcode result; in ws_dec_pass_payload() local
274 write_ctx, &result); in ws_dec_pass_payload()
276 return result; in ws_dec_pass_payload()
294 CURLcode result; in ws_dec_pass() local
305 result = ws_dec_read_head(dec, data, inraw); in ws_dec_pass()
306 if(result) { in ws_dec_pass()
307 if(result != CURLE_AGAIN) { in ws_dec_pass()
308 infof(data, "WS: decode error %d", (int)result); in ws_dec_pass()
322 0, 0, write_ctx, &result); in ws_dec_pass()
324 return result; in ws_dec_pass()
428 CURLcode result; ws_cw_write() local
678 CURLcode result = CURLE_OK; Curl_ws_request() local
752 CURLcode result; Curl_ws_accept() local
916 CURLcode result; curl_ws_recv() local
1002 CURLcode result; ws_flush() local
1046 CURLcode result; curl_ws_send() local
[all...]
/third_party/mesa3d/src/imagination/vulkan/
H A Dpvr_job_context.c94 VkResult result; in pvr_pds_pt_store_program_create_and_upload() local
134 result = in pvr_pds_pt_store_program_create_and_upload()
147 return result; in pvr_pds_pt_store_program_create_and_upload()
163 VkResult result; in pvr_pds_pt_resume_program_create_and_upload() local
207 result = in pvr_pds_pt_resume_program_create_and_upload()
220 return result; in pvr_pds_pt_resume_program_create_and_upload()
227 VkResult result; in pvr_render_job_pt_programs_setup() local
229 result = pvr_bo_alloc(device, in pvr_render_job_pt_programs_setup()
235 if (result != VK_SUCCESS) in pvr_render_job_pt_programs_setup()
236 return result; in pvr_render_job_pt_programs_setup()
463 VkResult result; pvr_ctx_sr_programs_setup() local
614 VkResult result; pvr_render_ctx_switch_programs_setup() local
650 VkResult result; pvr_render_ctx_switch_init() local
852 VkResult result; pvr_render_ctx_create() local
1100 VkResult result; pvr_compute_ctx_create() local
1208 VkResult result; pvr_transfer_ctx_setup_shaders() local
1244 VkResult result; pvr_transfer_ctx_create() local
[all...]
/foundation/arkui/ace_engine/frameworks/core/components_v2/inspector/
H A Drelative_container_composed_element.cpp46 std::string result; in GetAlignRulesMap() local
50 result.append(firstIter.first + ": "); in GetAlignRulesMap()
55 result.append(GetAlignDirectionStr(alignDirection) + ": {"); in GetAlignRulesMap()
56 result.append(GetAlignRuleStr(alignRule)); in GetAlignRulesMap()
59 return result; in GetAlignRulesMap()
93 std::string result; in GetAlignRuleStr() local
95 result = "anchor: " + alignRule.anchor + ", align: "; in GetAlignRuleStr()
97 result += "HorizontalAlign::START }"; in GetAlignRuleStr()
99 result += "HorizontalAlign::CENTER }"; in GetAlignRuleStr()
101 result in GetAlignRuleStr()
[all...]
/foundation/communication/bluetooth_service/services/bluetooth/ipc/src/
H A Dbluetooth_a2dp_src_observer_proxy.cpp46 ErrCode result = InnerTransact(BT_A2DP_SRC_OBSERVER_CONNECTION_STATE_CHANGED, option, data, reply); in OnConnectionStateChanged() local
47 if (result != NO_ERROR) { in OnConnectionStateChanged()
48 HILOGE("BluetoothA2dpSrcObserverProxy::OnConnectionStateChanged done fail, error: %{public}d", result); in OnConnectionStateChanged()
79 ErrCode result = InnerTransact(BT_A2DP_SRC_OBSERVER_PLAYING_STATUS_CHANGED, option, data, reply); in OnPlayingStatusChanged() local
80 if (result != NO_ERROR) { in OnPlayingStatusChanged()
81 HILOGE("BluetoothA2dpSrcObserverProxy::OnPlayingStatusChanged done fail, error: %{public}d", result); in OnPlayingStatusChanged()
112 ErrCode result = InnerTransact(BT_A2DP_SRC_OBSERVER_CONFIGURATION_CHANGED, option, data, reply); in OnConfigurationChanged() local
113 if (result != NO_ERROR) { in OnConfigurationChanged()
114 HILOGE("BluetoothA2dpSrcObserverProxy::OnConfigurationChanged done fail, error: %{public}d", result); in OnConfigurationChanged()
141 ErrCode result in OnMediaStackChanged() local
191 ErrCode result = InnerTransact(BT_A2DP_SRC_OBSERVER_VIRTUALDEVICE_CHANGED, option, data, reply); OnVirtualDeviceChanged() local
[all...]
/foundation/multimedia/camera_framework/services/deferred_processing_service/binder/client/src/
H A Ddeferred_video_processing_session_proxy.cpp36 int32_t result = remote->SendRequest(COMMAND_BEGIN_SYNCHRONIZE, data, reply, option); in BeginSynchronize() local
37 if (FAILED(result)) { in BeginSynchronize()
38 return result; in BeginSynchronize()
63 int32_t result = remote->SendRequest(COMMAND_END_SYNCHRONIZE, data, reply, option); in EndSynchronize() local
64 if (FAILED(result)) { in EndSynchronize()
65 return result; in EndSynchronize()
102 int32_t result = remote->SendRequest(COMMAND_ADD_VIDEO, data, reply, option); in AddVideo() local
103 if (FAILED(result)) { in AddVideo()
104 return result; in AddVideo()
137 int32_t result in RemoveVideo() local
168 int32_t result = remote->SendRequest(COMMAND_RESTORE_VIDEO, data, reply, option); RestoreVideo() local
[all...]
/foundation/resourceschedule/device_usage_statistics/interfaces/innerkits/src/
H A Dbundle_active_module_record.cpp102 std::shared_ptr<BundleActiveModuleRecord> result = std::make_shared<BundleActiveModuleRecord>(); in UnMarshalling() local
103 result->deviceId_ = parcel.ReadString(); in UnMarshalling()
104 result->bundleName_ = parcel.ReadString(); in UnMarshalling()
105 result->moduleName_ = parcel.ReadString(); in UnMarshalling()
106 result->abilityName_ = parcel.ReadString(); in UnMarshalling()
107 result->appLabelId_ = parcel.ReadUint32(); in UnMarshalling()
108 result->descriptionId_ = parcel.ReadUint32(); in UnMarshalling()
109 result->abilityLableId_ = parcel.ReadUint32(); in UnMarshalling()
110 result->abilityDescriptionId_ = parcel.ReadUint32(); in UnMarshalling()
111 result in UnMarshalling()
[all...]
/foundation/communication/netmanager_base/services/netmanagernative/src/netsys/
H A Dnetlink_msg.cpp28 errno_t result = memset_s(netlinkMessage_, NLMSG_SPACE(maxBufLen), 0, NLMSG_SPACE(maxBufLen)); in NetlinkMsg() local
29 if (result != 0) { in NetlinkMsg()
30 NETNATIVE_LOGE("[NetlinkMessage]: memset result %{public}d", result); in NetlinkMsg()
43 int32_t result = memcpy_s(NLMSG_DATA(netlinkMessage_), sizeof(struct rtmsg), &msg, sizeof(struct rtmsg)); in AddRoute() local
44 if (result != 0) { in AddRoute()
45 NETNATIVE_LOGE("[AddRoute]: string copy failed result %{public}d", result); in AddRoute()
53 int32_t result = in AddRule() local
55 if (result ! in AddRule()
64 int32_t result = memcpy_s(NLMSG_DATA(netlinkMessage_), sizeof(struct ifaddrmsg), &msg, sizeof(struct ifaddrmsg)); AddAddress() local
94 int32_t result = memcpy_s(RTA_DATA(rta), alen, data, alen); AddAttr() local
[all...]
/foundation/communication/nfc/frameworks/js/napi/controller/
H A Dnfc_napi_controller_adapter.cpp30 napi_value result; in OpenNfc() local
31 napi_get_boolean(env, (status == KITS::ERR_NONE), &result); in OpenNfc()
32 return result; in OpenNfc()
47 napi_value result; in CloseNfc() local
48 napi_get_boolean(env, (status == KITS::ERR_NONE), &result); in CloseNfc()
49 return result; in CloseNfc()
63 napi_value result; in GetNfcState() local
64 napi_create_int32(env, nfcCtrl.GetNfcState(), &result); in GetNfcState()
65 return result; in GetNfcState()
71 napi_value result; in IsNfcAvailable() local
84 napi_value result; IsNfcOpen() local
[all...]
/foundation/communication/wifi/wifi/test/wifi_standard/wifi_framework/wifi_manage/unittest/common/
H A Dwifi_net_observer_test.cpp78 // Test case for handling net detection result
82 int result = -1; in HWTEST_F() local
85 [this, &result](SystemNetWorkState netState, std::string urlRedirect) { in HWTEST_F()
88 result = 0; in HWTEST_F()
91 result = 1; in HWTEST_F()
94 result = 2; in HWTEST_F()
97 result = -1; in HWTEST_F()
108 EXPECT_EQ(result, 2); in HWTEST_F()
111 EXPECT_EQ(result, 0); in HWTEST_F()
114 EXPECT_EQ(result, in HWTEST_F()
122 sptr<NetHandle> result = netStateObserver->GetWifiNetworkHandle(); HWTEST_F() local
133 int32_t result = netStateObserver->StartWifiDetection(); HWTEST_F() local
144 int32_t result = netStateObserver->GetWifiNetId(); HWTEST_F() local
[all...]
/foundation/distributeddatamgr/preferences/frameworks/native/src/
H A Dbase64_helper.cpp58 std::string result = ""; in Encode() local
61 result += base64Encoder[input.at(index) >> BASE64_SHIFT_HIBYTE]; in Encode()
64 result += base64Encoder[code | (input.at(index) >> BASE64_SHIFT)]; in Encode()
67 result += base64Encoder[code | (input.at(index) >> BASE64_SHIFT_LOBYTE)]; in Encode()
68 result += base64Encoder[input.at(index++) & BASE64_MASK3]; in Encode()
70 result += base64Encoder[code]; in Encode()
71 result += "="; in Encode()
75 result += base64Encoder[code]; in Encode()
76 result += "=="; in Encode()
80 return result; in Encode()
[all...]
/third_party/elfutils/libelf/
H A Delf_newscn.c46 Elf_Scn *result = NULL; in elf_newscn() local
66 result = &elf->state.elf.scns_last->data[elf->state.elf.scns_last->cnt]; in elf_newscn()
79 result->index = result[-1].index + 1; in elf_newscn()
106 result = &newp->data[0]; in elf_newscn()
125 result->shdr.e32 = calloc (1, sizeof (Elf32_Shdr)); in elf_newscn()
126 if (result->shdr.e32 == NULL) in elf_newscn()
134 result->shdr.e64 = calloc (1, sizeof (Elf64_Shdr)); in elf_newscn()
135 if (result->shdr.e64 == NULL) in elf_newscn()
142 result in elf_newscn()
[all...]
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/units/
H A DSingleUnitImpl.java43 SingleUnitImpl result = new SingleUnitImpl(); in copy()
44 result.index = this.index; in copy()
45 result.dimensionality = this.dimensionality; in copy()
46 result.simpleUnitID = this.simpleUnitID; in copy()
47 result.unitPrefix = this.unitPrefix; in copy()
49 return result; in copy()
61 StringBuilder result = new StringBuilder(); in getNeutralIdentifier()
69 result.append("square-"); in getNeutralIdentifier()
71 result.append("cubic-"); in getNeutralIdentifier()
73 result in getNeutralIdentifier()
[all...]
/third_party/lz4/tests/
H A Ddecompress-partial-usingDict.c52 int result = LZ4_decompress_safe_partial_usingDict(cmpBuffer, outBuffer, i, srcLen, BUFFER_SIZE, NULL, 0); in main() local
53 if ( (result < 0) in main()
54 || (result != srcLen) in main()
62 int result = LZ4_decompress_safe_partial_usingDict(cmpBuffer, outBuffer, i, srcLen, BUFFER_SIZE, outBuffer - smallSize, smallSize); in main() local
63 if ( (result < 0) in main()
64 || (result != srcLen) in main()
72 int result = LZ4_decompress_safe_partial_usingDict(cmpBuffer, outBuffer, i, srcLen, BUFFER_SIZE, buffer, largeSize); in main() local
73 if ( (result < 0) in main()
74 || (result != srcLen) in main()
82 int result in main() local
92 int result = LZ4_decompress_safe_partial_usingDict(cmpBuffer, outBuffer, i, srcLen, BUFFER_SIZE, largeDict, largeSize); main() local
[all...]
/third_party/musl/libc-test/src/functionalext/supplement/stdio/
H A Dfseeko.c40 int result = fseeko(fp, 0L, SEEK_SET); in fseeko_0100() local
42 if (result != 0) { in fseeko_0100()
43 t_error("%s fseeko failed, result is %d\n", __func__, result); in fseeko_0100()
70 int result = fseeko(fp, 8L, SEEK_SET); in fseeko_0200() local
72 if (result != 0) { in fseeko_0200()
73 t_error("%s fseeko failed, result is %d\n", __func__, result); in fseeko_0200()
136 int result = fseeko(fp, -1L, SEEK_END); in fseeko_0400() local
138 if (result ! in fseeko_0400()
166 int result = fseeko(fp, -10L, SEEK_SET); fseeko_0500() local
192 int result = fseeko(fp, 10L, SEEK_END); fseeko_0600() local
[all...]
/third_party/musl/libc-test/src/functionalext/supplement/unistd/
H A Dwrite.c39 int result = write(fd, msg, len); in write_0100() local
40 if (result != len) { in write_0100()
41 t_error("%s write get result is %d not want %d", __func__, result, len); in write_0100()
73 int result = write(fd, msg, len); in write_0200() local
74 if (result != len) { in write_0200()
75 t_error("%s write get result is %d not want %d", __func__, result, len); in write_0200()
83 * @tc.desc : test the return result of write when count is greater than the length of buf
97 int result in write_0300() local
117 int result = write(fd, msg, len); write_0400() local
141 int result = write(fd, msg, len); write_0500() local
[all...]
/third_party/optimized-routines/string/arm/
H A Dstrlen-armv6t2.S30 /* Parameters and result. */
32 #define result r0 define
52 mov result, #-8
57 add result, result, #8
68 add result, result, #8
77 add result, result, #8
87 add result, resul
[all...]
/third_party/vk-gl-cts/framework/common/
H A DtcuImageCompare.hpp39 COMPARE_LOG_EVERYTHING = 0, //!< Always log both reference, result and error mask.
40 COMPARE_LOG_RESULT, //!< If comparison passes, log result only. If fails, everything is written to log.
47 bool pixelThresholdCompare (TestLog& log, const char* imageSetName, const char* imageSetDesc, const Surface& reference, const Surface& result, const RGBA& threshold, CompareLogMode logMode);
48 bool fuzzyCompare (TestLog& log, const char* imageSetName, const char* imageSetDesc, const Surface& reference, const Surface& result, float threshold, CompareLogMode logMode);
49 int measurePixelDiffAccuracy (TestLog& log, const char* imageSetName, const char* imageSetDesc, const Surface& reference, const Surface& result, int bestScoreDiff, int worstScoreDiff, CompareLogMode logMode);
51 bool fuzzyCompare (TestLog& log, const char* imageSetName, const char* imageSetDesc, const ConstPixelBufferAccess& reference, const ConstPixelBufferAccess& result, float threshold, CompareLogMode logMode);
52 bool bitwiseCompare (TestLog& log, const char* imageSetName, const char* imageSetDesc, const ConstPixelBufferAccess& reference, const ConstPixelBufferAccess& result, CompareLogMode logMode);
53 bool floatUlpThresholdCompare (TestLog& log, const char* imageSetName, const char* imageSetDesc, const ConstPixelBufferAccess& reference, const ConstPixelBufferAccess& result, const UVec4& threshold, CompareLogMode logMode);
54 bool floatThresholdCompare (TestLog& log, const char* imageSetName, const char* imageSetDesc, const ConstPixelBufferAccess& reference, const ConstPixelBufferAccess& result, const Vec4& threshold, CompareLogMode logMode);
55 bool floatThresholdCompare (TestLog& log, const char* imageSetName, const char* imageSetDesc, const ConstPixelBufferAccess& reference, const ConstPixelBufferAccess& result, cons
[all...]

Completed in 12 milliseconds

1...<<31323334353637383940>>...685