Home
last modified time | relevance | path

Searched refs:result (Results 9501 - 9525 of 17818) sorted by relevance

1...<<381382383384385386387388389390>>...713

/third_party/skia/third_party/externals/icu/source/samples/layout/
H A Dparagraph.cpp268 Paragraph *result = NULL; in paragraphFactory() local
278 result = new Paragraph(text, charCount, &fontRuns, status); in paragraphFactory()
281 delete result; in paragraphFactory()
282 result = NULL; in paragraphFactory()
287 return result; in paragraphFactory()
H A Dpflow.c361 pf_flow *result = NULL; in pf_factory() local
371 result = pf_create(text, charCount, fontRuns, &status); in pf_factory()
374 pf_close(result); in pf_factory()
375 result = NULL; in pf_factory()
382 return result; in pf_factory()
/third_party/skia/third_party/externals/oboe/apps/OboeTester/app/src/main/cpp/analyzer/
H A DGlitchAnalyzer.h155 result_code result = RESULT_OK; variable
231 result = ERROR_GLITCHES;
255 result = ERROR_GLITCHES;
259 result = ERROR_GLITCHES;
296 return result;
/third_party/skia/third_party/externals/dawn/src/dawn_native/opengl/
H A DDeviceGL.cpp110 const GLFormat& result = mFormatTable[format.GetIndex()]; in GetGLFormat() local
111 ASSERT(result.isSupportedOnBackend); in GetGLFormat()
112 return result; in GetGLFormat()
257 GLenum result = gl.ClientWaitSync(sync, GL_SYNC_FLUSH_COMMANDS_BIT, 0); in CheckAndUpdateCompletedSerials() local
258 if (result == GL_TIMEOUT_EXPIRED) { in CheckAndUpdateCompletedSerials()
/third_party/skia/third_party/externals/freetype/src/cache/
H A Dftcsbits.c340 FT_Bool result; in FT_LOCAL_DEF() local
345 result = FT_BOOL( gnode->family == gquery->family && in FT_LOCAL_DEF()
347 if ( result ) in FT_LOCAL_DEF()
403 result = 0; in FT_LOCAL_DEF()
409 return result; in FT_LOCAL_DEF()
/third_party/skia/tools/flags/
H A DCommandLineFlags.h401 SkString result; in defaultValue() local
404 result.printf("%s", fDefaultBool ? "true" : "false"); in defaultValue()
407 case SkFlagInfo::kInt_FlagType: result.printf("%i", fDefaultInt); break; in defaultValue()
408 case SkFlagInfo::kDouble_FlagType: result.printf("%2.2f", fDefaultDouble); break; in defaultValue()
411 return result; in defaultValue()
/third_party/toybox/toys/pending/
H A Dwget.c98 char *result = strcasestr(haystack, needle); in wget_strncaseafter() local
99 if (result) result = result + strlen(needle); in wget_strncaseafter()
100 return result; in wget_strncaseafter()
/third_party/unity/test/
H A Drakefile_helper.rb69 result = if strings.is_a?(Array)
74 result
78 result = ''
79 items.each { |item| result += " #{prefix}#{tackit(item)}" }
80 result
/third_party/qrcodegen/java-fast/io/nayuki/fastqrcodegen/
H A DQrCodeGeneratorDemo.java198 BufferedImage result = new BufferedImage((qr.size + border * 2) * scale, (qr.size + border * 2) * scale, BufferedImage.TYPE_INT_RGB); in toImage()
199 for (int y = 0; y < result.getHeight(); y++) { in toImage()
200 for (int x = 0; x < result.getWidth(); x++) { in toImage()
202 result.setRGB(x, y, color ? darkColor : lightColor); in toImage()
205 return result; in toImage()
/third_party/skia/modules/skottie/src/animator/
H A DVec2KeyframeAnimator.cpp116 std::vector<float> result = fExpressionEvaluator->evaluate(t); variable
117 fTarget->x = result.size() > 0 ? result[0] : 0;
118 fTarget->y = result.size() > 1 ? result[1] : 0;
/third_party/rust/crates/rustix/src/backend/linux_raw/process/
H A Dsyscalls.rs332 let mut result = MaybeUninit::<rlimit64>::uninit(); variables
339 &mut result
341 Ok(()) => rlimit_from_linux(result.assume_init()),
353 let mut result = MaybeUninit::<rlimit>::uninit(); in getrlimit_old() variables
363 ret_infallible(syscall!(__NR_ugetrlimit, limit, &mut result)); in getrlimit_old()
374 ret_infallible(syscall!(__NR_getrlimit, limit, &mut result)); in getrlimit_old()
377 rlimit_from_linux_old(result.assume_init()) in getrlimit_old()
408 let mut result = MaybeUninit::<rlimit64>::uninit(); variables
415 &mut result
417 Ok(()) => Ok(rlimit_from_linux(result
[all...]
/third_party/spirv-tools/source/fuzz/
H A Dtransformation_replace_boolean_constant_with_constant_binary.cpp133 // The id for the binary result must be fresh in IsApplicable()
251 // OpVariable, and this cannot be the result of a binary operation. in IsApplicable()
276 opt::Instruction* result = binary_instruction.get(); in ApplyWithResult() local
314 return result; in ApplyWithResult()
319 protobufs::Transformation result; in ToMessage() local
320 *result.mutable_replace_boolean_constant_with_constant_binary() = message_; in ToMessage()
321 return result; in ToMessage()
/third_party/vk-gl-cts/modules/gles3/functional/
H A Des3fFboTestCase.cpp75 tcu::Surface result; in iterate() local
85 render(result); in iterate()
116 bool isOk = compare(reference, result); in iterate()
122 bool FboTestCase::compare (const tcu::Surface& reference, const tcu::Surface& result) in compare() argument
124 return tcu::fuzzyCompare(m_testCtx.getLog(), "Result", "Image comparison result", reference, result, 0.05f, tcu::COMPARE_LOG_RESULT); in compare()
/third_party/vk-gl-cts/modules/gles31/functional/
H A Des31fFboTestCase.cpp75 tcu::Surface result; in iterate() local
87 render(result); in iterate()
120 bool isOk = compare(reference, result); in iterate()
126 bool FboTestCase::compare (const tcu::Surface& reference, const tcu::Surface& result) in compare() argument
128 return tcu::fuzzyCompare(m_testCtx.getLog(), "Result", "Image comparison result", reference, result, 0.05f, tcu::COMPARE_LOG_RESULT); in compare()
/third_party/vk-gl-cts/external/vulkancts/vkscserver/
H A Dserver.cpp166 vector<u8> result; in ProcessPacketsOnServer() local
167 bool ok = CompileShader(req.source, req.commandLine, result); in ProcessPacketsOnServer()
171 res.binary = std::move(result); in ProcessPacketsOnServer()
202 bool result = AppendFile(req.fileName, req.data, req.clear); in ProcessPacketsOnServer() local
203 if (!result) Log("[WARNING] Can't append file", req.fileName); in ProcessPacketsOnServer()
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/rasterization/
H A DvktRasterizationTests.cpp198 virtual void drawPrimitives (tcu::Surface& result, const std::vector<tcu::Vec4>& vertexData, VkPrimitiveTopology primitiveTopology);
199 void drawPrimitives (tcu::Surface& result, const std::vector<tcu::Vec4>& vertexData, const std::vector<tcu::Vec4>& coloDrata, VkPrimitiveTopology primitiveTopology);
200 void drawPrimitives (tcu::Surface& result, const std::vector<tcu::Vec4>& positionData, const std::vector<tcu::Vec4>& colorData, VkPrimitiveTopology primitiveTopology,
670 void BaseRenderingTestInstance::drawPrimitives (tcu::Surface& result, const std::vector<tcu::Vec4>& vertexData, VkPrimitiveTopology primitiveTopology) in drawPrimitives() argument
675 drawPrimitives(result, vertexData, colorData, primitiveTopology); in drawPrimitives()
678 void BaseRenderingTestInstance::drawPrimitives (tcu::Surface& result, const std::vector<tcu::Vec4>& positionData, const std::vector<tcu::Vec4>& colorData, VkPrimitiveTopology primitiveTopology) in drawPrimitives() argument
680 drawPrimitives(result, positionData, colorData, primitiveTopology, *m_image, *m_resolvedImage, *m_frameBuffer, m_renderSize, *m_resultBuffer, *m_resultBufferMemory); in drawPrimitives()
682 void BaseRenderingTestInstance::drawPrimitives (tcu::Surface& result, const std::vector<tcu::Vec4>& positionData, const std::vector<tcu::Vec4>& colorData, VkPrimitiveTopology primitiveTopology, in drawPrimitives() argument
928 tcu::copy(result.getAccess(), tcu::ConstPixelBufferAccess(m_textureFormat, tcu::IVec3(renderSize, renderSize, 1), resultBufferMemory.getHostPtr())); in drawPrimitives()
1076 // result in iterate()
1471 bool result = true; compareAndVerify() local
1950 drawPoint(tcu::PixelBufferAccess& result, PointSceneSpec::ScenePoint& point) drawPoint() argument
[all...]
/third_party/node/deps/v8/src/compiler/backend/riscv64/
H A Dcode-generator-riscv64.cc466 /* Move the result in the double result register. */ \
476 /* Move the result in the double result register. */ \
1211 // compare result set to kScratchReg in AssembleArchInstruction()
1241 // Move the result in the double result register. in AssembleArchInstruction()
1273 // compare result set to kScratchReg in AssembleArchInstruction()
1302 // Move the result in the double result registe in AssembleArchInstruction()
1426 Register result = instr->OutputCount() > 1 ? i.OutputRegister(1) : no_reg; AssembleArchInstruction() local
1431 Register result = instr->OutputCount() > 1 ? i.OutputRegister(1) : no_reg; AssembleArchInstruction() local
1436 Register result = instr->OutputCount() > 1 ? i.OutputRegister(1) : no_reg; AssembleArchInstruction() local
1441 Register result = instr->OutputCount() > 1 ? i.OutputRegister(1) : no_reg; AssembleArchInstruction() local
1446 Register result = instr->OutputCount() > 1 ? i.OutputRegister(1) : no_reg; AssembleArchInstruction() local
1451 Register result = instr->OutputCount() > 1 ? i.OutputRegister(1) : no_reg; AssembleArchInstruction() local
1456 Register result = instr->OutputCount() > 1 ? i.OutputRegister(1) : no_reg; AssembleArchInstruction() local
1462 Register result = instr->OutputCount() > 1 ? i.OutputRegister(1) : no_reg; AssembleArchInstruction() local
1490 Register result = instr->OutputCount() > 1 ? i.OutputRegister(1) : no_reg; AssembleArchInstruction() local
1496 Register result = instr->OutputCount() > 1 ? i.OutputRegister(1) : no_reg; AssembleArchInstruction() local
1508 Register result = instr->OutputCount() > 1 ? i.OutputRegister(1) : no_reg; AssembleArchInstruction() local
1513 Register result = instr->OutputCount() > 1 ? i.OutputRegister(1) : no_reg; AssembleArchInstruction() local
1536 Register result = instr->OutputCount() > 1 ? i.OutputRegister(1) : no_reg; AssembleArchInstruction() local
1541 Register result = instr->OutputCount() > 1 ? i.OutputRegister(1) : no_reg; AssembleArchInstruction() local
1925 Register result = i.OutputRegister(); AssembleArchInstruction() local
1932 Register result = i.OutputRegister(); AssembleArchInstruction() local
1939 Register result = i.OutputRegister(); AssembleArchInstruction() local
3618 Register result = i.OutputRegister(instr->OutputCount() - 1); AssembleArchBoolean() local
[all...]
/foundation/graphic/graphic_surface/surface/src/
H A Dbuffer_queue.cpp77 bool result = processName.substr(0, target.size()) == target; in IsLocalRender() local
78 return result; in IsLocalRender()
1911 void BufferQueue::DumpMetadata(std::string &result, BufferElement element) in DumpMetadata() argument
1922 result += std::to_string(colorSpaceType) + ", "; in DumpMetadata()
1923 result += " [staticMetadata: "; in DumpMetadata()
1925 result += std::to_string(x); in DumpMetadata()
1926 result += " "; in DumpMetadata()
1928 result += " ],[dynamicMetadata: "; in DumpMetadata()
1930 result += std::to_string(x); in DumpMetadata()
1931 result in DumpMetadata()
1937 DumpCache(std::string &result) DumpCache() argument
1981 Dump(std::string &result) Dump() argument
[all...]
/foundation/communication/dsoftbus/core/connection/ble/src/
H A Dsoftbus_conn_ble_manager.c192 .result = EVENT_STAGE_RESULT_FAILED, in DfxRecordBleConnectFail()
224 .result = EVENT_STAGE_RESULT_OK in DfxRecordBleConnectSuccess()
239 request->result = ctx->result; in NewRequest()
354 it->result.OnConnectFailed(it->requestId, reason); in BleNotifyDeviceConnectResult()
382 it->result.OnConnectSuccessed(it->requestId, connection->connectionId, &info); in BleNotifyDeviceConnectResult()
527 .result = status == SOFTBUS_OK ? EVENT_STAGE_RESULT_OK : EVENT_STAGE_RESULT_FAILED in BleConnectDeviceDirectly()
595 ctx->result.OnConnectFailed(ctx->requestId, status); in BleConnectRequestOnAvailableState()
615 ctx->result.OnConnectFailed(ctx->requestId, status); in BleConnectRequestOnConnectingState()
848 .result in BleServerAccepted()
1076 int32_t result = BleReuseConnectionCommon(ctx->udid, anomizeAddress, ctx->protocol); BleReuseConnectionRequestOnConnectingState() local
1734 BleConnectDevice(const ConnectOption *option, uint32_t requestId, const ConnectResult *result) BleConnectDevice() argument
2089 int32_t result = g_bleManager.state->reuseConnectionRequest(&ctx); ConflictReuseConnection() local
2255 int32_t result = SOFTBUS_CONN_BLE_INTERNAL_ERR; ConflictGetConnection() local
[all...]
/third_party/python/Lib/
H A Dzipfile.py232 result = False
235 result = _check_zipfile(fp=filename)
238 result = _check_zipfile(fp)
241 return result
419 result = ['<%s filename=%r' % (self.__class__.__name__, self.filename)]
421 result.append(' compress_type=%s' %
427 result.append(' filemode=%r' % stat.filemode(hi))
429 result.append(' external_attr=%#x' % lo)
432 result.append(' file_size=%r' % self.file_size)
436 result
[all...]
/foundation/ability/ability_runtime/services/appmgr/src/
H A Dapp_mgr_service_inner.cpp536 TAG_LOGE(AAFwkTag::APPMGR, "setting watermark fails with result code:%{public}d", resultCode); in ProcessKia()
543 TAG_LOGE(AAFwkTag::APPMGR, "setting snapshot skip fails with result code:%{public}d", resultCode); in ProcessKia()
1316 auto result = HiSysEventWrite(OHOS::HiviewDFX::HiSysEvent::Domain::FRAMEWORK, "PROCESS_KILL", in ApplicationTerminated() local
1321 TAG_LOGW(AAFwkTag::APPMGR, "hisysevent write result=%{public}d, send [FRAMEWORK,PROCESS_KILL], pid=%{public}d," in ApplicationTerminated()
1322 " processName=%{public}s, msg=Kill Reason:app exit", result, eventInfo.pid, eventInfo.processName.c_str()); in ApplicationTerminated()
1333 int32_t result = VerifyRequestPermission(); in UpdateApplicationInfoInstalled() local
1334 if (result != ERR_OK) { in UpdateApplicationInfoInstalled()
1336 return result; in UpdateApplicationInfoInstalled()
1360 result = appRunningManager_->ProcessUpdateApplicationInfoInstalled(appInfo); in UpdateApplicationInfoInstalled()
1361 if (result ! in UpdateApplicationInfoInstalled()
1380 auto result = VerifyKillProcessPermission(bundleName); KillApplication() local
1415 int32_t result = ERR_OK; ForceKillApplicationInner() local
1455 int32_t result = ERR_OK; KillProcessesByAccessTokenId() local
1476 int32_t result = ERR_OK; KillApplicationByUid() local
1588 auto result = KillProcessByPid(*iter, reason); KillApplicationSelf() local
1601 int result = ERR_OK; KillApplicationByBundleName() local
1651 int result = ERR_OK; KillApplicationByUserIdLocked() local
1741 int32_t result = AccessToken::AccessTokenKit::ClearUserGrantedPermissionState(tokenId); ClearUpApplicationDataByUserId() local
2361 int result = HiSysEventWrite(OHOS::HiviewDFX::HiSysEvent::Domain::FRAMEWORK, "PROCESS_KILL", KillProcessByPidInner() local
2715 int32_t result = KillProcessByPid(pid, "KillProcessByAbilityToken"); KillProcessByAbilityToken() local
2742 auto result = KillProcessByPid(*iter, "KillProcessesByUserId"); KillProcessesByUserId() local
2758 auto result = KillProcessByPid(pid, "KillProcessesByPids"); KillProcessesByPids() local
2781 auto result = KillProcessByPid(pid, "AttachPidToParent"); AttachPidToParent() local
3154 int result = Security::AccessToken::AccessTokenKit::VerifyAccessToken(token, PERMISSION_INTERNET, false); StartProcessVerifyPermission() local
3174 int result = Security::AccessToken::AccessTokenKit::VerifyAccessToken(token, StartProcessVerifyPermission() local
3305 bool result = bundleMgrHelper->QueryDataGroupInfos(bundleInfo.name, userId, dataGroupInfoList); CreateStartMsg() local
4619 int32_t result = appRunningManager_->UpdateConfiguration(config, userId); UpdateConfiguration() local
4647 int32_t result = appRunningManager_->UpdateConfigurationByBundleName(config, name); UpdateConfigurationByBundleName() local
5681 auto result = IN_PROCESS_CALL(appMgrServiceInner->UpdateConfiguration(changeConfig)); PointerDeviceEventCallback() local
7193 int32_t result = KillProcessByPid(pid, "ExitChildProcessSafelyByChildPid"); NotifyAppFaultBySA() local
7234 DumpIpcAllStart(std::string& result) NotifyAppFaultBySA() argument
7247 DumpIpcAllStop(std::string& result) NotifyAppFaultBySA() argument
7260 DumpIpcAllStat(std::string& result) NotifyAppFaultBySA() argument
7273 DumpIpcStart(const int32_t pid, std::string& result) NotifyAppFaultBySA() argument
7286 DumpIpcStop(const int32_t pid, std::string& result) NotifyAppFaultBySA() argument
7299 DumpIpcStat(const int32_t pid, std::string& result) NotifyAppFaultBySA() argument
7312 DumpFfrt(const std::vector<int32_t>& pids, std::string& result) NotifyAppFaultBySA() argument
7559 int32_t result = ERR_OK; NotifyAppFaultBySA() local
8059 int32_t result = ERR_OK; NotifyAppFaultBySA() local
[all...]
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/ray_tracing/
H A DvktRayTracingBuiltinTests.cpp405 " imageStore(result, p, c);\n"; in initPrograms()
416 "layout(set = 0, binding = 0, r32i) uniform iimage3D result;\n" in initPrograms()
440 "layout(set = 0, binding = 0, r32i) uniform iimage3D result;\n" in initPrograms()
468 "layout(set = 0, binding = 0, r32i) uniform iimage3D result;\n" in initPrograms()
495 "layout(set = 0, binding = 0, r32i) uniform iimage3D result;\n" in initPrograms()
525 "layout(set = 0, binding = 0, r32i) uniform iimage3D result;\n" in initPrograms()
566 "layout(set = 0, binding = 0, r32i) uniform iimage3D result;\n" in initPrograms()
606 + condition + " imageStore(result, p, c);\n"; in initPrograms()
621 "layout(set = 0, binding = 0, r32i) uniform iimage3D result;\n" in initPrograms()
651 "layout(set = 0, binding = 0, r32i) uniform iimage3D result;\ in initPrograms()
1239 de::MovePtr<TopLevelAccelerationStructure> result = makeTopLevelAccelerationStructure(); initTopAccelerationStructure() local
1278 de::MovePtr<BottomLevelAccelerationStructure> result = makeBottomLevelAccelerationStructure(); initBottomAccelerationStructure() local
1558 vector<de::SharedPtr<BottomLevelAccelerationStructure> > result; initBottomAccelerationStructures() local
1781 VkResult result; checkFormatSupported() local
1830 std::vector<deInt32> result; expectedIntValuesBuffer() local
1999 std::vector<float> result; expectedFloatValuesBuffer() local
[all...]
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/
H A DULocaleTest.java787 String result = ldn.localeDisplayName(badLocaleID); in TestUldnWithGarbage()
788 if (result.compareTo(expectedResult) != 0) { in TestUldnWithGarbage()
789 errln("FAIL: LocaleDisplayNames.localeDisplayName(String) for bad locale ID \"" + badLocaleID + "\", expected \"" + expectedResult + "\", got \"" + result + "\""); in TestUldnWithGarbage()
792 result = ldn.localeDisplayName(badLocale); in TestUldnWithGarbage()
793 if (result.compareTo(expectedResult) != 0) { in TestUldnWithGarbage()
794 errln("FAIL: LocaleDisplayNames.localeDisplayName(ULocale) for bad locale ID \"" + badLocaleID + "\", expected \"" + expectedResult + "\", got \"" + result + "\""); in TestUldnWithGarbage()
1174 public String result; in TestDisplayNames()
1182 result = res; in TestDisplayNames()
1271 String result = ldn.localeDisplayName(item.localeToBeNamed); in TestDisplayNames()
1272 if (!(item.result in TestDisplayNames()
[all...]
/third_party/node/deps/v8/src/codegen/
H A Dcode-stub-assembler.cc396 // Round negated {x} towards Infinity and return the result negated. in Float64Ceil()
448 // Round negated {x} towards -Infinity and return the result negated. in Float64Floor()
539 // Round negated {x} towards -Infinity and return result negated. in Float64Trunc()
590 // result, so there's no need to mask value anymore, since there's no in PopulationCountFallback()
809 TNode<IntPtrT> result = SmiUntag(value); in SmiToInt32() local
810 return TruncateIntPtrToInt32(result); in SmiToInt32()
864 TNode<Int32T> result = Projection<0>(pair); in TrySmiAdd() local
865 return BitcastWordToTaggedSigned(ChangeInt32ToIntPtr(result)); in TrySmiAdd()
877 TNode<IntPtrT> result = Projection<0>(pair); in TrySmiSub() local
878 return BitcastWordToTaggedSigned(result); in TrySmiSub()
886 TNode<Int32T> result = Projection<0>(pair); TrySmiSub() local
897 TNode<IntPtrT> result = Projection<0>(pair); TrySmiAbs() local
906 TNode<Int32T> result = Projection<0>(pair); TrySmiAbs() local
[all...]
/foundation/arkui/ace_engine/adapter/ohos/entrance/pa_engine/engine/jsi/
H A Djsi_pa_engine.cpp404 bool result = InitJsEnv(GetDebugMode(), GetExtraNativeObject()); in InitializeInner() local
405 if (!result) { in InitializeInner()
953 std::string result = "{\"" + tagString + "\":"; in IncludeTag() local
954 result += jsonString; in IncludeTag()
955 result += "}"; in IncludeTag()
956 return result; in IncludeTag()
985 auto result = std::make_shared<AppExecFwk::PacMap>(); in Call() local
986 if (result == nullptr) { in Call()
990 result->FromString(retStr); in Call()
991 return result; in Call()
1011 napi_value result = rdbValueBucketNewInstance_(env, const_cast<OHOS::NativeRdb::ValuesBucket&>(value)); BatchInsert() local
1048 napi_value result = nullptr; Query() local
1330 auto result = CallFuncWithDefaultThis(func, argv); OnCreate() local
1433 auto result = CallFuncWithDefaultThis(func, argv); OnAcquireFormState() local
1464 auto result = CallFuncWithDefaultThis(func, argv); OnShare() local
[all...]

Completed in 48 milliseconds

1...<<381382383384385386387388389390>>...713