Home
last modified time | relevance | path

Searched refs:target (Results 4651 - 4675 of 4890) sorted by relevance

1...<<181182183184185186187188189190>>...196

/third_party/python/Objects/
H A Dunicodeobject.c2648 as_ucs4(PyObject *string, Py_UCS4 *target, Py_ssize_t targetsize, in as_ucs4() argument
2662 if (!target) { in as_ucs4()
2663 target = PyMem_New(Py_UCS4, targetlen); in as_ucs4()
2664 if (!target) { in as_ucs4()
2674 target[0] = 0; in as_ucs4()
2680 _PyUnicode_CONVERT_BYTES(Py_UCS1, Py_UCS4, start, start + len, target); in as_ucs4()
2684 _PyUnicode_CONVERT_BYTES(Py_UCS2, Py_UCS4, start, start + len, target); in as_ucs4()
2687 memcpy(target, data, len * sizeof(Py_UCS4)); in as_ucs4()
2693 target[len] = 0; in as_ucs4()
2694 return target; in as_ucs4()
2698 PyUnicode_AsUCS4(PyObject *string, Py_UCS4 *target, Py_ssize_t targetsize, int copy_null) PyUnicode_AsUCS4() argument
[all...]
/third_party/glfw/deps/
H A Dnuklear.h5961 NK_LIB float nk_scrollbar_behavior(nk_flags *state, struct nk_input *in, int has_scrolling, const struct nk_rect *scroll, const struct nk_rect *cursor, const struct nk_rect *empty0, const struct nk_rect *empty1, float scroll_offset, float target, float scroll_step, enum nk_orientation o);
5963 NK_LIB float nk_do_scrollbarv(nk_flags *state, struct nk_command_buffer *out, struct nk_rect scroll, int has_scrolling, float offset, float target, float step, float button_pixel_inc, const struct nk_style_scrollbar *style, struct nk_input *in, const struct nk_user_font *font);
5964 NK_LIB float nk_do_scrollbarh(nk_flags *state, struct nk_command_buffer *out, struct nk_rect scroll, int has_scrolling, float offset, float target, float step, float button_pixel_inc, const struct nk_style_scrollbar *style, struct nk_input *in, const struct nk_user_font *font);
21406 float target, float scroll_step, enum nk_orientation o) in nk_scrollbar_behavior()
21432 delta = (pixel / scroll->h) * target; in nk_scrollbar_behavior()
21433 scroll_offset = NK_CLAMP(0, scroll_offset + delta, target - scroll->h); in nk_scrollbar_behavior()
21434 cursor_y = scroll->y + ((scroll_offset/target) * scroll->h); in nk_scrollbar_behavior()
21439 delta = (pixel / scroll->w) * target; in nk_scrollbar_behavior()
21440 scroll_offset = NK_CLAMP(0, scroll_offset + delta, target - scroll->w); in nk_scrollbar_behavior()
21441 cursor_x = scroll->x + ((scroll_offset/target) * scrol in nk_scrollbar_behavior()
21402 nk_scrollbar_behavior(nk_flags *state, struct nk_input *in, int has_scrolling, const struct nk_rect *scroll, const struct nk_rect *cursor, const struct nk_rect *empty0, const struct nk_rect *empty1, float scroll_offset, float target, float scroll_step, enum nk_orientation o) nk_scrollbar_behavior() argument
21512 nk_do_scrollbarv(nk_flags *state, struct nk_command_buffer *out, struct nk_rect scroll, int has_scrolling, float offset, float target, float step, float button_pixel_inc, const struct nk_style_scrollbar *style, struct nk_input *in, const struct nk_user_font *font) nk_do_scrollbarv() argument
21601 nk_do_scrollbarh(nk_flags *state, struct nk_command_buffer *out, struct nk_rect scroll, int has_scrolling, float offset, float target, float step, float button_pixel_inc, const struct nk_style_scrollbar *style, struct nk_input *in, const struct nk_user_font *font) nk_do_scrollbarh() argument
[all...]
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/swiper/
H A Dswiper_pattern.cpp604 auto target = weakTarget.Upgrade(); in CreateCaptureCallback()
605 CHECK_NULL_VOID(target); in CreateCaptureCallback()
606 ComponentSnapshot::GetNormalCapture(target, std::move(callback)); in CreateCaptureCallback()
617 // Async tasks require verifying if the pixel map is the correct target in UpdateCaptureSource()
763 RefPtr<FocusHub> target; in GetFocusHubChild() local
764 swiperFocusHub->AnyChildFocusHub([&target, childFrameName](const RefPtr<FocusHub>& child) { in GetFocusHubChild()
767 target = child; in GetFocusHubChild()
772 return target; in GetFocusHubChild()
/third_party/mesa3d/src/amd/llvm/
H A Dac_llvm_build.c1978 args[0] = LLVMConstInt(ctx->i32, a->target, 0); in ac_build_export()
2016 args.target = ctx->gfx_level >= GFX11 ? V_008DFC_SQ_EXP_MRT : V_008DFC_SQ_EXP_NULL; in ac_build_export_null()
2899 /* Emit a branch to the given default target for the current block if
2903 static void emit_default_branch(LLVMBuilderRef builder, LLVMBasicBlockRef target) in emit_default_branch() argument
2906 LLVMBuildBr(builder, target); in emit_default_branch()
4325 /* Specify the target we are exporting */ in ac_export_mrt_z()
4326 args->target = V_008DFC_SQ_EXP_MRTZ; in ac_export_mrt_z()
4416 pos.target = V_008DFC_SQ_EXP_POS; in ac_build_sendmsg_gs_alloc_req()
4485 args.target = V_008DFC_SQ_EXP_PRIM; in ac_build_export_prim()
/third_party/node/deps/v8/src/torque/
H A Dimplementation-visitor.cc660 } else if (param_name == "target") { in Visit()
670 "expected \"context\", \"receiver\", \"target\", or \"newTarget\"") in Visit()
3237 LocationReference target = GetLocationReference(expr->target); in Visit() local
3238 if (!target.IsVariableAccess()) { in Visit()
3239 VisitResult result = GenerateFetchFromLocation(target); in Visit()
3240 target = LocationReference::Temporary(result, "this parameter"); in Visit()
3243 (*target.ReferencedType())->AggregateSupertype().value_or(nullptr); in Visit()
3245 ReportError("target of method call not a struct or class type"); in Visit()
3263 return scope.Yield(GenerateCall(callable, target, argument in Visit()
[all...]
/third_party/node/deps/undici/
H A Dundici.js4 var __name = (target, value) => __defProp(target, "name", { value, configurable: true });
1607 target: iterator
1616 const { index, kind: kind2, target } = object;
1617 const values = target();
5851 get(target, p) {
5852 return p in state ? state[p] : target[p];
5854 set(target, p, value) {
5856 target[p] = value;
11676 function fireEvent(e, target, eventConstructo
[all...]
/third_party/python/Lib/test/
H A Dtest_io.py448 thread = threading.Thread(target=os.read, args=(r, 100))
1491 threads = [threading.Thread(target=f) for x in range(20)]
1872 threads = [threading.Thread(target=f) for x in range(20)]
1914 t = threading.Thread(target=bufio.close)
3300 threads = [threading.Thread(target=run, args=(x,))
4361 thread = threading.Thread(target=run)
4441 t = threading.Thread(target=_read)
4596 t = threading.Thread(target=_read)
/foundation/arkui/ace_engine/frameworks/core/components_ng/event/
H A Ddrag_event.cpp1390 const auto& target = targetNode->GetRenderContext(); in ApplyNewestOptionExecutedFromModifierToNode() local
1392 target->UpdateBorderRadius(optionsFromModifier.borderRadius.value()); in ApplyNewestOptionExecutedFromModifierToNode()
1393 target->UpdateClipEdge(true); in ApplyNewestOptionExecutedFromModifierToNode()
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/engine/jsi/nativeModule/
H A Darkts_native_frame_node_bridge.cpp97 auto target = panda::ObjectRef::New(vm); in CreateEventTargetObject() local
98 target->Set(vm, panda::StringRef::NewFromUtf8(vm, "area"), area); in CreateEventTargetObject()
99 return target; in CreateEventTargetObject()
535 obj->Set(vm, panda::StringRef::NewFromUtf8(vm, "target"), CreateEventTargetObject(vm, info));
577 const char* keys[] = { "source", "timestamp", "target", "pressure", "deviceId" };
876 const char* keys[] = { "stopPropagation", "getModifierKeyState", "timestamp", "source", "target", "deviceId" };
927 obj->Set(vm, panda::StringRef::NewFromUtf8(vm, "target"), CreateEventTargetObject(vm, info));
/foundation/graphic/graphic_3d/lume/LumeRender/src/gles/
H A Drender_backend_gles.cpp381 // invalidate only a part of the render target.. in Invalidate()
1512 // NOTE: we expect the depth to be in FBO in this case even if there would be a depth target in render pass
2567 auto bindBuffer = [this](uint32_t target, uint32_t binding, const Gles::Bind::BufferType& buffer) { in BindResources()
2569 if (device_.BoundBuffer(target) != buffer.bufferId) { in BindResources()
2573 device_.BindBufferRange(target, binding, buffer.bufferId, buffer.offset, buffer.size); in BindResources()
/foundation/graphic/graphic_2d/rosen/modules/render_service_client/core/ui/
H A Drs_node.cpp336 auto target = RSNodeMap::Instance().GetAnimationFallbackNode(); in FallbackAnimationsToRoot() local
337 if (target == nullptr) { in FallbackAnimationsToRoot()
347 target->AddAnimationInner(std::move(animation)); in FallbackAnimationsToRoot()
2894 // use bitmask to check whether the instance is a subclass of the target type in IsInstanceOf()
/third_party/curl/lib/
H A Dftp.c1226 char target[sizeof(myhost) + 20]; in ftp_state_use_port() local
1228 char *dest = target; in ftp_state_use_port()
1242 result = Curl_pp_sendf(data, &ftpc->pp, "%s %s", mode[fcmd], target); in ftp_state_use_port()
2986 /* remember target server OS */ in ftp_statemachine()
2992 /* Nothing special for the target server. */ in ftp_statemachine()
2993 /* remember target server OS */ in ftp_statemachine()
/third_party/mesa3d/src/gallium/frontends/omx/bellagio/
H A Dvid_dec_av1.c631 static unsigned tile_log2(unsigned blkSize, unsigned target) in tile_log2() argument
635 for (k = 0; (blkSize << k) < target; k++); in tile_log2()
2306 priv->codec->decode_bitstream(priv->codec, priv->target, in dec_av1_Decode()
/third_party/mesa3d/src/microsoft/compiler/
H A Ddxil_module.c568 const struct dxil_type *target) in dxil_module_get_pointer_type()
573 type->ptr_target_type == target) in dxil_module_get_pointer_type()
579 type->ptr_target_type = target; in dxil_module_get_pointer_type()
567 dxil_module_get_pointer_type(struct dxil_module *m, const struct dxil_type *target) dxil_module_get_pointer_type() argument
/third_party/node/deps/v8/src/codegen/ia32/
H A Dassembler-ia32.h405 // Read/Modify the code target in the branch/call instruction at pc.
409 Address pc, Address constant_pool, Address target,
415 Address instruction_payload, Code code, Address target);
417 // Get the size of the special target encoded at 'instruction_payload'.
423 Address pc, Address target,
470 // Aligns code to something that's optimal for a jump target for the platform.
/third_party/mesa3d/src/panfrost/midgard/
H A Dmidgard_compile.c1898 unsigned target = output_load_rt_addr(ctx, instr); in emit_intrinsic() local
1899 ld.load_store.index_comp = target & 0x3; in emit_intrinsic()
1900 ld.load_store.index_reg = target >> 2; in emit_intrinsic()
/third_party/rust/crates/libc/src/unix/linux_like/android/
H A Dmod.rs3239 pub fn umount(target: *const ::c_char) -> ::c_int; in umount()
3266 target: *const ::c_char, in mount()
3331 pub fn umount2(target: *const ::c_char, flags: ::c_int) -> ::c_int; in umount2()
/third_party/pcre2/pcre2/src/sljit/
H A DsljitNativePPC_common.c299 target_addr = jump->u.target; in detect_jump_type()
547 addr = (jump->flags & JUMP_LABEL) ? jump->u.label->addr : jump->u.target; in sljit_generate_code()
2368 jump->u.target = (sljit_uw)srcw; in sljit_emit_ijump()
H A DsljitNativeARM_64.c172 target_addr = jump->u.target; in detect_jump_type()
323 addr = (sljit_sw)((jump->flags & JUMP_LABEL) ? jump->u.label->addr : jump->u.target); in sljit_generate_code()
2051 jump->u.target = (sljit_uw)srcw; in sljit_emit_ijump()
H A DsljitNativeX86_common.c541 label_addr = jump->u.target - (sljit_uw)executable_offset; in generate_near_jump_code()
679 jump_addr = jump->u.target; in sljit_generate_code()
3033 jump->u.target = (sljit_uw)srcw;
/third_party/python/Lib/test/test_asyncio/
H A Dtest_events.py346 t = threading.Thread(target=run_in_thread)
760 thread = threading.Thread(target=client, daemon=True)
2627 th = threading.Thread(target=f)
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/d3d9/
H A DRenderer9.cpp284 // to a render target texture is not supported. This is required by in initialize()
1093 // Applies the render target surface, depth stencil surface, viewport rectangle and in updateState()
1112 // the sample counts that we set in render target view, here we use renderTarget->getSamples to in updateState()
1150 // the sample counts that we set in render target view, here we use renderTarget->getSamples to in setBlendDepthRasterStates()
1287 // Apply the render target on the device in applyRenderTarget()
2089 float quad[4][4]; // A quadrilateral covering the target, aligned to match the edges in clear()
2469 gl::TextureTarget target, in copyImageCube()
2478 return mBlit->copyCube(context, framebuffer, rect, destFormat, destOffset, storage, target, in copyImageCube()
2591 ANGLE_TRY_HR(GetImplAs<Context9>(context), result, "Failed to create render target"); in createRenderTarget()
2595 // This format requires that the data be initialized before the render target ca in createRenderTarget()
2463 copyImageCube(const gl::Context *context, const gl::Framebuffer *framebuffer, const gl::Rectangle &sourceRect, GLenum destFormat, const gl::Offset &destOffset, TextureStorage *storage, gl::TextureTarget target, GLint level) copyImageCube() argument
2837 createExternalImageSibling(const gl::Context *context, EGLenum target, EGLClientBuffer buffer, const egl::AttributeMap &attribs) createExternalImageSibling() argument
[all...]
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/text/
H A Dtext_pattern.cpp820 EventTarget target = info.GetTarget(); in HandleClickOnTextAndSpan() local
821 target.area.SetWidth(Dimension(0.0f)); in HandleClickOnTextAndSpan()
822 target.area.SetHeight(Dimension(0.0f)); in HandleClickOnTextAndSpan()
823 spanClickinfo.SetTarget(target); in HandleClickOnTextAndSpan()
/third_party/node/deps/v8/tools/
H A Dgrokdump.py1162 # Compute the actual call target which the disassembler is too stupid
1170 target = (line_address + offset + 5) & 0xFFFFFFFF
1171 code = code.replace(words[6], "0x%08x" % target)
1579 p.Print("[simple target] %s" % (array.Get(1)))
1593 p.Print("[%i] target: %s" % (di, array.Get(i + 1)))
3210 # Compute the actual call target which the disassembler is too stupid
3218 target = (line_address + offset + 5) & 0xFFFFFFFF
3219 code = code.replace(words[6], "0x%08x" % target)
/third_party/libphonenumber/cpp/src/phonenumbers/
H A Dphonemetadata.pb.h159 ::PROTOBUF_NAMESPACE_ID::uint8* target, ::PROTOBUF_NAMESPACE_ID::io::EpsCopyOutputStream* stream) const final;
410 ::PROTOBUF_NAMESPACE_ID::uint8* target, ::PROTOBUF_NAMESPACE_ID::io::EpsCopyOutputStream* stream) const final;
621 ::PROTOBUF_NAMESPACE_ID::uint8* target, ::PROTOBUF_NAMESPACE_ID::io::EpsCopyOutputStream* stream) const final;
1356 ::PROTOBUF_NAMESPACE_ID::uint8* target, ::PROTOBUF_NAMESPACE_ID::io::EpsCopyOutputStream* stream) const final;

Completed in 184 milliseconds

1...<<181182183184185186187188189190>>...196