Home
last modified time | relevance | path

Searched refs:target (Results 3201 - 3225 of 4997) sorted by relevance

1...<<121122123124125126127128129130>>...200

/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/
H A Djs_save_button.cpp112 auto target = CreateEventTargetObject(info); in Execute() local
113 clickEventParam->SetPropertyObject("target", target); in Execute()
H A Djs_paste_button.cpp111 auto target = CreateEventTargetObject(info); in Execute() local
112 clickEventParam->SetPropertyObject("target", target); in Execute()
/foundation/arkui/ace_engine/frameworks/core/components_v2/tabs/
H A Dtabs_helper.h256 const RefPtr<Component>& contentItemComponent, int target) in SetTabBarElementIndex()
287 renderNode->MovePosition(renderTabBar->FirstItemOffset() + target); in SetTabBarElementIndex()
255 SetTabBarElementIndex(const RefPtr<Element>& contentItemElement, const RefPtr<Component>& contentItemComponent, int target) SetTabBarElementIndex() argument
/foundation/arkui/napi/interfaces/inner_api/cjffi/ark_interop/
H A Dark_interop_engine.cpp254 ARKTS_Env env, const char* target, bool isNativeModule, bool isAppModule, const char* relativePath) in ARKTS_Require()
259 auto targetValue = ARKTS_CreateUtf8(env, target, -1); in ARKTS_Require()
253 ARKTS_Require( ARKTS_Env env, const char* target, bool isNativeModule, bool isAppModule, const char* relativePath) ARKTS_Require() argument
/foundation/multimedia/audio_framework/services/audio_service/client/src/
H A Daudio_spatial_channel_converter.cpp226 AudioBufferConfig &target = isInput ? ioBufferConfig_.inputCfg : ioBufferConfig_.outputCfg; in SetIOBufferConfig() local
227 target = {sampleRate, channels, format, channelLayout, ENCODING_AUDIOVIVID}; in SetIOBufferConfig()
/foundation/graphic/graphic_3d/lume/LumeRender/src/gles/
H A Dgl_functions.h55 GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height);
57 GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level, GLsizei samples);
/foundation/graphic/graphic_2d/rosen/test/render_service/render_service_base/fuzztest/rscommand_fuzzer/
H A Drscommand_fuzzer.cpp204 uint64_t target = GetData<uint64_t>(); in RSProxyNodeCommandFuzzTest() local
208 ProxyNodeCommandHelper::Create(context, static_cast<NodeId>(id), static_cast<NodeId>(target)); in RSProxyNodeCommandFuzzTest()
/foundation/graphic/graphic_2d/rosen/modules/render_service/core/pipeline/
H A Drs_base_render_engine.h65 RSRenderFrame(const std::shared_ptr<RSSurfaceOhos>& target, std::unique_ptr<RSSurfaceFrame>&& frame) in RSRenderFrame() argument
66 : targetSurface_(target), surfaceFrame_(std::move(frame)) in RSRenderFrame()
/foundation/graphic/graphic_2d/rosen/modules/render_service_base/include/params/
H A Drs_render_params.h204 void OnCanvasDrawingSurfaceChange(const std::unique_ptr<RSRenderParams>& target);
235 virtual void OnSync(const std::unique_ptr<RSRenderParams>& target);
/foundation/graphic/graphic_2d/rosen/modules/2d_graphics/src/drawing/utils/
H A Dmatrix.cpp240 void Matrix::Swap(Matrix& target) in Swap() argument
242 std::swap(matrixImplPtr, target.matrixImplPtr); in Swap()
/foundation/multimedia/media_foundation/engine/plugin/plugins/ffmpeg_adapter/video_encoder/
H A Dffmpeg_vid_enc_config.cpp27 #define ASSIGN_IF_NOT_NULL(exec, target) \
31 (target) = *tmp; \
/foundation/multimedia/image_framework/frameworks/innerkitsimpl/common/src/
H A Dmemory_manager.cpp282 std::unique_ptr<AbsMemory> MemoryManager::TransMemoryType(const AbsMemory &source, AllocatorType target, in TransMemoryType() argument
287 auto res = CreateMemory(target, data); in TransMemoryType()
/foundation/multimedia/media_lite/services/player_lite/impl/player_control/source/
H A Dplayer_demux.cpp38 #define CHECK_FAILED_RETURN(value, target, ret, printfString) \
40 if (value != target) { \
/foundation/communication/dsoftbus/tests/core/authentication/unittest/
H A Dauth_net_ledger_mock.cpp173 bool GetJsonObjectStringItem(const cJSON *json, const char * const string, char *target, in GetJsonObjectStringItem() argument
176 return GetNetLedgerInterface()->GetJsonObjectStringItem(json, string, target, targetLen); in GetJsonObjectStringItem()
/foundation/communication/ipc/ipc/test/unittest/ipc/client/
H A DIpcClientTest.cpp113 SvcIdentity target = { in HWTEST_F() local
118 int ret = SendRequest(target, GET_SYSTEM_ABILITY_TRANSACTION, &data1, &reply1, g_option, &ptr); in HWTEST_F()
/foundation/communication/netmanager_base/test/netmanagernative/unittest/firewall_manager_test/
H A Dfirewall_manager_class_test.cpp258 std::string target = "DROP"; in HWTEST_F() local
260 int32_t ret = g_firewallManager->IptablesSetRule(chainName, option, target, uid); in HWTEST_F()
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/test/unittest/common/syncer/
H A Dvirtual_communicator_aggregator.cpp94 void VirtualCommunicatorAggregator::RunOnConnectCallback(const std::string &target, bool isConnect) in RunOnConnectCallback() argument
97 onConnect_(target, isConnect); in RunOnConnectCallback()
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/communicator/src/
H A Dsend_task_scheduler.cpp271 // Logic guarantee that there is at least one target in orderList that is NO_DELAY in ScheduleNoDelayTask()
292 void SendTaskScheduler::InvalidSendTask(const std::string &target) in InvalidSendTask() argument
300 for (auto &sendTask : taskGroupByPrio_[priority][target]) { in InvalidSendTask()
H A Dframe_retainer.cpp26 const uint32_t MAX_RETAIN_FRAME_PER_LABEL_PER_TARGET = 5; // Allow 5 frame per communicator per source target
28 inline void LogRetainInfo(const std::string &logPrefix, const LabelType &label, const std::string &target, in LogRetainInfo() argument
31 LOGI("%s : Label=%.3s, target=%s{private}, retainOrder=%" PRIu64 ", frameId=%" PRIu32 ", remainTime=%" PRIu32 in LogRetainInfo()
32 ", frameSize=%" PRIu32 ".", logPrefix.c_str(), VEC_TO_STR(label), target.c_str(), ULL(order), in LogRetainInfo()
234 // Record corresponding target if its frameMap empty. in ShrinkRetainWorkPool()
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/storage/src/sqlite/
H A Dsqlite_single_ver_natural_store_connection.h189 void AddConflictNotifierCount(int target);
190 void ResetConflictNotifierCount(int target);
/foundation/distributedhardware/distributed_hardware_fwk/services/distributedhardwarefwkservice/test/unittest/common/distributedhardwareservice/src/
H A Ddistributed_hardware_service_test.cpp282 int32_t target = 100; in HWTEST_F() local
287 cJSON_AddNumberToObject(attrJson, targetKey.c_str(), target); in HWTEST_F()
/foundation/graphic/graphic_2d/interfaces/kits/napi/graphic/animation/window_animation_manager/
H A Drs_window_animation_controller.cpp164 for (auto target : minimizingWindowsTarget) { in OnMinimizeAllWindow()
167 OnMinimizeWindow(target, animationCallback); in OnMinimizeAllWindow()
372 WALOGD("Handle on wallpaper target update."); in HandleOnWallpaperUpdate()
/test/xts/hats/kernel/posix_interface/interface_gn/utils/
H A Dutils.cpp28 int CheckValueClose(double target, double actual, double accuracy) in CheckValueClose() argument
30 double diff = actual - target; in CheckValueClose()
111 ASSERT_EQ(procStat, 0) << "target process should still alive.\n"; in AssertProcAlive()
118 EXPECT_EQ(procStat, 0) << "target process should still alive.\n"; in ExpectProcAlive()
127 ASSERT_EQ(exitCode, 0) << "target process should exited 0.\n"; in AssertProcExitedOK()
136 EXPECT_EQ(exitCode, 0) << "target process should exited 0.\n"; in ExpectProcExitedOK()
145 EXPECT_EQ(exitCode, 0) << "target process should exited 0.\n"; in WaitProcExitedOK()
154 EXPECT_EQ(exitCode, signum) << "target process should killed by " << signum; in ExpectProcKilled()
163 EXPECT_EQ(exitCode, signum) << "target process should killed by " << signum; in AssertProcKilled()
171 ASSERT_EQ(procStat, killedBySignal) << "target proces in WaitProcKilled()
[all...]
/third_party/curl/scripts/
H A Dmk-ca-bundle.pl215 my $target = shift;
217 return defined(List::Util::first { $target eq $_ } @_);
/third_party/gn/src/gn/
H A Dcreate_bundle_target_generator.cc16 #include "gn/target.h"
50 Target* target, in CreateBundleTargetGenerator()
54 : TargetGenerator(target, scope, function_call, err) {} in CreateBundleTargetGenerator()
49 CreateBundleTargetGenerator( Target* target, Scope* scope, const FunctionCallNode* function_call, Err* err) CreateBundleTargetGenerator() argument

Completed in 19 milliseconds

1...<<121122123124125126127128129130>>...200