Home
last modified time | relevance | path

Searched refs:target (Results 1726 - 1750 of 5022) sorted by relevance

1...<<61626364656667686970>>...201

/base/hiviewdfx/hiview/base/utility/test/unittest/common/
H A Dbase_utility_unit_test.cpp281 std::string target = "123456abcdefh";
285 auto ret = StringUtil::FindMatchSubString(target, begin1, offset, end1);
289 ret = StringUtil::FindMatchSubString(target, begin2, offset, end1);
292 ret = StringUtil::FindMatchSubString(target, begin2, offset, end2);
294 ret = StringUtil::FindMatchSubString(target, begin1, offset1, end1);
/base/notification/distributed_notification_service/frameworks/ans/src/
H A Dnotification_content.cpp279 bool NotificationContent::ConvertJsonToContent(NotificationContent *target, const nlohmann::json &jsonObject) in ConvertJsonToContent() argument
281 if (target == nullptr) { in ConvertJsonToContent()
291 target->contentType_ = static_cast<NotificationContent::Type>(contentType.get<int32_t>()); in ConvertJsonToContent()
300 switch (target->contentType_) { in ConvertJsonToContent()
330 target->content_ = std::shared_ptr<NotificationBasicContent>(pBasicContent); in ConvertJsonToContent()
/base/update/updater/services/fs_manager/
H A Dmount.cpp126 static int MountNtfsWithRetry(std::string source, std::string target) in MountNtfsWithRetry() argument
129 const_cast<char *>(source.c_str()), const_cast<char *>(target.c_str()), nullptr}; in MountNtfsWithRetry()
152 LOG(INFO) << "success to mount " << source << " on " << target; in MountNtfsWithRetry() local
156 LOG(ERROR) << "SD card never insert, dont try again, failed to mount " << source << " on " << target; in MountNtfsWithRetry() local
161 LOG(ERROR) << "failed to mount " << source << " on " << target << ", errno is " << errno; in MountNtfsWithRetry()
/foundation/arkui/ace_engine/frameworks/component_test/core/
H A Dcomponent_test_tester_impl.cpp118 RefPtr<NG::UINode> target = nullptr; in ScrollUntilExistImpl() local
126 target = current; in ScrollUntilExistImpl()
135 if (target) { in ScrollUntilExistImpl()
136 const RefPtr<NG::FrameNode>& frameNode = AceType::DynamicCast<NG::FrameNode>(target); in ScrollUntilExistImpl()
140 componentTestComponentImpl->SetUiNode(target); in ScrollUntilExistImpl()
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/engine/functions/
H A Djs_gesture_judge_function.cpp96 JSRef<JSObject> target = objectTemplate->NewInstance(); in CreateEventTargetObject() local
110 target->SetPropertyObject("area", area); in CreateEventTargetObject()
111 return target; in CreateEventTargetObject()
206 auto target = CreateEventTargetObject(info); in CreateGestureEventObject() local
207 obj->SetPropertyObject("target", target); in CreateGestureEventObject()
/foundation/arkui/ace_engine/test/component_test/tools/middle_ground/public/
H A Dindex.js187 otherCheckbox.checked = event.target.checked;
193 if (event.target.checked) {
209 if (event.target.textContent === '-') {
231 isFoldStatus ? event.target.textContent = '+' : event.target.textContent = '-';
/foundation/graphic/graphic_2d/rosen/modules/render_service_base/src/platform/ohos/overdraw/
H A Drs_cpu_overdraw_canvas_listener.cpp196 Drawing::Region target; in AppendRegion() local
200 target.SetPath(path, drRegion); in AppendRegion()
203 if (regions_[i].IsIntersects(target)) { in AppendRegion()
205 regi.Op(target, Drawing::RegionOp::INTERSECT); in AppendRegion()
209 regions_[1].Op(target, Drawing::RegionOp::UNION); in AppendRegion()
/test/testfwk/arkxtest/hamock/src/main/mock/
H A DMockKit.js237 function MockSetup(target, propertyName, descriptor) {
238 const aboutToAppearOrigin = target.aboutToAppear;
240 target.aboutToAppear = function (...args) {
241 if (target.__Param) { // copy attributes and params of the original context
243 const map = target.__Param;
/third_party/ffmpeg/libavcodec/
H A Dra144.c1527 * Copy the last offset values of *source to *target. If those values are not
1528 * enough to fill the target buffer, fill it with another copy of those values.
1530 void ff_copy_and_dup(int16_t *target, const int16_t *source, int offset) in ff_copy_and_dup() argument
1534 memcpy(target, source, FFMIN(BLOCKSIZE, offset)*sizeof(*target)); in ff_copy_and_dup()
1536 memcpy(target + offset, source, (BLOCKSIZE - offset)*sizeof(*target)); in ff_copy_and_dup()
/third_party/curl/tests/
H A Dtestcurl.pl58 # --target=[your os] Specify your target environment.
84 # or if we got a specific target option or setup file option.
94 if ($ARGV[0] =~ /--target=/) {
153 # If no target defined on Win32 lets assume vc
185 my $target = $_[0];
187 foreach (glob($target)) {
192 system("rm -rf $target");
197 my ($target, $fn) = @_;
200 if (/$target/) {
[all...]
/third_party/mesa3d/src/gallium/drivers/r600/sb/
H A Dsb_liveness.cpp153 live = n.target->live_before; in visit()
154 process_phi_branch(n.target->loop_phi, n.rep_id); in visit()
162 live = n.target->live_after; in visit()
163 if(n.target->phi) in visit()
164 process_phi_branch(n.target->phi, n.dep_id); in visit()
/third_party/mesa3d/src/gallium/drivers/virgl/
H A Dvirgl_texture.c92 /* We must set the correct texture target and dimensions for a 3D box. */ in virgl_init_temp_resource_from_box()
94 res->target = orig->target; in virgl_init_temp_resource_from_box()
96 res->target = PIPE_TEXTURE_2D; in virgl_init_temp_resource_from_box()
98 if (res->target != PIPE_BUFFER) in virgl_init_temp_resource_from_box()
101 switch (res->target) { in virgl_init_temp_resource_from_box()
/third_party/mesa3d/src/gallium/winsys/sw/wrapper/
H A Dwrapper_sw_winsys.c55 enum pipe_texture_target target; member
162 templ.target = wsw->target; in wsw_dt_create()
310 wsw->target = PIPE_TEXTURE_2D; in wrapper_sw_winsys_wrap_pipe_screen()
312 wsw->target = PIPE_TEXTURE_RECT; in wrapper_sw_winsys_wrap_pipe_screen()
/third_party/mesa3d/src/gallium/frontends/glx/xlib/
H A Dxm_st.c41 enum pipe_texture_target target; member
135 templ.target = xstfb->target; in xmesa_st_framebuffer_validate_textures()
305 xstfb->target = PIPE_TEXTURE_2D; in xmesa_create_st_framebuffer()
307 xstfb->target = PIPE_TEXTURE_RECT; in xmesa_create_st_framebuffer()
/third_party/mesa3d/src/gallium/tests/trivial/
H A Dtri.c81 struct pipe_resource *target; member
129 /* render target texture */ in init_prog()
133 tmplt.target = PIPE_TEXTURE_2D; in init_prog()
142 p->target = p->screen->resource_create(p->screen, &tmplt); in init_prog()
169 p->framebuffer.cbufs[0] = p->pipe->create_surface(p->pipe, p->target, &surf_tmpl); in init_prog()
238 pipe_resource_reference(&p->target, NULL); in close_prog()
250 /* set the render target */ in draw()
253 /* clear the render target */ in draw()
/third_party/node/lib/internal/test_runner/mock/
H A Dmock.js276 * @param {object} object - The target object.
316 * @param {object} object - The target object.
392 target: undefined,
399 construct(target, argList, newTarget) {
417 target,
424 get(target, property, receiver) {
429 return ReflectGet(target, property, receiver);
/third_party/mesa3d/src/mesa/main/
H A Dmultisample.c226 * for a particular (target, internalFormat) pair. The limit imposed,
233 _mesa_check_sample_count(struct gl_context *ctx, GLenum target, in _mesa_check_sample_count() argument
252 target == GL_RENDERBUFFER) { in _mesa_check_sample_count()
316 st_QueryInternalFormat(ctx, target, internalFormat, in _mesa_check_sample_count()
354 if (target == GL_TEXTURE_2D_MULTISAMPLE || in _mesa_check_sample_count()
355 target == GL_TEXTURE_2D_MULTISAMPLE_ARRAY) { in _mesa_check_sample_count()
/third_party/node/deps/icu-small/source/i18n/unicode/
H A Dtranslit.h589 * containing only the forward direction source, target, and
1321 * have the form Any-Target1 <=> Any-Target2. The target should
1326 * @param target the target against which to register the inverse
1327 * @param inverseTarget the inverse of target, that is
1328 * Any-target.getInverse() => Any-inverseTarget
1330 * as well, that is, Any-inverseTarget.getInverse() => Any-target
1333 static void _registerSpecialInverse(const UnicodeString& target,
1392 * Return the number of registered target specifiers for a given
1395 * @return the number of registered target specifier
[all...]
H A Ducol.h65 * UCOL_LESS is returned if source string is compared to be less than target
67 * UCOL_EQUAL is returned if source string is compared to be equal to target
70 * target string in the ucol_strcoll() method.
565 * @param target The target string.
566 * @param targetLength The length of target, or -1 if null-terminated.
578 const UChar *target,
589 * @param target The target UTF-8 string.
590 * @param targetLength The length of target, o
[all...]
/third_party/icu/icu4c/source/i18n/unicode/
H A Ducol.h65 * UCOL_LESS is returned if source string is compared to be less than target
67 * UCOL_EQUAL is returned if source string is compared to be equal to target
70 * target string in the ucol_strcoll() method.
555 * @param target The target string.
556 * @param targetLength The length of target, or -1 if null-terminated.
568 const UChar *target,
579 * @param target The target UTF-8 string.
580 * @param targetLength The length of target, o
[all...]
H A Dtranslit.h589 * containing only the forward direction source, target, and
1321 * have the form Any-Target1 <=> Any-Target2. The target should
1326 * @param target the target against which to register the inverse
1327 * @param inverseTarget the inverse of target, that is
1328 * Any-target.getInverse() => Any-inverseTarget
1330 * as well, that is, Any-inverseTarget.getInverse() => Any-target
1333 static void _registerSpecialInverse(const UnicodeString& target,
1392 * Return the number of registered target specifiers for a given
1395 * @return the number of registered target specifier
[all...]
/third_party/node/deps/v8/src/compiler/
H A Dframe-states.cc212 Node* target, Node* context, Node* const* stack_parameters, in CreateJavaScriptBuiltinContinuationFrameState()
235 actual_parameters.push_back(target); // kJavaScriptCallTargetRegister in CreateJavaScriptBuiltinContinuationFrameState()
244 name, target, context, &actual_parameters[0], in CreateJavaScriptBuiltinContinuationFrameState()
250 JSGraph* graph, const SharedFunctionInfoRef& shared, Node* target, in CreateGenericLazyDeoptContinuationFrameState()
255 graph, shared, Builtin::kGenericLazyDeoptContinuation, target, context, in CreateGenericLazyDeoptContinuationFrameState()
210 CreateJavaScriptBuiltinContinuationFrameState( JSGraph* jsgraph, const SharedFunctionInfoRef& shared, Builtin name, Node* target, Node* context, Node* const* stack_parameters, int stack_parameter_count, Node* outer_frame_state, ContinuationFrameStateMode mode) CreateJavaScriptBuiltinContinuationFrameState() argument
249 CreateGenericLazyDeoptContinuationFrameState( JSGraph* graph, const SharedFunctionInfoRef& shared, Node* target, Node* context, Node* receiver, Node* outer_frame_state) CreateGenericLazyDeoptContinuationFrameState() argument
/third_party/skia/third_party/externals/angle2/src/common/
H A Dutilities.h250 // A render target may be forced to convert to a linear colorspace, or may be allowed to do whatever
272 bool IsCubeMapTextureTarget(EGLenum target);
273 size_t CubeMapTextureTargetToLayerIndex(EGLenum target);
275 bool IsTextureTarget(EGLenum target);
276 bool IsRenderbufferTarget(EGLenum target);
277 bool IsExternalImageTarget(EGLenum target);
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/
H A DTextureImpl.h144 gl::TextureTarget target,
154 const gl::TextureTarget target,
217 virtual GLint getLevelMemorySize(gl::TextureTarget target, GLint level);
231 gl::TextureTarget target,
240 gl::TextureTarget target,
/third_party/openssl/providers/implementations/digests/
H A Dblake2b_prov.c309 uint8_t *target = outbuffer; in ossl_blake2b_final() local
315 target = md; in ossl_blake2b_final()
324 store64(target + sizeof(c->h[i]) * i, c->h[i]); in ossl_blake2b_final()
326 if (target != md) in ossl_blake2b_final()
327 memcpy(md, target, c->outlen); in ossl_blake2b_final()

Completed in 20 milliseconds

1...<<61626364656667686970>>...201