Home
last modified time | relevance | path

Searched refs:target (Results 1976 - 2000 of 4886) sorted by relevance

1...<<71727374757677787980>>...196

/foundation/communication/dsoftbus/core/connection/ble/src/
H A Dsoftbus_conn_ble_manager.c117 static void TransitionToState(enum BleMgrState target);
548 ConnBleDevice *target = NULL; in PendingDevice() local
550 target = connecting; in PendingDevice()
555 target = it; in PendingDevice()
562 if (target == NULL) { in PendingDevice()
571 ListAdd(&target->requests, &requestIt->node); in PendingDevice()
573 target->fastestConnectEnable = (device->fastestConnectEnable || target->fastestConnectEnable); in PendingDevice()
574 if (strlen(target->udid) == 0 && strlen(device->udid) != 0) { in PendingDevice()
575 if (strcpy_s(target in PendingDevice()
624 ConnBleDevice *target = NULL; BleHandlePendingRequestOnAvailableState() local
1323 ConnBleConnection *target = NULL; GetConnectionByOption() local
1482 TransitionToState(enum BleMgrState target) TransitionToState() argument
[all...]
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/util/
H A DULocaleTest.java1486 String target = "German (Phonebook Sort Order)"; in TestDisplayWithKeyword()
1487 assertEquals("collation", target, name); in TestDisplayWithKeyword()
1490 target = "德文(電話簿排庝)"; // \u5FB7\u6587\uFF08\u96FB\u8A71\u7C3F\u6392\u5E8F\uFF09 in TestDisplayWithKeyword()
1491 assertEquals("collation", target, name); in TestDisplayWithKeyword()
1494 target = "Japanese (Japanese Yen)"; in TestDisplayWithKeyword()
1495 assertEquals("currency (JPY)", target, name); in TestDisplayWithKeyword()
1498 target = "日文(日圓)"; // \u65E5\u6587\uFF08\u65E5\u5713\uFF09 in TestDisplayWithKeyword()
1499 assertEquals("currency (JPY)", target, name); in TestDisplayWithKeyword()
1502 target = "German (Currency: XYZ)"; in TestDisplayWithKeyword()
1503 assertEquals("currency (XYZ)", target, nam in TestDisplayWithKeyword()
[all...]
/third_party/node/deps/v8/src/objects/
H A Dobjects.cc479 HeapObject target = Handle<JSProxy>::cast(currInput)->target(isolate); in NoSideEffectsToMaybeString() local
480 currInput = Handle<Object>(target, isolate); in NoSideEffectsToMaybeString()
1206 // 5. Let target be the value of the [[ProxyTarget]] internal slot of O. in GetProperty()
1207 Handle<JSReceiver> target(JSReceiver::cast(proxy->target()), isolate); in GetProperty()
1215 // 7.a Return target.[[Get]](P, Receiver). in GetProperty()
1217 LookupIterator it(isolate, receiver, key, target); in GetProperty()
1222 // 8. Let trapResult be ? Call(trap, handler, «target, P, Receiver»). in GetProperty()
1224 Handle<Object> args[] = {target, nam in GetProperty()
1240 CheckGetSetTrapResult(Isolate* isolate, Handle<Name> name, Handle<JSReceiver> target, Handle<Object> trap_result, AccessKind access_kind) CheckGetSetTrapResult() argument
3100 CheckHasTrap(Isolate* isolate, Handle<Name> name, Handle<JSReceiver> target) CheckHasTrap() argument
3220 CheckDeleteTrap(Isolate* isolate, Handle<Name> name, Handle<JSReceiver> target) CheckDeleteTrap() argument
3249 New(Isolate* isolate, Handle<Object> target, Handle<Object> handler) New() argument
5816 InternalIndex target = EntryForProbe(roots, current_key, probe, current); Rehash() local
[all...]
/third_party/mesa3d/src/nouveau/codegen/
H A Dnv50_ir_emit_gm107.cpp551 int32_t pos = insn->target.bb->binPos; in emitBRA()
577 emitField(0x14, 24, insn->target.bb->binPos - (codeSize + 8)); in emitCAL()
580 int pcAbs = targGM107->getBuiltinOffset(insn->target.builtin); in emitCAL()
584 emitField(0x14, 32, insn->target.bb->binPos); in emitCAL()
601 emitField(0x14, 24, insn->target.bb->binPos - (codeSize + 8)); in emitPCNT()
623 emitField(0x14, 24, insn->target.bb->binPos - (codeSize + 8)); in emitPBK()
645 emitField(0x14, 24, insn->target.bb->binPos - (codeSize + 8)); in emitPRET()
667 emitField(0x14, 24, insn->target.bb->binPos - (codeSize + 8)); in emitSSY()
2815 switch (tex->tex.target.getEnum()) { in getTEXSTarget()
2859 switch (tex->tex.target in getTLDSTarget()
3264 int target = 0; emitSUTarget() local
[all...]
/foundation/arkui/ace_engine_lite/frameworks/src/core/base/
H A Djs_fwk_common.cpp141 jerry_value_t target = UNDEFINED; in MallocStringOf() local
146 target = jerry_get_symbol_descriptive_string(source); in MallocStringOf()
148 target = jerry_value_to_string(source); in MallocStringOf()
150 if (IS_ERROR_VALUE(target)) { in MallocStringOf()
155 jerry_size_t size = jerry_get_string_size(target); in MallocStringOf()
171 length = jerry_string_to_char_buffer(target, buffer, size); in MallocStringOf()
173 HILOG_ERROR(HILOG_MODULE_ACE, "jerry string to char buffer failed, target size[%{public}d]", size); in MallocStringOf()
179 jerry_release_value(target); in MallocStringOf()
317 // arg1:target object watched, arg2:watcher callback, arg3:other argument
387 * only used in this file, caller must make sure the target buffe
951 IsHexColor(const char * const target) IsHexColor() argument
955 IsRgbColor(const char * const target) IsRgbColor() argument
959 IsRgbaColor(const char * const target) IsRgbaColor() argument
[all...]
/third_party/ltp/lib/
H A Dsafe_macros.c896 const char *source, const char *target, in safe_mount()
903 if (realpath(target, mpath)) { in safe_mount()
909 "Cannot resolve the absolute path of %s", target); in safe_mount()
916 rval = mount(source, target, filesystemtype, mountflags, data); in safe_mount()
933 filesystemtype, source, target); in safe_mount()
944 "mount(%s, %s, %s, %lu, %p) failed", source, target, in safe_mount()
949 source, target, filesystemtype, mountflags, data, in safe_mount()
957 const char *target) in safe_umount()
962 if (realpath(target, mpath)) { in safe_umount()
966 "Cannot resolve the absolute path of %s", target); in safe_umount()
895 safe_mount(const char *file, const int lineno, void (*cleanup_fn)(void), const char *source, const char *target, const char *filesystemtype, unsigned long mountflags, const void *data) safe_mount() argument
956 safe_umount(const char *file, const int lineno, void (*cleanup_fn)(void), const char *target) safe_umount() argument
[all...]
/third_party/node/deps/v8/src/codegen/loong64/
H A Dmacro-assembler-loong64.h139 void BranchTrueShortF(Label* target, CFRegister cc = FCC0);
140 void BranchFalseShortF(Label* target, CFRegister cc = FCC0);
142 void BranchTrueF(Label* target, CFRegister cc = FCC0);
143 void BranchFalseF(Label* target, CFRegister cc = FCC0);
176 void Jump(Register target, COND_ARGS);
177 void Jump(intptr_t target, RelocInfo::Mode rmode, COND_ARGS);
178 void Jump(Address target, RelocInfo::Mode rmode, COND_ARGS);
179 // Deffer from li, this method save target to the memory, and then load
182 void PatchAndJump(Address target);
185 void Call(Register target, COND_ARG
[all...]
/third_party/skia/third_party/externals/angle2/src/libANGLE/capture/
H A Dcapture_gles_3_0_autogen.h47 GLenum target,
189 GLenum target,
247 GLenum target,
256 GLenum target,
261 GLenum target,
342 GLenum target,
347 GLenum target,
396 GLenum target,
760 GLenum target,
771 GLenum target,
[all...]
/third_party/skia/third_party/externals/spirv-cross/
H A Dspirv_parser.cpp131 auto &target = get<SPIRType>(fixup.first); in parse() local
133 target.member_types = source.member_types; in parse()
134 target.basetype = source.basetype; in parse()
135 target.self = source.self; in parse()
379 uint32_t target = ops[i]; in parse() local
385 ir.set_decoration_string(target, decoration, ir.get_decoration_string(group_id, decoration)); in parse()
389 ir.meta[target].decoration_word_offset[decoration] = in parse()
391 ir.set_decoration(target, decoration, ir.get_decoration(group_id, decoration)); in parse()
407 uint32_t target = ops[i + 0]; in parse() local
413 ir.set_member_decoration_string(target, inde in parse()
947 uint32_t target = ops[0]; parse() local
[all...]
/third_party/typescript/lib/
H A DtypingsInstaller.js1501 elements.copyWithin(/*target*/ 0, /*start*/ headIndex);
2055 * * Whose length differs from the target name by more than 0.34 of the length of the name.
3161 case 0 /* TypeMapKind.Simple */: return "".concat(this.source.__debugTypeToString(), " -> ").concat(this.target.__debugTypeToString());
4053 instantiatedType: (_e = referenceType.target) === null || _e === void 0 ? void 0 : _e.id,
5485 // In turn, we offer both a `NodeNext` moving resolution target, and a `Node16` version-anchored resolution target
8344 Jump_target_cannot_cross_function_boundary: diag(1107, ts.DiagnosticCategory.Error, "Jump_target_cannot_cross_function_boundary_1107", "Jump target cannot cross function boundary."),
8561 Top_level_await_expressions_are_only_allowed_when_the_module_option_is_set_to_es2022_esnext_system_node16_or_nodenext_and_the_target_option_is_set_to_es2017_or_higher: diag(1378, ts.DiagnosticCategory.Error, "Top_level_await_expressions_are_only_allowed_when_the_module_option_is_set_to_es2022_esnext_system_n_1378", "Top-level 'await' expressions are only allowed when the 'module' option is set to 'es2022', 'esnext', 'system', 'node16', or 'nodenext', and the 'target' option is set to 'es2017' or higher."),
8606 Default_library_for_target_0: diag(1425, ts.DiagnosticCategory.Message, "Default_library_for_target_0_1425", "Default library for target '{0}'"),
8607 File_is_default_library_for_target_specified_here: diag(1426, ts.DiagnosticCategory.Message, "File_is_default_library_for_target_specified_here_1426", "File is default library for target specifie
[all...]
H A Dtsc.js2723 case 0: return "".concat(this.source.__debugTypeToString(), " -> ").concat(this.target.__debugTypeToString());
3437 instantiatedType: (_e = referenceType.target) === null || _e === void 0 ? void 0 : _e.id,
5481 Jump_target_cannot_cross_function_boundary: diag(1107, ts.DiagnosticCategory.Error, "Jump_target_cannot_cross_function_boundary_1107", "Jump target cannot cross function boundary."),
5698 Top_level_await_expressions_are_only_allowed_when_the_module_option_is_set_to_es2022_esnext_system_node16_or_nodenext_and_the_target_option_is_set_to_es2017_or_higher: diag(1378, ts.DiagnosticCategory.Error, "Top_level_await_expressions_are_only_allowed_when_the_module_option_is_set_to_es2022_esnext_system_n_1378", "Top-level 'await' expressions are only allowed when the 'module' option is set to 'es2022', 'esnext', 'system', 'node16', or 'nodenext', and the 'target' option is set to 'es2017' or higher."),
5743 Default_library_for_target_0: diag(1425, ts.DiagnosticCategory.Message, "Default_library_for_target_0_1425", "Default library for target '{0}'"),
5744 File_is_default_library_for_target_specified_here: diag(1426, ts.DiagnosticCategory.Message, "File_is_default_library_for_target_specified_here_1426", "File is default library for target specified here."),
5750 Top_level_for_await_loops_are_only_allowed_when_the_module_option_is_set_to_es2022_esnext_system_node16_or_nodenext_and_the_target_option_is_set_to_es2017_or_higher: diag(1432, ts.DiagnosticCategory.Error, "Top_level_for_await_loops_are_only_allowed_when_the_module_option_is_set_to_es2022_esnext_system_nod_1432", "Top-level 'for await' loops are only allowed when the 'module' option is set to 'es2022', 'esnext', 'system', 'node16', or 'nodenext', and the 'target' option is set to 'es2017' or higher."),
5850 Call_target_does_not_contain_any_signatures: diag(2346, ts.DiagnosticCategory.Error, "Call_target_does_not_contain_any_signatures_2346", "Call target does not contain any signatures."),
5877 Type_0_is_not_assignable_to_type_1_with_exactOptionalPropertyTypes_Colon_true_Consider_adding_undefined_to_the_types_of_the_target_s_properties: diag(2375, ts.DiagnosticCategory.Error, "Type_0_is_not_assignable_to_type_1_with_exactOptionalPropertyTypes_Colon_true_Consider_adding_undefi_2375", "Type '{0}' is not assignable to type '{1}' with 'exactOptionalPropertyTypes: true'. Consider adding 'undefined' to the types of the target's properties."),
5881 Argument_of_type_0_is_not_assignable_to_parameter_of_type_1_with_exactOptionalPropertyTypes_Colon_true_Consider_adding_undefined_to_the_types_of_the_target_s_properties: diag(2379, ts.DiagnosticCategory.Error, "Argument_of_type_0_is_not_assignable_to_parameter_of_type_1_with_exactOptionalPropertyTypes_Colon_tr_2379", "Argument of type '{0}' is not assignable to parameter of type '{1}' with 'exactOptionalPropertyTypes: true'. Consider adding 'undefined' to the types of the target'
87253 var target = isDelete global() variable
[all...]
/third_party/mesa3d/src/gallium/drivers/radeonsi/
H A Dradeon_vcn_dec.c67 struct pipe_video_buffer *target, in get_h264_msg()
198 if (dec->render_pic_list[i] && dec->render_pic_list[i] == target) { in get_h264_msg()
199 if (target->codec != NULL){ in get_h264_msg()
201 (uintptr_t)vl_video_buffer_get_associated_data(target, &dec->base); in get_h264_msg()
204 vl_video_buffer_set_associated_data(target, &dec->base, (void *)(uintptr_t)i, in get_h264_msg()
213 dec->render_pic_list[i] = target; in get_h264_msg()
215 vl_video_buffer_set_associated_data(target, &dec->base, (void *)(uintptr_t)i, in get_h264_msg()
292 struct pipe_video_buffer *target, in get_h265_msg()
400 dec->render_pic_list[i] = target; in get_h265_msg()
406 vl_video_buffer_set_associated_data(target, in get_h265_msg()
66 get_h264_msg(struct radeon_decoder *dec, struct pipe_video_buffer *target, struct pipe_h264_picture_desc *pic) get_h264_msg() argument
291 get_h265_msg(struct radeon_decoder *dec, struct pipe_video_buffer *target, struct pipe_h265_picture_desc *pic) get_h265_msg() argument
504 get_vp9_msg(struct radeon_decoder *dec, struct pipe_video_buffer *target, struct pipe_vp9_picture_desc *pic) get_vp9_msg() argument
739 get_av1_msg(struct radeon_decoder *dec, struct pipe_video_buffer *target, struct pipe_av1_picture_desc *pic) get_av1_msg() argument
1700 rvcn_dec_message_decode(struct radeon_decoder *dec, struct pipe_video_buffer *target, struct pipe_picture_desc *picture) rvcn_dec_message_decode() argument
2546 radeon_dec_begin_frame(struct pipe_video_codec *decoder, struct pipe_video_buffer *target, struct pipe_picture_desc *picture) radeon_dec_begin_frame() argument
2569 radeon_dec_decode_macroblock(struct pipe_video_codec *decoder, struct pipe_video_buffer *target, struct pipe_picture_desc *picture, const struct pipe_macroblock *macroblocks, unsigned num_macroblocks) radeon_dec_decode_macroblock() argument
2582 radeon_dec_decode_bitstream(struct pipe_video_codec *decoder, struct pipe_video_buffer *target, struct pipe_picture_desc *picture, unsigned num_buffers, const void *const *buffers, const unsigned *sizes) radeon_dec_decode_bitstream() argument
2624 send_cmd_dec(struct radeon_decoder *dec, struct pipe_video_buffer *target, struct pipe_picture_desc *picture) send_cmd_dec() argument
2667 radeon_dec_end_frame(struct pipe_video_codec *decoder, struct pipe_video_buffer *target, struct pipe_picture_desc *picture) radeon_dec_end_frame() argument
2685 radeon_dec_jpeg_end_frame(struct pipe_video_codec *decoder, struct pipe_video_buffer *target, struct pipe_picture_desc *picture) radeon_dec_jpeg_end_frame() argument
[all...]
H A Dsi_texture.c541 bool is_array = util_texture_is_array(res->target); in si_set_tex_bo_metadata()
544 sscreen->make_texture_descriptor(sscreen, tex, true, res->target, res->format, swizzle, 0, in si_set_tex_bo_metadata()
588 if (resource->target == PIPE_BUFFER) in si_resource_get_param()
597 if (resource->target == PIPE_BUFFER) in si_resource_get_param()
605 if (resource->target == PIPE_BUFFER) { in si_resource_get_param()
673 if (resource->target != PIPE_BUFFER) { in si_texture_get_handle()
927 base->target == PIPE_TEXTURE_3D || in si_texture_create_object()
928 base->target == PIPE_TEXTURE_CUBE)) { in si_texture_create_object()
1219 if (templ->target == PIPE_TEXTURE_1D || templ->target in si_choose_tiling()
2289 si_get_sparse_texture_virtual_page_size(struct pipe_screen *screen, enum pipe_texture_target target, bool multi_sample, enum pipe_format format, unsigned offset, unsigned size, int *x, int *y, int *z) si_get_sparse_texture_virtual_page_size() argument
[all...]
/base/inputmethod/imf/frameworks/cj/src/
H A Dinput_method_ffi.cpp73 int32_t FfiInputMethodSwitchCurrentInputMethodSubtype(bool &result, CInputMethodSubtype target) in FfiInputMethodSwitchCurrentInputMethodSubtype() argument
81 ctrl->SwitchInputMethod(SwitchTrigger::CURRENT_IME, std::string(target.name), std::string(target.id)); in FfiInputMethodSwitchCurrentInputMethodSubtype()
104 CInputMethodProperty target, CInputMethodSubtype subtype) in FfiInputMethodSwitchCurrentInputMethodAndSubtype()
103 FfiInputMethodSwitchCurrentInputMethodAndSubtype(bool &result, CInputMethodProperty target, CInputMethodSubtype subtype) FfiInputMethodSwitchCurrentInputMethodAndSubtype() argument
/base/global/i18n/frameworks/intl/src/
H A Dutils.cpp162 const std::string& target, const std::string& replace) in StrReplaceAll()
166 if (replace.empty() || target.compare(replace) == 0) { in StrReplaceAll()
169 while ((pos = result.find(target)) != std::string::npos) { in StrReplaceAll()
170 result.replace(pos, target.length(), replace); in StrReplaceAll()
161 StrReplaceAll(const std::string& str, const std::string& target, const std::string& replace) StrReplaceAll() argument
/base/startup/appspawn/modules/sandbox/
H A Dappspawn_sandbox.h124 char *target; // 沙盒化后的目录 member
136 char *target; member
259 PathMountNode *GetPathMountNode(const SandboxSection *section, int type, const char *source, const char *target);
260 SymbolLinkNode *GetSymbolLinkNode(const SandboxSection *section, const char *target, const char *linkName);
/foundation/graphic/graphic_2d/rosen/modules/animation/window_animation/src/
H A Drs_window_animation_proxy.cpp47 WALOGE("Failed to write window animation target!"); in WriteTargetAndCallback()
77 WALOGE("Failed to write window animation target or callback!"); in OnStartApp()
107 WALOGE("OnAppTransition failed to write from animation target!"); in OnAppTransition()
112 WALOGE("OnAppTransition failed to write to animation target!"); in OnAppTransition()
147 WALOGE("OnAppBackTransition failed to write from animation target!"); in OnAppBackTransition()
152 WALOGE("OnAppBackTransition failed to write to animation target!"); in OnAppBackTransition()
187 WALOGE("OnMinimizeWindow failed to write window animation target or callback!"); in OnMinimizeWindow()
224 WALOGE("OnMinimizeAllWindow failed to write minimizing animation target size!"); in OnMinimizeAllWindow()
228 for (auto& target : minimizingWindowsTarget) { in OnMinimizeAllWindow()
229 if (!data.WriteParcelable(target in OnMinimizeAllWindow()
[all...]
/foundation/graphic/graphic_2d/rosen/modules/render_service_base/src/pipeline/
H A Drs_dirty_region_manager.cpp291 void RSDirtyRegionManager::GetDirtyRegionInfo(std::map<NodeId, RectI>& target, in GetDirtyRegionInfo() argument
294 target.clear(); in GetDirtyRegionInfo()
300 target = dirtyCanvasNodeInfo_[dirtyType]; in GetDirtyRegionInfo()
302 target = dirtySurfaceNodeInfo_[dirtyType]; in GetDirtyRegionInfo()
/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/framework/test/
H A Dserializable_test.cpp108 static inline bool EqualPtr(const T *src, const T *target) in EqualPtr() argument
110 return (((src) == (target)) || ((src) != nullptr && (target) != nullptr && *(src) == *(target))); in EqualPtr()
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/test/unittest/common/communicator/
H A Dadapter_stub.cpp55 uint32_t AdapterStub::GetMtuSize(const std::string &target) in GetMtuSize() argument
57 (void)target; in GetMtuSize()
66 uint32_t AdapterStub::GetTimeout(const std::string &target) in GetTimeout() argument
68 (void)target; in GetTimeout()
/third_party/ffmpeg/libavcodec/
H A Dmvcdec.c90 #define PIX16(target, true, false) \ in decode_mvc1()
91 i = (mask & target) ? true : false; \ in decode_mvc1()
119 #define PIX32(target, true, false) \
120 AV_WN32A(dst, (mask & target) ? v[true] : v[false]); \
/third_party/ffmpeg/libavformat/
H A Dimg2enc.c43 char target[4][1024]; member
181 av_strlcpy(img->target[i], filename, sizeof(img->target[i])); in write_packet()
224 int ret = ff_rename(img->tmp[i], img->target[i], s); in write_packet()
/third_party/gn/src/gn/
H A Dninja_action_target_writer.cc17 #include "gn/target.h"
19 NinjaActionTargetWriter::NinjaActionTargetWriter(const Target* target, in NinjaActionTargetWriter() argument
21 : NinjaTargetWriter(target, out), in NinjaActionTargetWriter()
23 target->settings()->build_settings()->build_dir(), in NinjaActionTargetWriter()
24 target->settings()->build_settings()->root_path_utf8(), in NinjaActionTargetWriter()
94 // As in WriteSourceRules, we want to force this target to rebuild any in Run()
/third_party/icu/icu4c/source/i18n/unicode/
H A Dtblcoll.h268 * @param target the string that is to be compared with the source string.
271 * than target; UCOL_EQUAL if source is equal to target; UCOL_LESS if source is less
272 * than target
276 const UnicodeString& target,
283 * @param target the string that is to be compared with the source string.
287 * length) is greater than target; UCOL_EQUAL if source (up to specified
288 * length) is equal to target; UCOL_LESS if source (up to the specified
289 * length) is less than target.
293 const UnicodeString& target,
[all...]
/third_party/icu/icu4c/source/common/
H A Dustr_wcs.cpp294 UChar* target = NULL; in _strFromWCS() local
434 pTarget = target= dest; in _strFromWCS()
451 count+= pTarget - target; in _strFromWCS()
454 target = uStack; in _strFromWCS()

Completed in 79 milliseconds

1...<<71727374757677787980>>...196