Home
last modified time | relevance | path

Searched refs:result (Results 15826 - 15850 of 17822) sorted by relevance

1...<<631632633634635636637638639640>>...713

/third_party/python/Lib/
H A Ddatetime.py264 # Helpers for parsing the result of isoformat()
554 """divide a by b and round result to the nearest integer
974 non-zero in the result.
1088 contribute to the result.
1149 raise OverflowError("result out of range")
1257 "result")
1263 raise ValueError("fromutc() requires a non-None dst() result")
1760 result = cls(y, m, d, hh, mm, ss, us, tz)
1772 return result
1776 trans = result
[all...]
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/binding_model/
H A DvktBindingDescriptorUpdateASTests.cpp128 VkBuffer result = (buffer.get() == DE_NULL) ? DE_NULL : buffer->get(); in getVkBuffer() local
130 return result; in getVkBuffer()
164 const VkWriteDescriptorSetAccelerationStructureKHR result = in makeWriteDescriptorSetAccelerationStructureKHR() local
172 return result; in makeWriteDescriptorSetAccelerationStructureKHR()
796 << "layout(set = 1, binding = 0, r32i) uniform iimage3D result;\n" in initPrograms()
851 << "layout(set = 1, binding = 0, r32i) uniform iimage3D result;\n" in initPrograms()
965 << "layout(set = 1, binding = 0, r32i) uniform iimage3D result;\n" in initPrograms()
1008 << "layout(set = 1, binding = 0, r32i) uniform iimage3D result;\n" in initPrograms()
1041 << "layout(set = 1, binding = 0, r32i) uniform iimage3D result;\n" in initPrograms()
1281 << "layout(set = 1, binding = 0, r32i) uniform iimage3D result;\ in initPrograms()
2165 const std::string result = getRayQueryShaderBodyText() local
2197 const std::string result = getRayTracingShaderBodyText() local
[all...]
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/wsi/
H A DvktWsiSurfaceTests.cpp1162 void checkDeprecatedExtensionGoogleSurfacelessQuery(const vk::InstanceDriver& vk, VkPhysicalDevice physicalDevice, VkSurfaceKHR surface, tcu::ResultCollector& result) in checkDeprecatedExtensionGoogleSurfacelessQuery() argument
1180 result.fail("Number of modes does not match"); in checkDeprecatedExtensionGoogleSurfacelessQuery()
1196 result.fail(error_string); in checkDeprecatedExtensionGoogleSurfacelessQuery()
1203 void checkExtensionGoogleSurfacelessQuery(const vk::InstanceDriver& vk, VkPhysicalDevice physicalDevice, tcu::ResultCollector& result) in checkExtensionGoogleSurfacelessQuery() argument
1223 result.fail(error_string); in checkExtensionGoogleSurfacelessQuery()
1397 VkResult result = VK_SUCCESS;
1527 result = instHelper.vki.getPhysicalDevicePresentRectanglesKHR(deviceGroupProps[devGroupIdx].physicalDevices[physDevIdx], *surface, &incompleteRectCount, presentRectangles);
1528 results.check(result == VK_INCOMPLETE, "Expected VK_INCOMPLETE");
1613 // Make sure all exception types result in a test failure
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/binding_model/
H A DvktBindingDescriptorUpdateASTests.cpp128 VkBuffer result = (buffer.get() == DE_NULL) ? DE_NULL : buffer->get(); in getVkBuffer() local
130 return result; in getVkBuffer()
164 const VkWriteDescriptorSetAccelerationStructureKHR result = in makeWriteDescriptorSetAccelerationStructureKHR() local
172 return result; in makeWriteDescriptorSetAccelerationStructureKHR()
796 << "layout(set = 1, binding = 0, r32i) uniform iimage3D result;\n" in initPrograms()
851 << "layout(set = 1, binding = 0, r32i) uniform iimage3D result;\n" in initPrograms()
965 << "layout(set = 1, binding = 0, r32i) uniform iimage3D result;\n" in initPrograms()
1008 << "layout(set = 1, binding = 0, r32i) uniform iimage3D result;\n" in initPrograms()
1041 << "layout(set = 1, binding = 0, r32i) uniform iimage3D result;\n" in initPrograms()
1281 << "layout(set = 1, binding = 0, r32i) uniform iimage3D result;\ in initPrograms()
2165 const std::string result = getRayQueryShaderBodyText() local
2197 const std::string result = getRayTracingShaderBodyText() local
[all...]
/third_party/openssl/crypto/x509/
H A Dx509_vfy.c114 static int lookup_cert_match(X509 **result, X509_STORE_CTX *ctx, X509 *x) in lookup_cert_match() argument
120 *result = NULL; in lookup_cert_match()
139 *result = xtmp; in lookup_cert_match()
2738 * records would result in us generating each of the certificate and public in dane_match()
3336 STACK_OF(X509) *result = NULL; in STACK_OF()
3358 /* result list to store the up_ref'ed certificates */ in STACK_OF()
3361 if (!ossl_x509_add_certs_new(&result, ctx->chain, flags)) { in STACK_OF()
3362 sk_X509_free(result); in STACK_OF()
3363 result = NULL; in STACK_OF()
3368 return result; in STACK_OF()
[all...]
/third_party/skia/third_party/externals/libjpeg-turbo/
H A Dtransupp.c57 * arrays for most of the transforms. That could result in much thrashing
1356 * *strptr is advanced over the digit string, and *result is set to its value.
1360 jt_read_integer(const char **strptr, JDIMENSION *result) in LOCAL()
1368 *result = val; in LOCAL()
2272 boolean result = TRUE; /* initialize TRUE */ in GLOBAL() local
2278 result = FALSE; in GLOBAL()
2283 result = FALSE; in GLOBAL()
2288 result = FALSE; in GLOBAL()
2290 result = FALSE; in GLOBAL()
2296 return result; in GLOBAL()
[all...]
/third_party/skia/third_party/externals/tint/src/writer/msl/
H A Dgenerator_impl.cc181 SanitizedResult result; in Sanitize() local
182 result.program = std::move(out.program); in Sanitize()
183 if (!result.program.IsValid()) { in Sanitize()
184 return result; in Sanitize()
186 result.used_array_length_from_uniform_indices = in Sanitize()
189 result.needs_storage_buffer_sizes = in Sanitize()
190 !result.used_array_length_from_uniform_indices.empty(); in Sanitize()
191 return result; in Sanitize()
463 // cases, bitcast operands to unsigned, then cast result to signed. in EmitBinary()
493 // first, then convert result bac in EmitBinary()
[all...]
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/
H A Dfrontend_delegate_declarative.cpp298 std::smatch result; in LoadResourceConfiguration() local
299 if (std::regex_match(mediaPathName, result, mediaPattern)) { in LoadResourceConfiguration()
456 auto result = false; in OnPageBackPress() local
458 [weak = AceType::WeakClaim(this), &result] { in OnPageBackPress()
466 result = page->FireDeclarativeOnBackPressCallback(); in OnPageBackPress()
470 return result; in OnPageBackPress()
697 const std::string& eventId, const std::string& param, const std::string& jsonArgs, std::string& result) in FireSyncEvent()
714 result = jsCallBackResult_[callbackId]; in FireSyncEvent()
2148 void FrontendDelegateDeclarative::SetCallBackResult(const std::string& callBackId, const std::string& result) in SetCallBackResult() argument
2150 jsCallBackResult_.try_emplace(StringToInt(callBackId), result); in SetCallBackResult() local
696 FireSyncEvent( const std::string& eventId, const std::string& param, const std::string& jsonArgs, std::string& result) FireSyncEvent() argument
2169 auto result = timeoutTaskMap_.try_emplace(callbackId, cancelableTimer); WaitTimer() local
2513 auto result = pageMap_.try_emplace(page->GetPageId(), page); AddPageLocked() local
[all...]
/foundation/bundlemanager/bundle_framework/interfaces/inner_api/appexecfwk_core/src/bundlemgr/
H A Dbundle_mgr_proxy.cpp774 APP_LOGE("reply result false"); in GetBundleNameForUid()
802 APP_LOGD("reply result false"); in GetBundlesForUid()
887 APP_LOGE("reply result false"); in GetBundleGids()
921 APP_LOGE("reply result false"); in GetBundleGidsByUid()
1878 const DumpFlag flag, const std::string &bundleName, int32_t userId, std::string &result) in DumpInfos()
1914 result = std::accumulate(dumpInfos.begin(), dumpInfos.end(), result); in DumpInfos()
2938 LOG_E(BMS_TAG_QUERY, "reply result false"); in ImplicitQueryInfoByPriority()
2989 LOG_E(BMS_TAG_QUERY, "reply result false"); in ImplicitQueryInfos()
3074 APP_LOGE("reply result fals in GetAllDependentModuleNames()
1877 DumpInfos( const DumpFlag flag, const std::string &bundleName, int32_t userId, std::string &result) DumpInfos() argument
4629 int32_t result = remote->SendRequest(static_cast<uint32_t>(code), data, reply, option); SendTransactCmd() local
4652 int32_t result = remote->SendRequest(static_cast<uint32_t>(code), data, reply, option); SendTransactCmdWithLog() local
4660 ParseStr(const char *buf, const int itemLen, int index, std::string &result) ParseStr() argument
4743 GetBigString(BundleMgrInterfaceCode code, MessageParcel &data, std::string &result) GetBigString() argument
4758 InnerGetBigString(MessageParcel &reply, std::string &result) InnerGetBigString() argument
[all...]
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/descriptor_indexing/
H A DvktDescriptorSetsIndexingTests.cpp336 virtual void iterateCollectResults (ut::UpdatablePixelBufferAccessPtr& result,
1530 bool result = false; in iterateVerifyResults() local
1533 result = tcu::fuzzyCompare(m_context.getTestContext().getLog(), in iterateVerifyResults()
1534 "Fuzzy Compare", "Comparison result", *referenceResult.get(), *programResult.get(), 0.02f, tcu::COMPARE_LOG_EVERYTHING); in iterateVerifyResults()
1538 result = tcu::floatThresholdCompare(m_context.getTestContext().getLog(), in iterateVerifyResults()
1539 "Float Threshold Compare", "Comparison result", *referenceResult.get(), *programResult.get(), tcu::Vec4(0.02f, 0.02f, 0.02f, 0.02f), tcu::COMPARE_LOG_EVERYTHING); in iterateVerifyResults()
1544 result = (verifyVertexWriteResults(variables) && result); in iterateVerifyResults()
1547 return result; in iterateVerifyResults()
1550 void CommonDescriptorInstance::iterateCollectResults (ut::UpdatablePixelBufferAccessPtr& result, in iterateCollectResults() argument
4242 iterateCollectResults(ut::UpdatablePixelBufferAccessPtr& result, const IterateCommonVariables& variables, bool fromTest) iterateCollectResults() argument
[all...]
/foundation/ability/ability_runtime/interfaces/kits/native/ability/native/
H A Dability_thread.h155 * @brief Send the result code and data to be returned by this Page ability to the caller.
157 * receive the result set in the current method. This method can be called only after the ability has been
160 * @param resultCode Indicates the result code returned after the ability is destroyed. You can define the result
212 * @return Returns the call result.
240 * @return Returns the query result.
279 * @brief notify this ability continuation result.
280 * @param result: Continuation result
282 void NotifyContinuationResult(int32_t result) overrid
[all...]
H A Dability_impl.h112 * @brief Send the result code and data to be returned by this Page ability to the caller.
114 * method to receive the result set in the current method. This method can be called only after the ability has
118 * @param resultCode Indicates the result code returned after the ability is destroyed. You can define the
119 * result code to identify an error.
215 * @return Returns the query result.
317 * @brief Notify continuation result to ability.
319 * @param result Continuaton result.
323 virtual void NotifyContinuationResult(int32_t result);
474 * @return Return the result o
[all...]
/foundation/ability/ability_runtime/services/uripermmgr/include/
H A Duri_permission_manager_stub_impl.h139 std::vector<bool> &result);
/foundation/ai/ai_engine/test/performance/delay/async_process/
H A Dasync_process_delay_test.cpp78 void OnResult(const DataInfo &result, int resultCode, int requestId) override
/foundation/ability/dmsfwk/services/dtbschedmgr/include/mission/
H A Ddistributed_bm_storage.h76 int32_t result, const std::string& bundleName);
/foundation/ability/ability_runtime/frameworks/js/napi/featureAbility/
H A Dnapi_data_ability_helper_utils.h227 napi_env env, const std::vector<std::shared_ptr<DataAbilityResult>> &dataAbilityResult, napi_value result);
H A Dnapi_data_ability_helper.h161 * @param param Indicates the want parameters saved the parse result.
233 napi_env env, napi_value param, std::vector<std::shared_ptr<DataAbilityOperation>> &result);
/foundation/ability/ability_runtime/frameworks/js/napi/wantagent/
H A Dnapi_want_agent.h96 static void UnwrapWantAgent(napi_env env, napi_value jsParam, void** result);
/foundation/ability/ability_runtime/test/fuzztest/abilityschedulerstub_fuzzer/
H A Dabilityschedulerstub_fuzzer.cpp146 void NotifyContinuationResult(int32_t result) override
/foundation/ability/ability_runtime/test/fuzztest/attachabilitythread_fuzzer/
H A Dattachabilitythread_fuzzer.cpp143 void NotifyContinuationResult(int32_t result) override
/foundation/arkui/ace_engine/frameworks/core/components/list/
H A Drender_list_item.h326 const Offset& coordinateOffset, const TouchRestrict& touchRestrict, TouchTestResult& result) override;
/foundation/arkui/ace_engine/frameworks/core/components/stepper/
H A Drender_stepper.h124 const Offset& coordinateOffset, const TouchRestrict& touchRestrict, TouchTestResult& result) override;
/foundation/arkui/ace_engine/frameworks/core/components/common/properties/
H A Dscroll_bar.h59 void AddScrollBarController(const Offset& coordinateOffset, TouchTestResult& result);
/foundation/arkui/ace_engine/frameworks/core/components/rating/
H A Drender_rating.h237 const Offset& coordinateOffset, const TouchRestrict& touchRestrict, TouchTestResult& result) override;
/foundation/arkui/ace_engine/frameworks/core/components/scroll/
H A Drender_scroll.h315 const Offset& coordinateOffset, const TouchRestrict& touchRestrict, TouchTestResult& result) override;

Completed in 49 milliseconds

1...<<631632633634635636637638639640>>...713