Home
last modified time | relevance | path

Searched refs:integerValue (Results 1 – 21 of 21) sorted by relevance

/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/storage/src/sqlite/
H A Dquery_object.cpp49 limit_ = iter.fieldValue[0].integerValue; in SetAttrWithQueryObjNodes()
50 offset_ = iter.fieldValue[1].integerValue; in SetAttrWithQueryObjNodes()
270 limit_ = iter->fieldValue[0].integerValue; in ParseNodeByOperFlag()
271 offset_ = iter->fieldValue[1].integerValue; in ParseNodeByOperFlag()
485 iter.fieldValue[0].integerValue = limit_; in SetLimit()
486 iter.fieldValue[1].integerValue = offset_; in SetLimit()
H A Dsqlite_query_helper.cpp76 return std::to_string(val.integerValue); in FieldValue2String()
683 sql += " LIMIT " + std::to_string(queryNode.fieldValue[0].integerValue); in MapKeywordSymbolToSql()
684 sql += " OFFSET " + std::to_string(queryNode.fieldValue[1].integerValue); in MapKeywordSymbolToSql()
739 errCode = sqlite3_bind_int(statement, index, queryNode.fieldValue[i].integerValue); in BindFieldValue()
H A Dquery_sync_object.cpp478 types.emplace_back(static_cast<int64_t>(value.integerValue)); in TransformValueToType()
H A Dsqlite_utils.cpp2038 sqlite3_result_int(ctx, value.integerValue); in ExtractReturn()
/ohos5.0/drivers/hdf_core/framework/tools/hc-gen/src/
H A Dast.cpp21 AstObject::AstObject(const std::string &name, uint32_t type, uint64_t integerValue, const std::stri… in AstObject() argument
34 integerValue_(integerValue), in AstObject()
39 AstObject::AstObject(const std::string &name, uint32_t type, uint64_t integerValue) in AstObject() argument
40 : AstObject(name, type, integerValue, "", 0, nullptr) in AstObject()
49 AstObject::AstObject(const std::string &name, uint32_t type, uint64_t integerValue, const Token &bi… in AstObject() argument
50 : AstObject(name, type, integerValue, "", bindToken.lineNo, bindToken.src) in AstObject()
57 this->type_ = FitIntegerValueType(integerValue); in AstObject()
H A Dast.h48 …AstObject(const std::string &name, uint32_t type, uint64_t integerValue, const std::string &strVal…
51 AstObject(const std::string &name, uint32_t type, uint64_t integerValue);
55 … AstObject(const std::string &name, uint32_t type, uint64_t integerValue, const Token &bindToken);
/ohos5.0/foundation/communication/wifi/wifi/utils/inc/
H A Dmagic_enum.h97 constexpr std::array<int, sizeof...(Is)> integerValue{Is...}; in GetAllValidValues()
101 values[v++] = integerValue[i]; in GetAllValidValues()
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/test/unittest/common/common/
H A Ddistributeddb_schema_unit_test.cpp71 attributeRes.defaultValue.integerValue = 0; in PreNumDataForParseAndCheckSchemaAttribute003()
79 attributeRes1.defaultValue.integerValue = INT32_MAX; in PreNumDataForParseAndCheckSchemaAttribute003()
85 attributeRes2.defaultValue.integerValue = 0; in PreNumDataForParseAndCheckSchemaAttribute003()
H A Ddistributeddb_schema_object_test.cpp915 val.integerValue = INT32_MIN;
1082 EXPECT_EQ(theValue.integerValue, 100);
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/common/src/
H A Dschema_object.cpp675 if (skipSizeValue.integerValue < 0 || in ParseCheckSchemaSkipSize()
676 static_cast<uint32_t>(skipSizeValue.integerValue) > SchemaConstant::SCHEMA_SKIPSIZE_MAX) { in ParseCheckSchemaSkipSize()
677 LOGE("[Schema][ParseSkipSize] Unexpected SCHEMA_SKIPSIZE=%d.", skipSizeValue.integerValue); in ParseCheckSchemaSkipSize()
680 schemaSkipSize_ = static_cast<uint32_t>(skipSizeValue.integerValue); in ParseCheckSchemaSkipSize()
906 if (oldAttr.defaultValue.integerValue != newAttr.defaultValue.integerValue) { in CompareSchemaDefaultValue()
907 …[Schema][CompareDefault] OldDefault=%d mismatch newDefault=%d.", oldAttr.defaultValue.integerValue, in CompareSchemaDefaultValue()
908 newAttr.defaultValue.integerValue); in CompareSchemaDefaultValue()
H A Dflatbuffer_schema.cpp363 outExtract.second.integerValue = flatbuffers::GetFieldI<int8_t>(rootValue, fieldInfo); in DoExtractValue()
366 outExtract.second.integerValue = flatbuffers::GetFieldI<uint8_t>(rootValue, fieldInfo); in DoExtractValue()
369 outExtract.second.integerValue = flatbuffers::GetFieldI<int16_t>(rootValue, fieldInfo); in DoExtractValue()
372 outExtract.second.integerValue = flatbuffers::GetFieldI<uint16_t>(rootValue, fieldInfo); in DoExtractValue()
375 outExtract.second.integerValue = flatbuffers::GetFieldI<int32_t>(rootValue, fieldInfo); in DoExtractValue()
H A Dquery_expression.cpp157 fieldNumber.integerValue = number; in Limit()
159 fieldOffset.integerValue = offset; in Limit()
H A Djson_object.cpp296 outValue.integerValue = valueNode.asInt(); in GetFieldValueByFieldPath()
476 leafNode = Json::Value(static_cast<Json::Int>(inValue.integerValue)); in LeafJsonNodeAssignValue()
H A Dschema_utils.cpp176 outAttr.defaultValue.integerValue = transRes; in TransToInteger()
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/test/unittest/common/interfaces/
H A Ddistributeddb_interfaces_query_test.cpp165 fieldValue.integerValue = 1;
182 values.back().integerValue = 2;
/ohos5.0/base/update/updater/services/script/script_interpreter/
H A Dscript_context.cpp471 IntegerValue* integerValue = (IntegerValue*)(rightValue.get()); in Computer() local
472 if (integerValue == nullptr) { in Computer()
477 return make_shared<StringValue>(str + to_string(integerValue->GetValue())); in Computer()
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/include/
H A Dtypes_export.h103 int32_t integerValue; member
H A Dquery_expression.h197 fieldValue.integerValue = queryValue; in GetFieldTypeAndValue()
/ohos5.0/base/global/i18n/interfaces/js/kits/src/
H A Dintl_addon.cpp203 int64_t integerValue = -1; in GetIntegerOptionValue() local
208 return integerValue; in GetIntegerOptionValue()
215 status = napi_get_value_int64(env, optionValue, &integerValue); in GetIntegerOptionValue()
217 map.insert(make_pair(optionName, std::to_string(integerValue))); in GetIntegerOptionValue()
221 return integerValue; in GetIntegerOptionValue()
1011 int64_t integerValue = std::stoi(optionValue); in SetIntegerOptionProperties() local
1012 napi_create_int64(env, integerValue, &optionJsValue); in SetIntegerOptionProperties()
/ohos5.0/foundation/distributeddatamgr/relational_store/test/native/rdb/unittest/
H A Drdb_predicates_test.cpp53 return integerValue; in GetIntegerValue()
56 void SetIntegerValue(int integerValue) in SetIntegerValue() argument
58 this->integerValue = integerValue; in SetIntegerValue()
264 int integerValue; member in AllDataType
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/common/src/relational/
H A Drelational_schema_object.cpp740 field.SetColumnId(fieldValue.integerValue); in ParseCheckTableFieldInfo()
980 resultTable.SetTableSyncType(static_cast<TableSyncType>(fieldValue.integerValue)); in ParseCheckTableSyncType()