Home
last modified time | relevance | path

Searched refs:word (Results 1 - 24 of 24) sorted by relevance

/foundation/arkui/ui_lite/frameworks/font/
H A Dui_font_allocator.cpp201 uint32_t word = bufInfo.width; in RearrangeBitmap() local
202 word = BIT_TO_BYTE(word * DrawUtils::GetPxSizeByColorMode(bufInfo.mode)); in RearrangeBitmap()
203 if (bufInfo.stride <= word) { in RearrangeBitmap()
211 uint32_t suffixLen = bufInfo.stride - word; in RearrangeBitmap()
219 for (uint32_t i = 0; i < word; i++) { in RearrangeBitmap()
/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/service/kvdb/
H A Dquery_helper.h61 static int StringToInt(const std::string &word);
62 static int64_t StringToLong(const std::string &word);
63 static double StringToDouble(const std::string &word);
64 static bool StringToBoolean(const std::string &word);
65 static std::string StringToString(const std::string &word);
H A Dquery_helper.cpp567 int QueryHelper::StringToInt(const std::string &word) in StringToInt() argument
570 std::istringstream(word) >> result; in StringToInt()
574 int64_t QueryHelper::StringToLong(const std::string &word) in StringToLong() argument
577 std::istringstream(word) >> result; in StringToLong()
581 double QueryHelper::StringToDouble(const std::string &word) in StringToDouble() argument
584 std::istringstream(word) >> result; in StringToDouble()
588 bool QueryHelper::StringToBoolean(const std::string &word) in StringToBoolean() argument
590 if (word == DataQuery::VALUE_TRUE) { in StringToBoolean()
592 } else if (word == DataQuery::VALUE_FALSE) { in StringToBoolean()
600 std::string QueryHelper::StringToString(const std::string &word) in StringToString() argument
[all...]
/foundation/ai/intelligent_voice_framework/frameworks/native/
H A Denroll_intell_voice_engine.cpp159 int32_t EnrollIntellVoiceEngine::Evaluate(const std::string &word, EvaluationResultInfo &info) in Evaluate() argument
163 descriptor_->wakeupPhrase = word; in Evaluate()
169 return engine_->Evaluate(word, info); in Evaluate()
/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/service/test/
H A Dkvdb_service_test.cpp579 std::string word = "true"; in HWTEST_F() local
580 EXPECT_TRUE(queryHelper->StringToBoolean(word)); in HWTEST_F()
581 word = "false"; in HWTEST_F()
582 EXPECT_FALSE(queryHelper->StringToBoolean(word)); in HWTEST_F()
583 word = "BOOL"; in HWTEST_F()
584 EXPECT_FALSE(queryHelper->StringToBoolean(word)); in HWTEST_F()
586 word = "^EMPTY_STRING"; in HWTEST_F()
587 auto result = queryHelper->StringToString(word); in HWTEST_F()
589 word = "START"; in HWTEST_F()
590 result = queryHelper->StringToString(word); in HWTEST_F()
[all...]
/foundation/ai/intelligent_voice_framework/services/intell_voice_engine/server/hdi_adapter/
H A Dadapter_host_manager.cpp123 int32_t AdapterHostManager::Evaluate(const std::string &word, EvaluationResultInfo &info) in Evaluate() argument
129 return adapterProxy1_2_->Evaluate(word, info); in Evaluate()
H A Dheadset_adapter_host_manager.h37 int32_t Evaluate(const std::string &word, EvaluationResultInfo &info) override;
H A Di_adapter_host_manager.h44 virtual int32_t Evaluate(const std::string &word, EvaluationResultInfo &info) = 0;
H A Dadapter_host_manager.h37 int32_t Evaluate(const std::string &word, EvaluationResultInfo &info) override;
/foundation/arkui/ace_engine/adapter/ohos/capability/html/
H A Dhtml_to_span.cpp290 } else if (key == "word-break") { in InitParagrap()
302 if (key == "text-align" || key == "word-break" || key == "text-overflow" || key == "text-indent") { in IsParagraphAttr()
346 std::string word; in InitDecoration() local
348 while (ss1 >> word) { in InitDecoration()
349 words.push_back(word); in InitDecoration()
350 if (IsDecorationLine(word)) { in InitDecoration()
351 decoration->decorationType = StringToTextDecoration(word); in InitDecoration()
352 } else if (IsDecorationStyle(word)) { in InitDecoration()
353 decoration->decorationSytle = StringToTextDecorationStyle(word); in InitDecoration()
355 decoration->color = ToSpanColor(word); in InitDecoration()
441 std::string word; InitTextShadow() local
540 std::string word; SetPaddingOption() local
586 std::string word; SetMarginOption() local
632 std::string word; SetBorderOption() local
[all...]
/foundation/ai/intelligent_voice_framework/services/intell_voice_engine/server/base/
H A Dengine_base.h42 int32_t Evaluate(const std::string &word, EvaluationResultInfo &info) override;
H A Dengine_util.cpp98 int32_t EngineUtil::Evaluate(const std::string &word, EvaluationResultInfo &info) in Evaluate() argument
105 return adapter_->Evaluate(word, info); in Evaluate()
H A Dengine_util.h92 int32_t Evaluate(const std::string &word, EvaluationResultInfo &info);
/foundation/ai/intelligent_voice_framework/interfaces/inner_api/native/
H A Denroll_intell_voice_engine.h54 int32_t Evaluate(const std::string &word, EvaluationResultInfo &info);
/foundation/ai/intelligent_voice_framework/services/intell_voice_engine/proxy/
H A Dintell_voice_engine_proxy.h42 int32_t Evaluate(const std::string &word, EvaluationResultInfo &info) override;
H A Dintell_voice_engine_proxy.cpp260 int32_t IntellVoiceEngineProxy::Evaluate(const std::string &word, EvaluationResultInfo &info) in Evaluate() argument
267 data.WriteString(word); in Evaluate()
/foundation/ai/intelligent_voice_framework/services/intell_voice_engine/
H A Di_intell_voice_engine.h91 virtual int32_t Evaluate(const std::string &word, EvaluationResultInfo &info) = 0;
/foundation/ai/intelligent_voice_framework/services/intell_voice_engine/server/enroll/
H A Denroll_engine.h40 int32_t Evaluate(const std::string &word, EvaluationResultInfo &info) override;
H A Denroll_engine.cpp278 int32_t EnrollEngine::Evaluate(const std::string &word, EvaluationResultInfo &info) in Evaluate() argument
281 return EngineUtil::Evaluate(word, info); in Evaluate()
/foundation/graphic/graphic_2d/rosen/samples/2d_graphics/benchmarks/benchmark_dcl/
H A Ddrawing_playback.cpp294 std::string word; in GetDirectionAndStep() local
295 while (ss >> word) { in GetDirectionAndStep()
296 words.emplace_back(word); in GetDirectionAndStep()
/foundation/ai/intelligent_voice_framework/frameworks/js/napi/
H A Denroll_intell_voice_engine_napi.cpp37 string word; member in OHOS::IntellVoiceNapi::EvaluateContext
604 CHECK_CONDITION_RETURN_FALSE((GetValue(env, argv[ARG_INDEX_0], context->word) != napi_ok), in EvaluateForResult()
605 "failed to get word"); in EvaluateForResult()
623 auto ret = engine->Evaluate(context->word, context->info); in EvaluateForResult()
/foundation/communication/bluetooth_service/services/bluetooth/service/src/obex/
H A Dobex_headers.cpp460 void ObexHeader::AppendWord(const uint8_t headerId, const uint32_t word) in AppendWord() argument
462 std::unique_ptr<ObexOptionalHeader> header = std::make_unique<ObexOptionalWordHeader>(headerId, word); in AppendWord()
1121 ObexOptionalWordHeader::ObexOptionalWordHeader(const uint8_t headerId, const uint32_t word) in ObexOptionalWordHeader() argument
1122 : ObexOptionalBytesHeader(headerId, reinterpret_cast<uint8_t *>(const_cast<uint32_t *>(&word)), in ObexOptionalWordHeader()
H A Dobex_headers.h275 ObexOptionalWordHeader(const uint8_t headerId, const uint32_t word);
536 void AppendWord(const uint8_t headerId, const uint32_t word);
/foundation/arkui/ace_engine/test/component_test/tools/previewer_host/main/
H A Dcollect_results_and_visualize.js208 word-break: break-all;

Completed in 18 milliseconds