Home
last modified time | relevance | path

Searched refs:target (Results 2251 - 2275 of 4886) sorted by relevance

1...<<919293949596979899100>>...196

/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/test/unittest/common/communicator/
H A Ddistributeddb_communicator_test.cpp39 static void HandleConnectChange(OnOfflineDevice &onlines, const std::string &target, bool isConnect) in HandleConnectChange() argument
42 onlines.onlineDevices.insert(target); in HandleConnectChange()
43 onlines.latestOnlineDevice = target; in HandleConnectChange()
46 onlines.onlineDevices.erase(target); in HandleConnectChange()
48 onlines.latestOfflineDevice = target; in HandleConnectChange()
183 commAA->RegOnConnectCallback([&onlineForAA](const std::string &target, bool isConnect) { in HWTEST_F()
184 HandleConnectChange(onlineForAA, target, isConnect);}, nullptr); in HWTEST_F()
201 commBB->RegOnConnectCallback([&onlineForBB](const std::string &target, bool isConnect) { in HWTEST_F()
202 HandleConnectChange(onlineForBB, target, isConnect);}, nullptr); in HWTEST_F()
221 commBA->RegOnConnectCallback([&onlineForBA](const std::string &target, boo in HWTEST_F()
[all...]
/third_party/skia/third_party/externals/abseil-cpp/absl/container/internal/
H A Draw_hash_set.h974 auto target = find_first_non_full(ctrl_, hash, capacity_);
975 SetCtrl(target.offset, H2(hash), capacity_, ctrl_, slots_,
977 emplace_at(target.offset, v);
978 infoz().RecordInsert(hash, target.probe_length);
1666 auto target = find_first_non_full(ctrl_, hash, capacity_);
1667 size_t new_i = target.offset;
1668 total_probe_length += target.probe_length;
1691 // target = find_first_non_full(hash)
1692 // if target is in the same group
1694 // else if target i
[all...]
/base/notification/common_event_service/services/test/unittest/
H A Dcommon_event_subscribe_unit_test.cpp258 int SendWantSender(sptr<IWantSender> target, const SenderInfo &senderInfo) override
266 int GetPendingWantUid(const sptr<IWantSender> &target) override
271 int GetPendingWantUserId(const sptr<IWantSender> &target) override
276 std::string GetPendingWantBundleName(const sptr<IWantSender> &target) override
281 int GetPendingWantCode(const sptr<IWantSender> &target) override
286 int GetPendingWantType(const sptr<IWantSender> &target) override
297 int GetPendingRequestWant(const sptr<IWantSender> &target, std::shared_ptr<Want> &want) override
302 int GetWantSenderInfo(const sptr<IWantSender> &target, std::shared_ptr<WantSenderInfo> &info) override
/foundation/ability/ability_runtime/services/abilitymgr/include/
H A Dability_manager_proxy.h90 * @param userId userId of target ability.
648 virtual int SendWantSender(sptr<IWantSender> target, const SenderInfo &senderInfo) override;
652 virtual int GetPendingWantUid(const sptr<IWantSender> &target) override;
654 virtual int GetPendingWantUserId(const sptr<IWantSender> &target) override;
656 virtual std::string GetPendingWantBundleName(const sptr<IWantSender> &target) override;
658 virtual int GetPendingWantCode(const sptr<IWantSender> &target) override;
660 virtual int GetPendingWantType(const sptr<IWantSender> &target) override;
667 virtual int GetPendingRequestWant(const sptr<IWantSender> &target, std::shared_ptr<Want> &want) override;
669 virtual int GetWantSenderInfo(const sptr<IWantSender> &target, std::shared_ptr<WantSenderInfo> &info) override;
728 * @param missionId Id of target missio
[all...]
/foundation/ability/ability_runtime/interfaces/inner_api/ability_manager/include/
H A Dability_manager_interface.h150 * @param userId userId of target ability.
819 virtual int SendWantSender(sptr<IWantSender> target, const SenderInfo &senderInfo) = 0;
823 virtual int GetPendingWantUid(const sptr<IWantSender> &target) = 0;
825 virtual int GetPendingWantUserId(const sptr<IWantSender> &target) = 0;
827 virtual std::string GetPendingWantBundleName(const sptr<IWantSender> &target) = 0;
829 virtual int GetPendingWantCode(const sptr<IWantSender> &target) = 0;
831 virtual int GetPendingWantType(const sptr<IWantSender> &target) = 0;
837 virtual int GetPendingRequestWant(const sptr<IWantSender> &target, std::shared_ptr<Want> &want) = 0;
839 virtual int GetWantSenderInfo(const sptr<IWantSender> &target, std::shared_ptr<WantSenderInfo> &info) = 0;
896 * @param missionId Id of target missio
[all...]
/foundation/arkui/ace_engine/frameworks/bridge/common/accessibility/
H A Daccessibility_node_manager.cpp638 const std::string& id, const std::string& target, const RefPtr<AccessibilityNode>& node) in TrySaveTargetAndIdNode()
644 if (!target.empty()) { in TrySaveTargetAndIdNode()
645 AddNodeWithTarget(target, node); in TrySaveTargetAndIdNode()
718 auto& target = info.GetTargetWithModify(); in UpdateEventTarget() local
720 target.area.SetOffset(DimensionOffset(Offset(LocalOffset.GetX() + marginLeft, LocalOffset.GetY() + marginTop))); in UpdateEventTarget()
722 target.origin = in UpdateEventTarget()
724 target.area.SetWidth(Dimension(rectInLocal.Width() - marginLeft - marginRight)); in UpdateEventTarget()
725 target.area.SetHeight(Dimension(rectInLocal.Height() - marginTop - marginBottom)); in UpdateEventTarget()
637 TrySaveTargetAndIdNode( const std::string& id, const std::string& target, const RefPtr<AccessibilityNode>& node) TrySaveTargetAndIdNode() argument
/foundation/arkui/ace_engine_lite/frameworks/src/core/modules/presets/
H A Dcjson_parser.cpp783 uint8_t CJSONParser::Split(const char *target, char delemeter, ListNode *&node) in Split() argument
785 if (target == nullptr) { in Split()
792 int pos = IndexOf(target, delemeter, startPos); in Split()
795 current = SubStr(target, startPos, pos - startPos); in Split()
802 pos = IndexOf(target, delemeter, startPos); in Split()
804 if ((startPos != -1) && (static_cast<size_t>(startPos) < strlen(target))) { in Split()
805 current = SubStr(target, startPos, strlen(target) - startPos); in Split()
812 // deal the key from lastIndex to strlen(target), the last find would return -1 in Split()
/foundation/communication/dsoftbus/core/connection/tcp/src/
H A Dsoftbus_tcp_connect_manager.c155 TcpConnInfoNode *target = NULL; in DelTcpConnInfo() local
159 target = it; in DelTcpConnInfo()
163 if (target != NULL) { in DelTcpConnInfo()
164 ListDelete(&target->node); in DelTcpConnInfo()
165 status = DelTrigger((ListenerModule)target->info.socketInfo.moduleId, in DelTcpConnInfo()
166 target->info.socketInfo.fd, RW_TRIGGER); in DelTcpConnInfo()
172 g_tcpConnCallback->OnDisconnected(connectionId, &target->info); in DelTcpConnInfo()
173 SoftBusFree(target); in DelTcpConnInfo()
/third_party/cups-filters/fontembed/
H A Dsfnt.c36 const char *target,int len, in otf_bsearch()
43 if (memcmp(target,ret,len)<0) { in otf_bsearch()
50 if (memcmp(target,ret,len)<0) { in otf_bsearch()
54 const int result=memcmp(target,ret,len); in otf_bsearch()
394 char target[]={(tag>>24),(tag>>16),(tag>>8),tag}; in otf_find_table()
396 char *result=otf_bsearch(tables,target,4, in otf_find_table()
760 char target[]={unicode>>8,unicode}; // set_USHORT(target,unicode); in otf_from_unicode() local
761 char *result=otf_bsearch((char *)otf->unimap+14,target,2, in otf_from_unicode()
35 otf_bsearch(char *table, const char *target,int len, int searchRange, int entrySelector, int rangeShift, int lower_bound) otf_bsearch() argument
/third_party/libsnd/src/
H A Dogg_vorbis.c797 vorbis_skip (SF_PRIVATE *psf, uint64_t target) in vorbis_skip() argument
808 { if ((uint64_t) thisblock + vdata->gp >= target) in vorbis_skip()
809 thisblock = SF_MIN (thisblock, (int) (target - vdata->gp)) ; in vorbis_skip()
813 if (vdata->gp == target) in vorbis_skip()
817 /* Read through packets that are before our target */ in vorbis_skip()
819 for ( ; vdata->gp < target ; ) in vorbis_skip()
832 if (target < vdata->gp) in vorbis_skip()
833 { /* Our target is inside the hole :-( */ in vorbis_skip()
851 /* Check to see if the block contains our target */ in vorbis_skip()
852 if (vdata->gp + ((thisblock + blocksize) / 4) >= target) in vorbis_skip()
[all...]
/third_party/mesa3d/src/gallium/winsys/virgl/vtest/
H A Dvirgl_vtest_winsys.c138 * The display target is aligned to 64 bytes, while the shared resource in virgl_vtest_transfer_get_internal()
226 enum pipe_texture_target target, in virgl_vtest_winsys_resource_create()
252 .target = target }; in virgl_vtest_winsys_resource_create()
276 virgl_vtest_send_resource_create(vtws, handle, target, pipe_to_virgl_format(format), bind, in virgl_vtest_winsys_resource_create()
332 * With protocol v0 we can either have a display target or a resource backing in virgl_vtest_resource_map()
334 * backing store in this function. We can copy to the display target when in virgl_vtest_resource_map()
366 enum pipe_texture_target target, in virgl_vtest_winsys_resource_cache_create()
392 .target = target }; in virgl_vtest_winsys_resource_cache_create()
225 virgl_vtest_winsys_resource_create(struct virgl_winsys *vws, enum pipe_texture_target target, const void *map_front_private, uint32_t format, uint32_t bind, uint32_t width, uint32_t height, uint32_t depth, uint32_t array_size, uint32_t last_level, uint32_t nr_samples, uint32_t size) virgl_vtest_winsys_resource_create() argument
365 virgl_vtest_winsys_resource_cache_create(struct virgl_winsys *vws, enum pipe_texture_target target, const void *map_front_private, uint32_t format, uint32_t bind, uint32_t width, uint32_t height, uint32_t depth, uint32_t array_size, uint32_t last_level, uint32_t nr_samples, uint32_t flags, uint32_t size) virgl_vtest_winsys_resource_cache_create() argument
[all...]
/third_party/node/test/common/
H A Dindex.js555 defineProperty(target, property, descriptor) {
559 deleteProperty(target, property) {
563 get(target, prop, receiver) {
564 return mustNotMutateObjectDeep(Reflect.get(target, prop, receiver));
566 preventExtensions(target) {
568 inspect(target));
570 set(target, property, value, receiver) {
574 setPrototypeOf(target, prototype) {
/third_party/node/tools/gyp/pylib/gyp/generator/
H A Dxcode.py23 # DERIVED_FILE_DIR, is target-specific, which is thought to be too restrictive
141 # target in an entire project (even across multiple project files) using
183 # go into target-specific build settings sections. The project-wide
185 # resolve variable references in a project context as opposed to a target
221 # used for the Run All Tests target. support_targets are the action/rule
234 # in this project's "All" target. It includes each non_runtest_target
238 for target in self.build_file_dict["targets"]:
239 target_name = target["target_name"]
240 toolset = target["toolset"]
245 # Make sure that the target bein
[all...]
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/
H A Dxcode.py23 # DERIVED_FILE_DIR, is target-specific, which is thought to be too restrictive
141 # target in an entire project (even across multiple project files) using
183 # go into target-specific build settings sections. The project-wide
185 # resolve variable references in a project context as opposed to a target
221 # used for the Run All Tests target. support_targets are the action/rule
234 # in this project's "All" target. It includes each non_runtest_target
238 for target in self.build_file_dict["targets"]:
239 target_name = target["target_name"]
240 toolset = target["toolset"]
245 # Make sure that the target bein
[all...]
/third_party/mesa3d/src/nouveau/codegen/
H A Dnv50_ir_print.cpp645 PRINT(" %sBUILTIN:%i", colour[TXT_BRA], asFlow()->target.builtin); in print()
647 if (op == OP_CALL && asFlow()->target.fn) { in print()
649 asFlow()->target.fn->getName(), in print()
650 asFlow()->target.fn->getLabel()); in print()
652 if (asFlow()->target.bb) in print()
653 PRINT(" %sBB:%i", colour[TXT_BRA], asFlow()->target.bb->getId()); in print()
723 PRINT("%s %s$r%u $s%u ", asTex()->tex.target.getName(), in print()
902 INFO(" \"target\":\"%d\",\n", info_out->target); in nv50_ir_prog_info_out_print()
/third_party/icu/icu4j/main/classes/charset/src/com/ibm/icu/charset/
H A DCharsetLMBCS.java755 protected CoderResult decodeLoop(ByteBuffer source, CharBuffer target, IntBuffer offsets, boolean flush) { in decodeLoop() argument
765 while (err[0].isUnderflow() && source.hasRemaining() && target.hasRemaining()) { in decodeLoop()
810 target.put(uniChar); in decodeLoop()
821 /* If target ran out before source, return over flow buffer error. */ in decodeLoop()
822 if (err[0].isUnderflow() && source.hasRemaining() && !target.hasRemaining()) { in decodeLoop()
936 protected CoderResult encodeLoop(CharBuffer source, ByteBuffer target, IntBuffer offsets, boolean flush) { in encodeLoop() argument
948 * If that succeeds, see if it will all fit into the target & copy it over in encodeLoop()
972 if (!target.hasRemaining()) { in encodeLoop()
1074 /* we have a translation. increment source and write as much as possible to target */ in encodeLoop()
1077 while (target in encodeLoop()
[all...]
/third_party/node/deps/v8/src/compiler/
H A Djs-inlining.cc57 Node* target() const { in target() function in v8::internal::compiler::JSCallAccessor
119 // {inliner_inputs} counts the target, receiver/new_target, and arguments; but in InlineCall()
136 // The projection is requesting the new target value. in InlineCall()
291 // Determines whether the call target of the given call {node} is statically
293 // the call target is provided (the exact closure might be unknown).
297 Node* target = node->InputAt(JSCallOrConstructNode::TargetIndex()); in DetermineCallTarget() local
298 HeapObjectMatcher match(target); in DetermineCallTarget()
301 // calls whenever the target is a constant function object, as follows: in DetermineCallTarget()
302 // - JSCall(target:constant, receiver, args..., vector) in DetermineCallTarget()
303 // - JSConstruct(target in DetermineCallTarget()
352 Node* target = node->InputAt(JSCallOrConstructNode::TargetIndex()); DetermineCallContext() local
[all...]
H A Djs-inlining-heuristic.cc417 // the {callee} target of the call. We only reuse the branch if there in TryReuseDispatch()
419 // only used as the target (and possibly also in the related frame states). in TryReuseDispatch()
547 // 1. In the call (as a target). in TryReuseDispatch()
589 // Case 1 (use by the call as a target). in TryReuseDispatch()
607 // We need to specialize the calls to the correct target, effect, and in TryReuseDispatch()
611 Node* target = callee->InputAt(i); in TryReuseDispatch() local
618 FrameState{checkpoint_state}, callee, target, in TryReuseDispatch()
626 frame_state, callee, target, in TryReuseDispatch()
628 inputs[0] = target; in TryReuseDispatch()
668 // instead of the target JSFunctio in CreateOrReuseDispatch()
669 Node* target = jsgraph()->Constant(candidate.functions[i].value()); CreateOrReuseDispatch() local
[all...]
/third_party/node/deps/v8/src/builtins/
H A Dbuiltins-temporal.cc361 JSTemporal##T::Constructor(isolate, args.target(), args.new_target(), \
544 isolate, args.target(), args.new_target(), in BUILTIN()
573 isolate, args.target(), args.new_target(), in BUILTIN()
597 isolate, args.target(), args.new_target(), in BUILTIN()
638 isolate, args.target(), args.new_target(), in BUILTIN()
661 isolate, args.target(), args.new_target(), in BUILTIN()
714 isolate, args.target(), args.new_target(), in BUILTIN()
749 isolate, args.target(), args.new_target(), in BUILTIN()
/third_party/node/deps/v8/src/heap/
H A Dmark-compact.h421 void RecordSlot(HeapObject object, TSlot slot, HeapObject target);
423 void RecordRelocSlot(Code host, RelocInfo* rinfo, HeapObject target);
517 HeapObject target);
519 HeapObject target);
521 static void RecordRelocSlot(Code host, RelocInfo* rinfo, HeapObject target);
523 HeapObject target);
525 HeapObject target);
527 HeapObjectSlot slot, HeapObject target);
701 // of the given dead target. If so it clears the transition and trims
718 // trim the corresponding descriptor array if a transition target i
[all...]
/third_party/mesa3d/src/gallium/drivers/i915/
H A Di915_resource_texture.c169 if (tex->b.target == PIPE_TEXTURE_1D) in i915_texture_tiling()
436 switch (tex->b.target) { in i915_texture_layout()
740 switch (tex->b.target) { in i945_texture_layout()
774 if (texture->target == PIPE_BUFFER) in i915_resource_get_handle()
832 if (resource->target != PIPE_TEXTURE_3D && in i915_texture_transfer_map()
833 resource->target != PIPE_TEXTURE_CUBE) { in i915_texture_transfer_map()
986 if ((template->target != PIPE_TEXTURE_2D && in i915_texture_from_handle()
987 template->target != PIPE_TEXTURE_RECT) || in i915_texture_from_handle()
/third_party/mesa3d/src/gallium/auxiliary/driver_trace/
H A Dtr_dump_state.c52 trace_dump_member_begin("target"); in trace_dump_resource_template()
53 trace_dump_enum(tr_util_pipe_texture_target_name(templat->target)); in trace_dump_resource_template()
573 trace_dump_member_begin("target"); in trace_dump_sampler_view_template()
574 trace_dump_enum(tr_util_pipe_texture_target_name(state->target)); in trace_dump_sampler_view_template()
581 if (state->target == PIPE_BUFFER) { in trace_dump_sampler_view_template()
612 trace_dump_surface_template(surface, surface ? surface->texture->target : 0); in trace_dump_surface()
617 enum pipe_texture_target target) in trace_dump_surface_template()
634 trace_dump_member_begin("target"); in trace_dump_surface_template()
635 trace_dump_enum(tr_util_pipe_texture_target_name(target)); in trace_dump_surface_template()
640 if (target in trace_dump_surface_template()
616 trace_dump_surface_template(const struct pipe_surface *state, enum pipe_texture_target target) trace_dump_surface_template() argument
[all...]
/third_party/mesa3d/src/gallium/auxiliary/tgsi/
H A Dtgsi_ureg.h354 enum tgsi_texture_type target,
363 enum tgsi_texture_type target,
555 enum tgsi_texture_type target,
599 enum tgsi_texture_type target,
755 enum tgsi_texture_type target, \
770 ureg_emit_texture( ureg, insn.extended_token, target, \
831 enum tgsi_texture_type target, \
848 ureg_emit_texture( ureg, insn.extended_token, target, \
/third_party/mesa3d/src/gallium/auxiliary/util/
H A Du_surface.c222 assert((src->target == PIPE_BUFFER && dst->target == PIPE_BUFFER) || in util_resource_copy_region()
223 (src->target != PIPE_BUFFER && dst->target != PIPE_BUFFER)); in util_resource_copy_region()
291 if (dst->target == PIPE_BUFFER && src->target == PIPE_BUFFER) { in util_resource_copy_region()
434 if (dst->texture->target == PIPE_BUFFER) { in util_clear_render_target()
700 switch (res->target) { in is_box_inside_resource()
/third_party/mesa3d/src/gallium/drivers/crocus/
H A Dcrocus_blit.c407 info->dst.resource->target != PIPE_TEXTURE_3D) in crocus_blit()
447 if (info->src.resource->target == PIPE_TEXTURE_3D && in crocus_blit()
448 info->dst.resource->target == PIPE_TEXTURE_3D) { in crocus_blit()
537 if (info->src.resource->target == PIPE_TEXTURE_3D) in crocus_blit()
573 /* on SNB blorp will use render target instead of depth in crocus_blit()
602 if (dst_res->base.b.target == PIPE_BUFFER) { in crocus_blit()
706 if (dst->target == PIPE_BUFFER) in crocus_copy_region()
709 if (dst->target == PIPE_BUFFER && src->target == PIPE_BUFFER) { in crocus_copy_region()

Completed in 35 milliseconds

1...<<919293949596979899100>>...196