Home
last modified time | relevance | path

Searched refs:isVaild (Results 1 – 12 of 12) sorted by relevance

/ohos5.0/base/global/i18n/frameworks/intl/entity_recognition/date_time_recognition/src/
H A Drules_engine.cpp85 bool isVaild = InitRules(rulesValue); in Init() local
88 if (!regex.trim().isEmpty() && isVaild) { in Init()
96 bool isVaild = true; in InitRules() local
104 return isVaild; in InitRules()
114 while (matcher->find(status) && isVaild) { in InitRules()
126 isVaild = (targetStr.length() == 0) ? false : true; in InitRules()
134 return isVaild; in InitRules()
/ohos5.0/base/account/os_account/services/accountmgr/test/unittest/domain_account/
H A Ddomain_account_manager_inner_service_test.cpp557 int32_t isVaild; variable
558 …EXPECT_EQ(instance->PluginIsAccountTokenValid(info, password, isVaild), ERR_JS_CAPABILITY_NOT_SUPP…
585 int32_t isVaild; variable
605 EXPECT_EQ(instance->PluginIsAccountTokenValid(info, password, isVaild), ERR_OK);
630 int32_t isVaild; variable
652 EXPECT_EQ(instance->PluginIsAccountTokenValid(info, password, isVaild),
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/navrouter/
H A Dnavdestination_model_ng.h50 static void SetBackgroundColor(FrameNode* frameNode, const Color& color, bool isVaild = true);
62 void SetBackgroundColor(const Color& color, bool isVaild = true) override;
H A Dnavdestination_model.h61 virtual void SetBackgroundColor(const Color& color, bool isVaild = true) = 0;
H A Dnavdestination_model_ng.cpp633 void NavDestinationModelNG::SetBackgroundColor(const Color& color, bool isVaild) in SetBackgroundColor() argument
641 if (!isVaild) { in SetBackgroundColor()
649 …d NavDestinationModelNG::SetBackgroundColor(FrameNode* frameNode, const Color& color, bool isVaild) in SetBackgroundColor() argument
655 if (!isVaild) { in SetBackgroundColor()
/ohos5.0/foundation/multimedia/av_codec/test/moduletest/vcodec/swdecoder/src/
H A Dfunc_test.cpp107 bool isVaild = false; variable
108 OH_VideoDecoder_IsValid(vDecSample->vdec_, &isVaild);
109 ASSERT_EQ(false, isVaild);
/ohos5.0/foundation/multimedia/av_codec/test/moduletest/audio_decoder/NativeAPI/
H A DNativeNullCheckTest.cpp596 bool isVaild; variable
597 ret = decoderDemo->NativeIsValid(nullptr, &isVaild);
/ohos5.0/foundation/multimedia/av_codec/test/moduletest/audio_encoder/NativeAPI/
H A DNativeNullCheckTest.cpp629 bool isVaild; variable
630 ret = encoderDemo->NativeIsValid(nullptr, &isVaild);
/ohos5.0/foundation/multimedia/av_codec/test/moduletest/audio_encoder/Common/include/
H A DAudioEncoderDemoCommon.h122 OH_AVErrCode NativeIsValid(OH_AVCodec* codec, bool* isVaild);
/ohos5.0/foundation/multimedia/av_codec/test/moduletest/audio_decoder/Common/include/
H A DAudioDecoderDemoCommon.h113 OH_AVErrCode NativeIsValid(OH_AVCodec* codec, bool* isVaild);
/ohos5.0/foundation/multimedia/av_codec/test/moduletest/audio_encoder/Common/src/
H A DAudioEncoderDemoCommon.cpp177 OH_AVErrCode AudioEncoderDemo::NativeIsValid(OH_AVCodec* codec, bool* isVaild) in NativeIsValid() argument
179 return OH_AudioEncoder_IsValid(codec, isVaild); in NativeIsValid()
/ohos5.0/foundation/multimedia/av_codec/test/moduletest/audio_decoder/Common/src/
H A DAudioDecoderDemoCommon.cpp180 OH_AVErrCode AudioDecoderDemo::NativeIsValid(OH_AVCodec *codec, bool *isVaild) in NativeIsValid() argument
182 return OH_AudioDecoder_IsValid(codec, isVaild); in NativeIsValid()