Home
last modified time | relevance | path

Searched refs:from (Results 201 - 225 of 462) sorted by relevance

12345678910>>...19

/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/
H A Djs_data_change_listener.h136 size_t from = 0; in OnDataMoved() local
138 if (args.Length() < 2 || !ConvertFromJSValue(args[0], from) || !ConvertFromJSValue(args[1], to)) { in OnDataMoved()
141 NotifyAll(&V2::DataChangeListener::OnDataMoved, from, to); in OnDataMoved()
212 if (coupleIndex->GetProperty("from")->IsNumber()) { in transferIndex()
213 dataOperation.coupleIndex.first = coupleIndex->GetProperty("from")->ToNumber<int32_t>(); in transferIndex()
253 if (coupleKey->GetProperty("from")->IsString()) { in transferKey()
254 dataOperation.coupleKey.first = coupleKey->GetProperty("from")->ToString(); in transferKey()
H A Djs_lazy_foreach.cpp223 (int32_t from, int32_t to) { in OnMove()
224 auto params = ConvertToJSValues(from, to); in OnMove()
/foundation/arkui/ace_engine/frameworks/bridge/js_frontend/engine/common/
H A Dbase_animation_bridge.cpp247 double from = 0.0; in JsParseAnimatorParams() local
248 from = argsPtrFrom->GetDouble(); in JsParseAnimatorParams()
249 animationDoubleParams[DOM_ANIMATION_BEGIN] = from; in JsParseAnimatorParams()
/foundation/graphic/graphic_3d/lume/metaobject/include/meta/api/
H A Dutil.h171 const IAny::ConstPtr& from, const IAny::ConstPtr& to, float t) in Interpolate()
173 if (from && to) { in Interpolate()
177 auto ret = inter->Interpolate(*iany, *from, *to, t); in Interpolate()
170 Interpolate(IInterpolator::ConstPtr inter, const IProperty::Ptr& output, const IAny::ConstPtr& from, const IAny::ConstPtr& to, float t) Interpolate() argument
/foundation/distributeddatamgr/relational_store/test/js/relationalstore/unittest/src/
H A DRdbstorePredicatesJoinBJsunit.test.js16 import {describe, beforeAll, beforeEach, afterEach, afterAll, it, expect} from 'deccjsunit/index'
17 import data_relationalStore from '@ohos.data.relationalStore'
18 import ability_featureAbility from '@ohos.ability.featureAbility'
H A DRdbstoreRdbstoreJsunit.test.js16 import {describe, beforeAll, beforeEach, afterEach, afterAll, it, expect} from 'deccjsunit/index'
17 import data_relationalStore from '@ohos.data.relationalStore';
18 import ability_featureAbility from '@ohos.ability.featureAbility'
H A DRdbstorePromiseJsunit.test.js16 import {describe, beforeAll, beforeEach, afterEach, afterAll, it, expect} from 'deccjsunit/index'
17 import data_relationalStore from '@ohos.data.relationalStore';
18 import ability_featureAbility from '@ohos.ability.featureAbility';
H A DRdbstoreStoreExcuteSqlJsunit.test.js15 import {describe, beforeAll, beforeEach, afterEach, afterAll, it, expect} from 'deccjsunit/index'
16 import data_relationalStore from '@ohos.data.relationalStore'
17 import ability_featureAbility from '@ohos.ability.featureAbility'
H A DRdbStoreReadOnlyJsunit.test.js16 import {describe, beforeAll, beforeEach, afterEach, afterAll, it, expect} from '@ohos/hypium';
17 import relationalStore from '@ohos.data.relationalStore';
18 import featureAbility from '@ohos.ability.featureAbility'
155 * @tc.name delete data from read-only database
196 * @tc.name get user_version from read-only database
218 * @tc.name query data from read-only database
H A DRdbStoreQueryByStep.test.js16 import {describe, beforeAll, beforeEach, afterEach, afterAll, it, expect} from 'deccjsunit/index'
17 import relationalStore from '@ohos.data.relationalStore';
18 import ability_featureAbility from '@ohos.ability.featureAbility'
126 * @tc.desc 1. Execute queryByStep, sql is 'select * from test'
134 let resultSet = await rdbStore.queryByStep('select * from test');
158 let resultSet = await rdbStore.queryByStep('select * from test where age > ?', [50]);
182 let resultSet = await rdbStore.queryByStep('select * from test where age > ? and salary < ?', [50, 5000]);
206 let resultSet = await rdbStore.queryByStep('select * from test where age > ? or salary < ?', [50, 5000]);
298 let resultSet = await rdbStore.queryByStep('select * from test where age > ?', []);
359 * @tc.desc 1. Execute queryByStep, sql is 'select * from tes
[all...]
/foundation/distributeddatamgr/preferences/test/js/unittest/preferences/src/
H A DPreferencesSyncJsunit.test.js15 import { describe, beforeAll, beforeEach, afterEach, afterAll, it, expect } from 'deccjsunit/index'
16 import data_preferences from '@ohos.data.preferences'
17 import featureAbility from '@ohos.ability.featureAbility';
/foundation/window/window_manager/wm/src/zidl/
H A Dwindow_stub.cpp147 uint64_t from = 0; in OnRemoteRequest() local
149 if (!data.ReadUint64(from) || !data.ReadUint64(to)) { in OnRemoteRequest()
153 UpdateDisplayId(from, to); in OnRemoteRequest()
/foundation/arkui/ace_engine/test/unittest/core/syntax/
H A Drepeat_node_cache_syntax_test.cpp112 auto g_onGetKeys4Range = [](uint32_t from, uint32_t to) -> std::list<std::string> {
114 for (uint32_t i = from; i <= to; ++i) {
123 auto g_onGetKeys4RangeMaxTo5 = [](uint32_t from, uint32_t to) -> std::list<std::string> {
125 for (uint32_t i = from; i <= to && i<=5; ++i) {
134 auto g_onGetTypes4Range = [](uint32_t from, uint32_t to) -> std::list<std::string> {
136 for (uint32_t i = from; i <= to; ++i) {
145 auto g_onSetActiveRange = [](int32_t from, int32_t to) {
232 * @tc.steps: step1. Try to get UINode from index 2 in HWTEST_F()
253 * @tc.steps: step1. Get distance from active range of index 2 in HWTEST_F()
757 * @tc.steps: step1. Try to call FetchMoreKeysTTypes so that "from" i in HWTEST_F()
[all...]
/foundation/arkui/ace_engine/frameworks/core/components/checkable/
H A Drender_switch.cpp374 double from = 0.0; in UpdateAnimation() local
378 from = switchSize_.Width() - pointPadding - rawPointSize_.Width(); in UpdateAnimation()
381 from = pointPadding; in UpdateAnimation()
388 translate_ = AceType::MakeRefPtr<CurveAnimation<double>>(from, to, Curves::FRICTION); in UpdateAnimation()
/foundation/arkui/ace_engine/frameworks/core/interfaces/native/node/
H A Dnode_adapter_impl.cpp239 void UINodeAdapter::NotifyItemMoved(uint32_t from, uint32_t to) in NotifyItemMoved() argument
243 handle_->builder->NotifyItemMoved(from, to); in NotifyItemMoved()
369 ArkUI_Int32 NotifyItemMoved(ArkUINodeAdapterHandle handle, ArkUI_Uint32 from, ArkUI_Uint32 to) in NotifyItemMoved() argument
374 return handle->builder->NotifyItemMoved(from, to); in NotifyItemMoved()
/foundation/graphic/graphic_2d/rosen/modules/2d_engine/rosen_text/adapter/skia_txt/
H A Dtypography.cpp179 void Typography::UpdateFontSize(size_t from, size_t to, float fontSize) in UpdateFontSize() argument
185 paragraph_->UpdateFontSize(from, to, fontSize); in UpdateFontSize()
457 void Typography::UpdateColor(size_t from, size_t to, const Drawing::Color& color) in UpdateColor() argument
463 paragraph_->UpdateColor(from, to, color); in UpdateColor()
/foundation/graphic/graphic_2d/rosen/modules/2d_engine/rosen_text/skia_txt/impl/
H A Dparagraph_impl.cpp148 void ParagraphImpl::UpdateFontSize(size_t from, size_t to, float fontSize) in UpdateFontSize() argument
154 paragraph_->updateFontSize(from, to, fontSize); in UpdateFontSize()
397 void ParagraphImpl::UpdateColor(size_t from, size_t to, const RSColor& color) in UpdateColor() argument
403 auto unresolvedPaintID = paragraph_->updateColor(from, to, in UpdateColor()
/foundation/multimedia/av_codec/services/media_engine/plugins/source/http_source/download/network_client/
H A Dhttp_curl_client.cpp53 std::string InsertCharBefore(std::string input, char from, char preChar, char nextChar) in InsertCharBefore() argument
56 char arr[] = {preChar, from}; in InsertCharBefore()
59 std::size_t pos = output.find(from); in InsertCharBefore()
67 pos = output.find(from, pos + strSize); in InsertCharBefore()
/foundation/communication/netstack/utils/common_utils/src/
H A Dnetstack_common_utils.cpp241 std::string InsertCharBefore(const std::string &input, const char from, const char preChar, const char nextChar) in InsertCharBefore() argument
244 char arr[] = {preChar, from}; in InsertCharBefore()
247 std::size_t pos = output.find(from); in InsertCharBefore()
255 pos = output.find(from, pos + strSize); in InsertCharBefore()
/foundation/arkui/ace_engine/frameworks/core/components/text_overlay/
H A Dtext_overlay_element.cpp225 double from = isIn ? offsetX : 0.0; in AddListener() local
228 RefPtr<CurveAnimation<float>> offset = AceType::MakeRefPtr<CurveAnimation<float>>(from, to, Curves::FRICTION); in AddListener()
/foundation/arkui/ace_engine/frameworks/core/components/slider/
H A Drender_slider.h238 void StartMoveAnimation(double from, double to, bool isClick = false);
240 void ResetMoveAnimation(double from, double to);
/foundation/communication/netstack/test/unittest/tls_test/core/
H A Dtls_config_enhanced.test.cpp85 .from = 100, in HWTEST_F()
89 .from = 300, in HWTEST_F()
/foundation/communication/netstack/test/unittest/tlssocket/core/
H A Dtls_config_enhanced.test.cpp85 .from = 100, in HWTEST_F()
89 .from = 300, in HWTEST_F()
/foundation/distributeddatamgr/relational_store/test/js/rdb/unittest/src/
H A DRdbstoreDeleteJsunit.test.js15 import {describe, beforeAll, beforeEach, afterEach, afterAll, it, expect} from 'deccjsunit/index'
16 import dataRdb from '@ohos.data.rdb';
H A DRdbstorePredicatesJoinJsunit.test.js16 import {describe, beforeAll, beforeEach, afterEach, afterAll, it, expect} from 'deccjsunit/index'
17 import dataRdb from '@ohos.data.rdb';

Completed in 15 milliseconds

12345678910>>...19