/foundation/arkui/ace_engine/frameworks/core/components_ng/render/adapter/ |
H A D | rosen_modifier_property.cpp | 36 bool isCreate = CreateOrSetModifierValue(property, value); in AddOrChangeScaleModifier() local 37 if (isCreate) { in AddOrChangeScaleModifier() 48 bool isCreate = CreateOrSetModifierValue(property, value); in AddOrChangeSkewModifier() local 49 if (isCreate) { in AddOrChangeSkewModifier() 60 bool isCreate = CreateOrSetModifierValue(property, value); in AddOrChangePivotModifier() local 61 if (isCreate) { in AddOrChangePivotModifier() 72 bool isCreate = CreateOrSetModifierValue(property, value); in AddOrChangeTranslateZModifier() local 73 if (isCreate) { in AddOrChangeTranslateZModifier() 84 bool isCreate = CreateOrSetModifierValue(property, value); in AddOrChangePerspectiveModifier() local 85 if (isCreate) { in AddOrChangePerspectiveModifier() 96 bool isCreate = CreateOrSetModifierValue(property, value); AddOrChangeTranslateModifier() local 108 bool isCreate = CreateOrSetModifierValue(property, value); AddOrChangeQuaternionModifier() local [all...] |
/foundation/distributeddatamgr/kv_store/kvstoremock/frameworks/innerkitsimpl/kvdb/src/ |
H A D | store_manager.cpp | 39 bool isCreate = false; in GetKVStore() local 40 auto kvStore = StoreFactory::GetInstance().GetOrOpenStore(appId, storeId, options, status, isCreate); in GetKVStore() 41 if (isCreate && options.persistent) { in GetKVStore()
|
H A D | store_factory.cpp | 39 const Options &options, Status &status, bool &isCreate) in GetOrOpenStore() 42 isCreate = false; in GetOrOpenStore() 71 isCreate = true; in GetOrOpenStore() 38 GetOrOpenStore(const AppId &appId, const StoreId &storeId, const Options &options, Status &status, bool &isCreate) GetOrOpenStore() argument
|
/foundation/distributeddatamgr/kv_store/frameworks/innerkitsimpl/kvdb/src/ |
H A D | backup_manager.cpp | 124 bool isCreate = !StoreUtil::IsFileExist(backupFullName); in Backup() local 125 if ((StoreUtil::GetFiles(storePath).size() >= MAX_BACKUP_NUM) && isCreate) { in Backup() 130 KeepData(backupFullName, isCreate); in Backup() 133 KeepData(keyFullName, isCreate); in Backup() 145 RollBackData(backupFullName, isCreate); in Backup() 147 RollBackData(keyFullName, isCreate); in Backup()
|
H A D | store_manager.cpp | 53 bool isCreate = false; in GetKVStore() local 54 auto kvStore = StoreFactory::GetInstance().GetOrOpenStore(appId, storeId, options, status, isCreate); in GetKVStore() 56 kvStore = StoreFactory::GetInstance().GetOrOpenStore(appId, storeId, options, status, isCreate); in GetKVStore() 70 if (isCreate && options.persistent) { in GetKVStore()
|
H A D | store_factory.cpp | 61 const Options &options, Status &status, bool &isCreate) in GetOrOpenStore() 64 isCreate = false; in GetOrOpenStore() 112 isCreate = true; in GetOrOpenStore() 60 GetOrOpenStore(const AppId &appId, const StoreId &storeId, const Options &options, Status &status, bool &isCreate) GetOrOpenStore() argument
|
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/test/unittest/common/interfaces/ |
H A D | process_system_api_adapter_impl.cpp | 154 void ProcessSystemApiAdapterImpl::SetNeedCreateDb(bool isCreate) in SetNeedCreateDb() argument 157 createDb_ = isCreate; in SetNeedCreateDb()
|
H A D | process_system_api_adapter_impl.h | 37 void SetNeedCreateDb(bool isCreate);
|
/foundation/distributeddatamgr/kv_store/kvstoremock/frameworks/innerkitsimpl/kvdb/include/ |
H A D | store_factory.h | 28 Status &status, bool &isCreate);
|
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/storage/src/sqlite/ |
H A D | sqlite_single_ver_database_upgrader.cpp | 442 bool isCreate = false; in MigrateMetaFromMetaDB() local 443 int errCode = SQLiteUtils::CheckTableExists(db_, "meta_data", isCreate, true); in MigrateMetaFromMetaDB() 444 if (errCode != E_OK || !isCreate) { in MigrateMetaFromMetaDB() 445 LOGW("[SQLiteSinVerUp] Check table in meta db errCode %d isCreate %d", errCode, static_cast<int>(isCreate)); in MigrateMetaFromMetaDB()
|
H A D | sqlite_single_ver_storage_executor_extend.cpp | 393 bool isCreate = false; in RemoveCloudUploadFlag() local 394 int errCode = SQLiteUtils::CheckTableExists(dbHandle_, tableName, isCreate); in RemoveCloudUploadFlag() 398 if (!isCreate) { in RemoveCloudUploadFlag()
|
/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/service/backup/include/ |
H A D | backup_manager.h | 51 void CopyFile(const std::string &oldPath, const std::string &newPath, bool isCreate = false);
|
/foundation/multimedia/media_library/frameworks/innerkitsimpl/test/unittest/notify_test/src/ |
H A D | notify_test.cpp | 163 void CheckCloseAssetNotify(bool isCreate) in CheckCloseAssetNotify() argument 175 if (isCreate) { in CheckCloseAssetNotify() 186 if (isCreate) { in CheckCloseAssetNotify() 441 * 2. isCreate == true 456 * 2. isCreate == false
|
/foundation/arkui/ace_engine/frameworks/core/components_ng/manager/select_content_overlay/ |
H A D | select_overlay_callback.h | 74 virtual void OnAfterSelectOverlayShow(bool isCreate) {} in OnAfterSelectOverlayShow() argument
|
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/rich_editor/ |
H A D | rich_editor_select_overlay.h | 72 void OnAfterSelectOverlayShow(bool isCreate) override;
|
H A D | rich_editor_pattern.h | 1148 const RefPtr<SpanNode>& spanNode, int32_t insertValueLength, bool isCreate, bool isIme = true); 1149 bool AfterIMEInsertValue(const RefPtr<SpanNode>& spanNode, int32_t moveLength, bool isCreate); 1158 bool isCreate = false, bool fixDel = true); 1166 void CalcInsertValueObj(TextInsertValueInfo& info, int textIndex, bool isCreate = false);
|
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/text_field/ |
H A D | text_field_select_overlay.h | 66 void OnAfterSelectOverlayShow(bool isCreate) override;
|
/foundation/distributeddatamgr/kv_store/frameworks/innerkitsimpl/kvdb/include/ |
H A D | store_factory.h | 29 Status &status, bool &isCreate);
|
/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/service/backup/src/ |
H A D | backup_manager.cpp | 278 void BackupManager::CopyFile(const std::string &oldPath, const std::string &newPath, bool isCreate) in CopyFile() argument 285 if (isCreate) { in CopyFile()
|
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/storage/src/gaussdb_rd/ |
H A D | rd_single_ver_natural_store.cpp | 121 bool isCreate = kvDBProp.GetBoolProp(KvDBProperties::CREATE_IF_NECESSARY, true); in Open() local 122 errCode = DBCommon::CreateStoreDirectory(dataDir, identifierDir, DBConstant::SINGLE_SUB_DIR, isCreate); in Open()
|
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/common/include/ |
H A D | db_common.h | 61 const std::string &subDir, bool isCreate);
|
/foundation/communication/dsoftbus/core/bus_center/lnn/net_builder/src/ |
H A D | lnn_net_builder_init.c | 164 bool isCreate = false; in PostJoinRequestToConnFsm() local 174 isCreate = true; in PostJoinRequestToConnFsm() 181 if (connFsm != NULL && isCreate) { in PostJoinRequestToConnFsm()
|
/foundation/graphic/graphic_2d/rosen/modules/render_service_client/core/animation/ |
H A D | rs_symbol_animation.cpp | 450 bool isCreate = SymbolAnimation::CreateOrSetModifierValue(pivotProperty_, CENTER_NODE_COORDINATE); in SetNodePivot() local 451 if (isCreate) { in SetNodePivot() 778 bool isCreate = SymbolAnimation::CreateOrSetModifierValue(scaleProperty, scaleValueBegin); in AddScaleBaseModifier() local 779 if (!isCreate) { in AddScaleBaseModifier()
|
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/storage/src/operation/ |
H A D | single_ver_database_oper.cpp | 504 bool isCreate = properties.GetBoolProp(KvDBProperties::CREATE_IF_NECESSARY, true); in InitDataBaseOption() local 510 option = {uri, isCreate, isMemoryDb, createTableSqls, cipherType, passwd}; in InitDataBaseOption()
|
/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/service/kvdb/ |
H A D | kvdb_service_impl.cpp | 548 bool isCreate = false; in Subscribe() local 549 syncAgents_.Compute(tokenId, [&appId, &storeId, &observer, &isCreate](auto &key, SyncAgent &agent) { in Subscribe() 553 isCreate = true; in Subscribe() 559 if (isCreate) { in Subscribe()
|