Home
last modified time | relevance | path

Searched refs:filterObj (Results 1 – 13 of 13) sorted by relevance

/ohos5.0/foundation/graphic/graphic_2d/interfaces/kits/napi/graphic/ui_effect/src/
H A Dfilter_napi.cpp146 if (filterObj == nullptr) { in CreateFilter()
156 env, object, filterObj, in CreateFilter()
159 delete filterObj; in CreateFilter()
160 filterObj = nullptr; in CreateFilter()
201 if (filterObj == nullptr) { in SetBlur()
211 filterObj->AddPara(para); in SetBlur()
298 if (filterObj == nullptr) { in SetPixelStretch()
302 filterObj->AddPara(para); in SetPixelStretch()
378 filterObj->AddPara(para); in SetWaterRipple()
422 filterObj->AddPara(para); in SetFlyOut()
[all …]
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/gaussdb_rd/test/unittest/oh_adapter/
H A Ddocumentdb_json_common_test.cpp308 JsonObject filterObj = JsonObject::Parse(filter, errCode); variable
328 JsonObject filterObj = JsonObject::Parse(filter, errCode); variable
340 JsonObject filterObj = JsonObject::Parse(filter, errCode); variable
352 JsonObject filterObj = JsonObject::Parse(filter, errCode); variable
364 JsonObject filterObj = JsonObject::Parse(filter, errCode); variable
376 JsonObject filterObj = JsonObject::Parse(filter, errCode); variable
388 JsonObject filterObj = JsonObject::Parse(filter, errCode); variable
400 JsonObject filterObj = JsonObject::Parse(filter, errCode); variable
412 JsonObject filterObj = JsonObject::Parse(filter, errCode); variable
424 JsonObject filterObj = JsonObject::Parse(filter, errCode); variable
[all …]
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/gaussdb_rd/src/interface/src/
H A Ddocument_store.cpp134 filterAllPath = JsonCommon::ParsePath(filterObj, errCode); in TranFilter()
139 return CheckCommon::CheckFilter(filterObj, filterAllPath, isIdExist); in TranFilter()
264 JsonObject filterObj = JsonObject::Parse(filter, errCode, true, true); in UpdateDocument() local
271 errCode = TranFilter(filterObj, filterAllPath, isIdExist); in UpdateDocument()
281 return UpdateDataIntoDB(context, filterObj, update, isReplace); in UpdateDocument()
358 auto filterObjChild = filterObj.GetChild(); in InsertIdToDocument()
452 JsonObject filterObj = JsonObject::Parse(filter, errCode, true, true); in UpsertDocument() local
469 errCode = TranFilter(filterObj, filterAllPath, isIdExist); in UpsertDocument()
608 errCode = TranFilter(filterObj, filterAllPath, isIdExist); in DeleteDocument()
616 return DeleteDataFromDB(context, filterObj); in DeleteDocument()
[all …]
H A Dresult_set.cpp45 int ResultSet::GetValueFromDB(Key &key, JsonObject &filterObj, std::string &jsonKey, std::string &j… in GetValueFromDB() argument
49 filterObj.DeleteItemFromObject(KEY_ID); in GetValueFromDB()
50 int errCode = coll.GetMatchedDocument(filterObj, key, value, context_->isIdExist); in GetValueFromDB()
69 JsonObject filterObj = JsonObject::Parse(context_->filter, errCode, true, true); in GetNextWithField() local
77 JsonObject filterObjChild = filterObj.GetChild(); in GetNextWithField()
93 errCode = GetValueFromDB(key, filterObj, jsonKey, jsonData); in GetNextWithField()
H A Dcollection.cpp97 int Collection::GetMatchedDocument(const JsonObject &filterObj, Key &key, std::pair<std::string, st… in GetMatchedDocument() argument
103 return executor_->GetDataByFilter(name_, key, filterObj, values, isIdExist); in GetMatchedDocument()
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/gaussdb_rd/src/interface/include/
H A Ddocument_store.h70 …int UpdateDataIntoDB(std::shared_ptr<QueryContext> &context, JsonObject &filterObj, const std::str…
72 …int UpsertDataIntoDB(std::shared_ptr<QueryContext> &context, JsonObject &filterObj, const std::str…
76 int DeleteDataFromDB(std::shared_ptr<QueryContext> &context, JsonObject &filterObj);
H A Dcollection.h32 …int GetMatchedDocument(const JsonObject &filterObj, Key &key, std::pair<std::string, std::string> …
H A Dresult_set.h43 … int GetValueFromDB(Key &key, JsonObject &filterObj, std::string &jsonKey, std::string &jsonData);
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/gaussdb_rd/src/executor/document/
H A Dcheck_common.h32 …static int CheckFilter(JsonObject &filterObj, std::vector<std::vector<std::string>> &filterPath, b…
H A Dcheck_common.cpp101 int CheckCommon::CheckFilter(JsonObject &filterObj, std::vector<std::vector<std::string>> &filterPa… in CheckFilter() argument
116 ret = CheckIdFormat(filterObj, isIdExist); in CheckFilter()
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/gaussdb_rd/src/oh_adapter/src/
H A Dsqlite_store_executor_impl.cpp239 …reExecutorImpl::GetDataByFilter(const std::string &collName, Key &key, const JsonObject &filterObj, in GetDataByFilter() argument
261 … [&keyResult, &innerErrorCode, &valueResult, &filterObj, &values, &isFindMatch](sqlite3_stmt *stmt, in GetDataByFilter()
272 if (JsonCommon::IsJsonNodeMatch(srcObj, filterObj, innerErrorCode)) { in GetDataByFilter()
H A Dsqlite_store_executor_impl.h44 int GetDataByFilter(const std::string &collName, Key &key, const JsonObject &filterObj,
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/gaussdb_rd/src/oh_adapter/include/
H A Dkv_store_executor.h36 virtual int GetDataByFilter(const std::string &collName, Key &key, const JsonObject &filterObj,