Home
last modified time | relevance | path

Searched refs:str (Results 9401 - 9425 of 14584) sorted by relevance

1...<<371372373374375376377378379380>>...584

/third_party/vk-gl-cts/scripts/build/
H A Dcommon.py88 raise Exception("Failed to execute '%s', got %d" % (str(args), retcode))
/third_party/vk-gl-cts/scripts/ctsbuild/
H A Dcommon.py88 raise Exception("Failed to execute '%s', got %d" % (str(args), retcode))
/third_party/vk-gl-cts/scripts/khr_util/
H A Dformat.py38 revision = str(revision))
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/pipeline/
H A DvktPipelineDerivativeTests.cpp74 sources.glslSources.add("comp") << glu::ComputeSource(computeSource.str()); in initComputeDerivativePrograms()
/third_party/vk-gl-cts/framework/randomshaders/
H A DrsgShader.hpp106 void tokenize (GeneratorState& state, TokenStream& str) const;
/third_party/vk-gl-cts/modules/gles2/functional/
H A Des2fMultisampledRenderToTextureTests.cpp121 m_testCtx.setTestResult(QP_TEST_RESULT_FAIL, msg.str().c_str()); in iterate()
/third_party/vulkan-loader/scripts/
H A Dgenerate_source.py76 print('ERROR:', str(e))
/vendor/hisilicon/hispark_pegasus/demo/robot_demo/robot_car/ssd1306/
H A Dssd1306.h154 char ssd1306_DrawString(char* str, FontDef Font, SSD1306_COLOR color);
/foundation/ability/ability_runtime/services/quickfixmgr/src/
H A Dquick_fix_manager_apply_task.cpp628 [moduleName = moduleNames_](const std::string &name, const std::string &str) { in NotifyApplyStatus()
629 return (str == moduleName.front()) ? (name + str) : (name + "," + str); in NotifyApplyStatus()
/foundation/arkui/ace_engine/adapter/ohos/osal/
H A Devent_report.cpp114 void StrTrim(std::string& str) in StrTrim() argument
116 if (str.size() > MAX_PACKAGE_NAME_LENGTH) { in StrTrim()
117 str = str.substr(0, MAX_PACKAGE_NAME_LENGTH); in StrTrim()
/foundation/multimedia/audio_framework/services/audio_policy/server/src/service/config/
H A Daudio_policy_parser.cpp350 void AudioPolicyParser::SplitChannelStringToSet(std::string &str, std::set<uint32_t> &result) in SplitChannelStringToSet() argument
352 std::stringstream ss(str); in SplitChannelStringToSet()
510 void AudioPolicyParser::SplitStringToList(std::string &str, std::list<std::string> &result) in SplitStringToList() argument
512 char *token = std::strtok(&str[0], ","); in SplitStringToList()
/foundation/graphic/graphic_2d/rosen/test/2d_graphics/unittest/draw/
H A Dpath_test.cpp62 std::string str; in HWTEST_F() local
63 EXPECT_TRUE(path->BuildFromSVGString(str)); in HWTEST_F()
76 std::string str = "string"; in HWTEST_F() local
77 EXPECT_FALSE(path->BuildFromSVGString(str)); in HWTEST_F()
/foundation/graphic/graphic_2d/rosen/modules/render_service_base/src/modifier/
H A Drs_render_property.cpp372 out += ss.str(); in Dump()
429 out += ss.str(); in Dump()
439 out += ss.str(); in Dump()
448 out += ss.str(); in Dump()
/foundation/graphic/graphic_2d/rosen/test/2d_graphics/unittest/recording/
H A Dcmd_list_helper_test.cpp339 char str[TEST_MEM_SIZE]; in HWTEST_F() local
345 data.BuildWithoutCopy(str, TEST_MEM_SIZE); in HWTEST_F()
638 char str[TEST_MEM_SIZE]; in HWTEST_F() local
639 bool set = cmdList->SetUpBitmapData(static_cast<void *>(str), TEST_MEM_SIZE); in HWTEST_F()
/foundation/graphic/graphic_2d/rosen/modules/2d_graphics/drawing_ndk/src/
H A Ddrawing_canvas.cpp510 OH_Drawing_ErrorCode OH_Drawing_CanvasDrawSingleCharacter(OH_Drawing_Canvas* cCanvas, const char* str, in OH_Drawing_CanvasDrawSingleCharacter() argument
513 if (str == nullptr || cFont == nullptr) { in OH_Drawing_CanvasDrawSingleCharacter()
520 size_t len = strlen(str); in OH_Drawing_CanvasDrawSingleCharacter()
524 const char* currentStr = str; in OH_Drawing_CanvasDrawSingleCharacter()
/foundation/multimedia/drm_framework/services/drm_service/server/src/
H A Ddrm_host_manager.cpp358 std::string DrmHostManager::StringTrim(const std::string &str) in StringTrim() argument
361 size_t first = str.find_first_not_of(" \t\n\r"); in StringTrim()
364 size_t last = str.find_last_not_of(" \t\n\r"); in StringTrim()
365 return str.substr(first, (last - first + 1)); in StringTrim()
/foundation/multimodalinput/input/tools/vuinput/src/
H A Dvirtual_device.cpp64 static inline bool IsNum(const std::string& str) in IsNum() argument
66 std::istringstream sin(str); in IsNum()
103 bool result = std::any_of(validFileNames.begin(), validFileNames.end(), [deviceName](const std::string& str) { in CheckFileName()
104 return str == deviceName; in CheckFileName()
/foundation/communication/netmanager_base/services/netmanagernative/bpf/src/
H A Dbpf_loader.cpp137 inline bool EndsWith(const std::string &str, const std::string &searchFor) in EndsWith() argument
139 if (searchFor.size() > str.size()) { in EndsWith()
143 std::string source = str.substr(str.size() - searchFor.size(), searchFor.size()); in EndsWith()
/foundation/communication/wifi/wifi/test/wifi_client/
H A Dwifi_client.cpp73 Logd("%s", ss.str().c_str()); in PrintLinkedInfo()
85 Logd("%s", ss.str().c_str()); in PrintIpInfo()
100 Logd("%s", ss.str().c_str()); in PrintfDeviceConfigs()
116 Logd("%s", ss.str().c_str()); in PrintfScanResults()
/foundation/distributeddatamgr/udmf/framework/jskitsimpl/common/
H A Dnapi_data_utils.cpp429 char str[STR_MAX_SIZE] = { 0 }; in GetValue() local
431 env, attributeNameNapi, str, STR_MAX_SIZE, &len), napi_invalid_arg); in GetValue()
432 std::string attributeName = str; in GetValue()
434 NAPI_CALL_BASE(env, napi_get_named_property(env, in, str, &attributeValueNapi), napi_invalid_arg); in GetValue()
/foundation/filemanagement/storage_service/services/storage_daemon/disk/test/
H A Ddisk_info_test.cpp562 std::string str; in HWTEST_F() local
563 ReadFile(path, &str); in HWTEST_F()
566 EXPECT_CALL(*mock, GetDevVendor()).WillOnce(testing::Return(str)); in HWTEST_F()
569 EXPECT_TRUE(ret == str); in HWTEST_F()
/kernel/linux/linux-5.10/drivers/acpi/
H A Dbus.c671 const char *str, *chr; in acpi_of_modalias() local
682 str = obj->string.pointer; in acpi_of_modalias()
683 chr = strchr(str, ','); in acpi_of_modalias()
684 strlcpy(modalias, chr ? chr + 1 : str, len); in acpi_of_modalias()
/kernel/linux/linux-5.10/arch/arm/mach-rpc/
H A Decard.c770 char *str = buf; in resource_show() local
774 str += sprintf(str, "%08x %08x %08lx\n", in resource_show()
779 return str - buf; in resource_show()
/kernel/linux/linux-5.10/arch/m68k/mac/
H A Dconfig.c68 static void mac_get_model(char *str);
883 static void mac_get_model(char *str) in mac_get_model() argument
885 strcpy(str, "Macintosh "); in mac_get_model()
886 strcat(str, macintosh_config->name); in mac_get_model()
/kernel/linux/linux-5.10/arch/loongarch/kernel/
H A Dtraps.c405 void __noreturn die(const char *str, struct pt_regs *regs) in die() argument
412 if (notify_die(DIE_OOPS, str, regs, 0, current->thread.trap_nr, in die()
420 printk("%s[#%d]:\n", str, ++die_counter); in die()
719 if (kgdb_ll_trap(DIE_TRAP, str, regs, code, current->thread.trap_nr, in do_bp()

Completed in 31 milliseconds

1...<<371372373374375376377378379380>>...584