/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/storage/src/sqlite/ |
H A D | query_object.cpp | 49 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_; 486 iter.fieldValue[1].integerValue = offset_;
|
H A D | sqlite_query_helper.cpp | 77 return std::to_string(val.integerValue); in FieldValue2String() 686 sql += " LIMIT " + std::to_string(queryNode.fieldValue[0].integerValue); in MapKeywordSymbolToSql() 687 sql += " OFFSET " + std::to_string(queryNode.fieldValue[1].integerValue); in MapKeywordSymbolToSql() 742 errCode = sqlite3_bind_int(statement, index, queryNode.fieldValue[i].integerValue); in BindFieldValue()
|
H A D | query_sync_object.cpp | 478 types.emplace_back(static_cast<int64_t>(value.integerValue)); in TransformValueToType()
|
H A D | sqlite_utils_extend.cpp | 288 sqlite3_result_int(ctx, value.integerValue); in ExtractReturn()
|
/foundation/communication/wifi/wifi/utils/inc/ |
H A D | magic_enum.h | 98 constexpr std::array<int, sizeof...(Is)> integerValue{Is...}; in GetAllValidValues() 102 values[v++] = integerValue[i]; in GetAllValidValues()
|
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/test/unittest/common/common/ |
H A D | distributeddb_schema_unit_test.cpp | 71 attributeRes.defaultValue.integerValue = 0; in PreNumDataForParseAndCheckSchemaAttribute003() 79 attributeRes1.defaultValue.integerValue = INT32_MAX; in PreNumDataForParseAndCheckSchemaAttribute003() 85 attributeRes2.defaultValue.integerValue = 0; in PreNumDataForParseAndCheckSchemaAttribute003()
|
H A D | distributeddb_schema_object_test.cpp | 915 val.integerValue = INT32_MIN; in HWTEST_F() 1082 EXPECT_EQ(theValue.integerValue, 100); in HWTEST_F()
|
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/common/src/ |
H A D | schema_object.cpp | 675 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 LOGE("[Schema][CompareDefault] OldDefault=%d mismatch newDefault=%d.", oldAttr.defaultValue.integerValue, in CompareSchemaDefaultValue() 908 newAttr.defaultValue.integerValue); in CompareSchemaDefaultValue()
|
H A D | flatbuffer_schema.cpp | 363 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 D | query_expression.cpp | 157 fieldNumber.integerValue = number; in Limit() 159 fieldOffset.integerValue = offset; in Limit()
|
H A D | json_object.cpp | 296 outValue.integerValue = valueNode.asInt(); in GetFieldValueByFieldPath() 476 leafNode = Json::Value(static_cast<Json::Int>(inValue.integerValue)); in LeafJsonNodeAssignValue()
|
H A D | schema_utils.cpp | 176 outAttr.defaultValue.integerValue = transRes; in TransToInteger()
|
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/test/unittest/common/interfaces/ |
H A D | distributeddb_interfaces_query_test.cpp | 165 fieldValue.integerValue = 1; in HWTEST_F() 182 values.back().integerValue = 2; in HWTEST_F()
|
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/include/ |
H A D | types_export.h | 103 int32_t integerValue; member
|
H A D | query_expression.h | 197 fieldValue.integerValue = queryValue; in GetFieldTypeAndValue()
|
/foundation/distributeddatamgr/relational_store/test/native/rdb/unittest/ |
H A D | rdb_predicates_test.cpp | 53 return integerValue;
in GetIntegerValue() 56 void SetIntegerValue(int integerValue)
in SetIntegerValue() argument 58 this->integerValue = integerValue;
in SetIntegerValue() 264 int integerValue;
member in AllDataType 335 "(id INTEGER PRIMARY KEY AUTOINCREMENT, integerValue INTEGER , longValue INTEGER , "
349 "INSERT INTO AllDataType (id, integerValue, longValue, "
585 predicates.EqualTo("integerValue", "1");
in HWTEST_F() 720 predicates1.EqualTo("integerValue", std::to_string(1));
in BasicDataTypeTest() 889 predicates1.NotEqualTo("integerValue", " in BasicDataTypeTest002() [all...] |
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/common/src/relational/ |
H A D | relational_schema_object.cpp | 740 field.SetColumnId(fieldValue.integerValue); 980 resultTable.SetTableSyncType(static_cast<TableSyncType>(fieldValue.integerValue));
|