Home
last modified time | relevance | path

Searched refs:inName (Results 1 – 5 of 5) sorted by relevance

/ohos5.0/foundation/multimedia/image_framework/frameworks/innerkitsimpl/test/unittest/image_source_test/
H A Dimage_source_svg_test.cpp56 const std::string inName = INPUT_PATH + testName; variable
57 auto imageSource = ImageSource::CreateImageSource(inName, opts, errorCode);
99 const std::string inName = INPUT_PATH + testName; variable
100 auto imageSource = ImageSource::CreateImageSource(inName, opts, errorCode);
142 const std::string inName = INPUT_PATH + testName; variable
143 auto imageSource = ImageSource::CreateImageSource(inName, opts, errorCode);
187 const std::string inName = INPUT_PATH + testName; variable
188 auto imageSource = ImageSource::CreateImageSource(inName, opts, errorCode);
232 const std::string inName = INPUT_PATH + testName; variable
276 const std::string inName = INPUT_PATH + testName; variable
[all …]
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/test/unittest/common/communicator/
H A Ddistributeddb_communicator_common.cpp26 bool SetUpEnv(EnvHandle &inEnv, const string &inName, const std::shared_ptr<DBStatusAdapter> &adapt… in SetUpEnv() argument
29 LOGI("[UT][Common][SetUp] Already Setup for %s", inName.c_str()); in SetUpEnv()
33 inEnv.adapterHandle = new (nothrow) AdapterStub(inName); in SetUpEnv()
35 LOGI("[UT][Common][SetUp] Create AdapterStub fail for %s", inName.c_str()); in SetUpEnv()
41 LOGI("[UT][Common][SetUp] Create CommunicatorAggregator fail for %s", inName.c_str()); in SetUpEnv()
47 LOGI("[UT][Common][SetUp] Init CommunicatorAggregator fail for %s", inName.c_str()); in SetUpEnv()
54 bool SetUpEnv(EnvHandle &inEnv, const string &inName) in SetUpEnv() argument
56 return SetUpEnv(inEnv, inName, nullptr); in SetUpEnv()
H A Ddistributeddb_communicator_common.h41 bool SetUpEnv(EnvHandle &inEnv, const std::string &inName,
43 bool SetUpEnv(EnvHandle &inEnv, const std::string &inName);
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/common/src/
H A Dschema_utils.cpp427 int SchemaUtils::CheckFieldName(const FieldName &inName) in CheckFieldName() argument
429 if (inName.empty() || inName.size() > SchemaConstant::SCHEMA_FEILD_NAME_LENGTH_MAX) { in CheckFieldName()
435 if (!(std::isalpha(inName[0]) || inName[0] == '_')) { in CheckFieldName()
441 for (const auto &iter : inName) { in CheckFieldName()
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/common/include/
H A Dschema_utils.h40 static int CheckFieldName(const FieldName &inName);