Home
last modified time | relevance | path

Searched refs:GetInt64 (Results 1 - 25 of 35) sorted by relevance

12

/foundation/arkui/ace_engine/test/unittest/base/
H A Duobject_test.cpp77 EXPECT_EQ(uObject.GetInt64("invalidKey"), 0); in HWTEST_F()
78 EXPECT_EQ(uObject.GetInt64("int64_t"), 1); in HWTEST_F()
79 EXPECT_EQ(uObject.GetInt64("double"), 1); in HWTEST_F()
H A Dnode_object_test.cpp75 EXPECT_EQ(nodeObject->GetInt64("int64_t", 0), 1); in HWTEST_F()
76 EXPECT_EQ(nodeObject->GetInt64("", 0), 0); in HWTEST_F()
H A Djson_util_test.cpp772 * @tc.desc: Check json util int64_t GetInt64()
785 int64_t ret = jsonValue->GetInt64(); in HWTEST_F()
793 int64_t ret3 = jsonValue->GetInt64(key, 0); in HWTEST_F()
803 int64_t ret4 = jsonValue->GetInt64(key, 0); in HWTEST_F()
812 int64_t ret5 = jsonValue->GetInt64(keyPut, 0); in HWTEST_F()
/foundation/distributeddatamgr/relational_store/interfaces/ndk/src/
H A Dmodify_time_cursor.cpp60 int ModifyTimeCursor::GetInt64(int32_t columnIndex, int64_t *value) in GetInt64() function in OHOS::RdbNdk::ModifyTimeCursor
74 return RelationalCursor::GetInt64(columnIndex, value); in GetInt64()
H A Drelational_cursor.h42 virtual int GetInt64(int32_t columnIndex, int64_t *value);
60 static int GetInt64(OH_Cursor *cursor, int32_t columnIndex, int64_t *value);
H A Dmodify_time_cursor.h33 int GetInt64(int32_t columnIndex, int64_t *value) override;
H A Drelational_cursor.cpp102 int RelationalCursor::GetInt64(OH_Cursor *cursor, int32_t columnIndex, int64_t *value) in GetInt64() function in OHOS::RdbNdk::RelationalCursor
108 return self->GetInt64(columnIndex, value); in GetInt64()
193 getInt64 = GetInt64; in RelationalCursor()
299 int RelationalCursor::GetInt64(int32_t columnIndex, int64_t *value) in GetInt64() function in OHOS::RdbNdk::RelationalCursor
/foundation/graphic/surface_lite/interfaces/kits/
H A Dsurface_buffer.h147 virtual int32_t GetInt64(uint32_t key, int64_t& value) = 0;
/foundation/arkui/ace_engine/interfaces/inner_api/ace/
H A Dserializeable_object.h36 virtual int64_t GetInt64(const std::string& key, int64_t defaultVal = 0) const = 0;
/foundation/communication/bluetooth_service/services/bluetooth/external/dummy/include/
H A Ddata_access.h47 virtual int64_t GetInt64(int index) in GetInt64() function in OHOS::bluetooth::IDataResult
/foundation/graphic/surface_lite/test/unittest/
H A Dgraphic_surface_test.cpp83 ret = buffer->GetInt64(1, aValue64); // key = 1, test has value with key(1). if not, ret < 0. in HWTEST_F()
116 ret = buffer->GetInt64(1, aValue64); // key = 1, test has value with key(1). if not, ret < 0? in HWTEST_F()
169 ret = buffer.GetInt64(1, aValue64); // key = 1, test has value for key(1). if not, ret < 0? in HWTEST_F()
175 ret = buffer.GetInt64(key64, aValue64); in HWTEST_F()
181 ret = buffer.GetInt64(key64, aValue64); in HWTEST_F()
/foundation/arkui/ace_engine/frameworks/base/json/
H A Dnode_object.cpp85 int64_t NodeObject::GetInt64(const std::string& key, int64_t defaultVal) const in GetInt64() function in OHOS::Ace::NodeObject
89 return uobject_->GetInt64(key); in GetInt64()
H A Djson_util.h56 int64_t GetInt64() const;
57 int64_t GetInt64(const std::string& key, int64_t defaultVal = 0) const override;
H A Dnode_object.h33 int64_t GetInt64(const std::string& key, int64_t defaultVal = 0) const override;
H A Djson_util.cpp97 int64_t JsonValue::GetInt64() const in GetInt64() function in OHOS::Ace::JsonValue
576 int64_t JsonValue::GetInt64(const std::string& key, int64_t defaultVal) const in GetInt64() function in OHOS::Ace::JsonValue
580 return value->GetInt64(); in GetInt64()
H A Duobject.h51 int64_t GetInt64(const std::string& key) const;
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/common/include/
H A Ddata_value.h69 int GetInt64(int64_t &outVal) const;
/foundation/multimedia/media_lite/services/recorder_lite/impl/src/
H A Drecorder_video_source.cpp143 acquireBuffer_->GetInt64(KEY_TIME_US, valuets); in AcquireBuffer()
H A Drecorder_data_source.cpp125 acquireBuffer_->GetInt64(KEY_TIME_US, valuets); in AcquireBuffer()
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/storage/src/relational/
H A Drelational_row_data_impl.cpp88 if (data_.at(index).GetInt64(value) != E_OK) { in Get()
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/test/unittest/common/interfaces/
H A Ddistributeddb_interfaces_data_value_test.cpp70 EXPECT_EQ(dataValue.GetInt64(val), E_OK); in DataValueInt64Check()
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/common/src/
H A Ddata_value.cpp120 (void)dataValue.GetInt64(this->value_.iValue); in operator =()
236 int DataValue::GetInt64(int64_t &outVal) const in GetInt64() function in DistributedDB::DataValue
/foundation/graphic/surface_lite/interfaces/innerkits/
H A Dsurface_buffer_impl.h326 int32_t GetInt64(uint32_t key, int64_t& value) override;
/foundation/multimedia/media_library/frameworks/services/media_mtp/src/payload_data/
H A Dset_object_prop_value_data.cpp214 if (!MtpPacketTool::GetInt64(buffer, offset, tmpVar)) { in ReadInt64Value()
/foundation/graphic/surface_lite/frameworks/
H A Dsurface_buffer_impl.cpp53 int32_t SurfaceBufferImpl::GetInt64(uint32_t key, int64_t& value) in GetInt64() function in OHOS::SurfaceBufferImpl

Completed in 14 milliseconds

12