| /third_party/python/Lib/test/ |
| H A D | test_logging.py | 654 remover = threading.Thread(target=remove_loop, args=(fn, del_count)) 738 target=lock_holder_thread_fn, 861 self._thread = t = threading.Thread(target=self.serve_forever, 915 self._thread = t = threading.Thread(target=self.serve_forever, 1121 # The memory handler flushes to its target handler based on specific 1189 thread = threading.Thread(target=self.removeTarget) 1193 target = MockRaceConditionHandler(self.mem_hdlr) 1195 self.mem_hdlr.setTarget(target) 1202 for thread in target.threads: 2893 "target" [all...] |
| H A D | test_itertools.py | 963 target = [tuple([arg[i] if i < len(arg) else None for arg in args]) 965 self.assertEqual(list(zip_longest(*args)), target) 966 self.assertEqual(list(zip_longest(*args, **{})), target) 967 target = [tuple((e is None and 'X' or e) for e in t) for t in target] # Replace None fills with 'X' 968 self.assertEqual(list(zip_longest(*args, **dict(fillvalue='X'))), target) 1581 thread = threading.Thread(target=next, args=[a])
|
| H A D | test_mailbox.py | 44 def _delete_recursively(self, target): 46 if os.path.isdir(target): 47 os_helper.rmtree(target) 48 elif os.path.exists(target): 49 os_helper.unlink(target) 1712 target = class2(source) 1716 self.assertNotIn(attr, target.__dict__,
|
| /foundation/arkui/ace_engine/test/unittest/core/pattern/overlay/ |
| H A D | overlay_test_ng.cpp | 226 * @tc.steps: step1. create target node and popupInfo. in HWTEST_F() 237 popupInfo.target = targetNode; in HWTEST_F() 271 * @tc.steps: step1. create target node. in HWTEST_F() 282 * @tc.steps: step2. create target node. in HWTEST_F() 324 * @tc.steps: step1. create target node. in HWTEST_F() 340 * @tc.steps: step2. create target node. in HWTEST_F() 398 * @tc.steps: step1. create target node. in HWTEST_F() 451 * @tc.steps: step1. create target node. in HWTEST_F() 514 * @tc.steps: step1. create target node. in HWTEST_F() 579 * @tc.steps: step1. create target nod in HWTEST_F() [all...] |
| /third_party/mesa3d/src/gallium/auxiliary/nir/ |
| H A D | nir_to_tgsi.c | 974 enum tgsi_texture_type target = tgsi_texture_type_from_sampler_dim(glsl_get_sampler_dim(stype), in ntt_setup_uniforms() local 980 target, ret_type, ret_type, ret_type, ret_type); in ntt_setup_uniforms() 2049 enum tgsi_texture_type target = tgsi_texture_type_from_sampler_dim(dim, is_array, false); in ntt_emit_image_load_store() local 2135 insn->tex_target = target; in ntt_emit_image_load_store() 2608 enum tgsi_texture_type target = tgsi_texture_type_from_sampler_dim(instr->sampler_dim, instr->is_array, instr->is_shadow); in ntt_emit_texture() local 2697 if (instr->op == nir_texop_tg4 && target != TGSI_TEXTURE_SHADOWCUBE_ARRAY) { in ntt_emit_texture() 2749 insn->tex_target = target; in ntt_emit_texture()
|
| /third_party/vk-gl-cts/external/openglcts/modules/gl/ |
| H A D | gl4cDirectStateAccessTests.hpp | 871 void prepare(const glw::GLenum target); 886 * Check that CreateQueries generates INVALID_ENUM error if target is not 990 * Begin query for every target. 1011 * Check that value of parameter QUERY_TARGET is equal to target. 1016 * - is equal to 1 if target is SAMPLES_PASSED; or 1017 * - is equal to 2 if target is PRIMITIVES_GENERATED or 1019 * - is positive if target is TIME_ELAPSED. 2307 * MAX_3D_TEXTURE_SIZE for TEXTURE_2D target 2309 * MAX_CUBE_MAP_TEXTURE_SIZE for TEXTURE_CUBE_MAP target. 2361 * For non multisample target, clea [all...] |
| /third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/ |
| H A D | TextureVk.cpp | 636 gl::TextureTarget target = index.getTarget(); in copySubTexture() local 639 *mState.getImageDesc(target, dstLevelGL.get()).format.info; in copySubTexture() 1589 // (!selfOwned) implies that the texture is a target sibling. in setImageHelper() 2490 // render target as entirely transient. in initSingleLayerRenderTargets() 2518 // Create the layered render target. Note that multisampled render to texture is not in getMultiLayerRenderTarget() 3202 gl::TextureTarget target, in getTexImage() 3226 switch (target) in getTexImage() 3233 if (gl::IsCubeMapFaceTarget(target)) in getTexImage() 3235 layer = static_cast<uint32_t>(gl::CubeMapTextureTargetToFaceIndex(target)); in getTexImage() 3247 gl::TextureTarget target, in getCompressedTexImage() 3199 getTexImage(const gl::Context *context, const gl::PixelPackState &packState, gl::Buffer *packBuffer, gl::TextureTarget target, GLint level, GLenum format, GLenum type, void *pixels) getTexImage() argument 3244 getCompressedTexImage(const gl::Context *context, const gl::PixelPackState &packState, gl::Buffer *packBuffer, gl::TextureTarget target, GLint level, void *pixels) getCompressedTexImage() argument [all...] |
| /foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/rich_editor/ |
| H A D | rich_editor_pattern.h | 493 void CopyTextSpanStyle(RefPtr<SpanNode>& source, RefPtr<SpanNode>& target, bool needLeadingMargin = false); 494 void CopyTextSpanFontStyle(RefPtr<SpanNode>& source, RefPtr<SpanNode>& target); 495 void CopyTextSpanLineStyle(RefPtr<SpanNode>& source, RefPtr<SpanNode>& target, bool needLeadingMargin = false); 496 void CopyGestureOption(const RefPtr<SpanNode>& source, RefPtr<SpanNode>& target);
|
| /foundation/barrierfree/accessibility/interfaces/kits/napi/accessibility_config/src/ |
| H A D | napi_accessibility_config.cpp | 693 std::string target = ""; in SetConfigParseData() local 694 ret = ParseString(env, target, parameters[PARAM0]) && target.length() > 0; in SetConfigParseData() 695 callbackInfo->stringConfig_ = target; in SetConfigParseData()
|
| /foundation/arkui/ace_engine_lite/frameworks/src/core/components/ |
| H A D | component.cpp | 1795 // find the target node's pre one in RemoveChild() 1895 Component *target = (parent == nullptr) ? this : parent; in HandleChildrenChange() local 1896 target->GetConstrainedParam(parentParam); in HandleChildrenChange() 1898 target->LayoutChildren(); in HandleChildrenChange() 1899 target->Invalidate(); in HandleChildrenChange()
|
| /foundation/graphic/graphic_2d/rosen/modules/render_service_client/test/unittest/animation/ |
| H A D | rs_animation_supplement_test.cpp | 54 void StartInner(const std::shared_ptr<RSNode>& target) in StartInner() argument 56 RSAnimation::StartInner(target); in StartInner() 171 void StartInner(const std::shared_ptr<RSNode>& target) in StartInner() argument 173 RSAnimation::StartInner(target); in StartInner()
|
| /foundation/multimedia/media_lite/services/player_lite/impl/player_control/player/ |
| H A D | liteplayer.cpp | 85 #define CHECK_FAILED_RETURN(value, target, ret, printfString) \ 87 if ((value) != (target)) { \ 93 #define CHECK_FAILED_PRINT(value, target, printfString) \ 95 if ((value) != (target)) { \
|
| /foundation/communication/dsoftbus/tests/core/transmission/trans_channel/common/ |
| H A D | trans_lane_pending_test.cpp | 654 SessionParam target; in HWTEST_F() local 656 int32_t ret = CopyAsyncReqItemSessionParamIds(param, &target); in HWTEST_F() 711 SessionParam target; in HWTEST_F() local 713 int32_t ret = CopyAsyncReqItemSessionParamIds(param, &target); in HWTEST_F()
|
| /foundation/communication/dsoftbus/core/bus_center/lnn/net_builder/src/ |
| H A D | lnn_connection_fsm.c | 1715 LnnConnectionFsm *LnnCreateConnectionFsm(const ConnectionAddr *target, const char *pkgName, in LnnCreateConnectionFsm() argument 1720 if (target == NULL) { in LnnCreateConnectionFsm() 1721 LNN_LOGE(LNN_BUILDER, "connection target is null"); in LnnCreateConnectionFsm() 1736 connFsm->connInfo.addr = *target; in LnnCreateConnectionFsm() 1746 connFsm->id, LnnPrintConnectionAddr(target), isNeedConnect); in LnnCreateConnectionFsm()
|
| /test/testfwk/developer_test/src/core/driver/ |
| H A D | drivers.py | 452 def is_exist_target_in_device(self, path, target): 454 command = '\"ls -l %s | grep %s\"' % (path, target) 456 command = "ls -l %s | grep %s" % (path, target) 460 if stdout_info != "" and stdout_info.find(target) != -1: 624 self.config.device.connector_command("target mount") 1082 self.config.device.connector_command("target mount") 1231 self.config.device.connector_command("target mount")
|
| /third_party/ffmpeg/libavformat/ |
| H A D | http.c | 436 /* Restart the authentication process with the new target, which in http_open_cnx() 1690 uint64_t target = h->is_streamed ? 0 : s->off; in http_read_stream() local 1710 seek_ret = http_seek_internal(h, target, SEEK_SET, 1); in http_read_stream() 1711 if (seek_ret >= 0 && seek_ret != target) { in http_read_stream() 1712 av_log(h, AV_LOG_ERROR, "Failed to reconnect at %"PRIu64".\n", target); in http_read_stream()
|
| /third_party/mesa3d/src/compiler/nir/ |
| H A D | nir_print.c | 1405 instr->target ? instr->target->index : -1); in print_jump_instr() 1410 instr->target ? instr->target->index : -1); in print_jump_instr()
|
| /third_party/mesa3d/src/gallium/drivers/tegra/ |
| H A D | tegra_context.c | 679 struct pipe_stream_output_target *target) in tegra_stream_output_target_destroy() 683 context->gpu->stream_output_target_destroy(context->gpu, target); in tegra_stream_output_target_destroy() 938 if (presource->target == PIPE_BUFFER) { in tegra_transfer_map() 974 if (ptransfer->resource->target == PIPE_BUFFER) in tegra_transfer_unmap() 678 tegra_stream_output_target_destroy(struct pipe_context *pcontext, struct pipe_stream_output_target *target) tegra_stream_output_target_destroy() argument
|
| /third_party/node/src/crypto/ |
| H A D | crypto_context.cc | 332 void SecureContext::Initialize(Environment* env, Local<Object> target) { in Initialize() argument 335 target, in Initialize() 341 context, target, "getRootCertificates", GetRootCertificates); in Initialize() 344 target, in Initialize()
|
| /third_party/node/deps/v8/tools/gcmole/ |
| H A D | gcmole.cc | 1090 clang::CXXMethodDecl* target = method->getDevirtualizedMethod( in VisitCallExpr() 1092 if (target != NULL) { in VisitCallExpr() 1093 if (IsKnownToCauseGC(ctx_, target)) { in VisitCallExpr() 1096 clang::FullSourceLoc(call->getExprLoc(), sm_), target); in VisitCallExpr()
|
| /third_party/lz4/lib/ |
| H A D | lz4hc.c | 126 U32 const target = (U32)(ip - prefixPtr) + prefixIdx; in LZ4HC_Insert() local 129 assert(target >= prefixIdx); in LZ4HC_Insert() 131 while (idx < target) { in LZ4HC_Insert() 140 hc4->nextToUpdate = target; in LZ4HC_Insert()
|
| /third_party/node/deps/v8/src/compiler/ |
| H A D | js-operator.h | 149 // Defines the arity (parameters plus the target and new target) and the 228 // Defines the arity (parameters plus the target and receiver) and the call 1355 V(Target, target, 0, Object) \ 1463 V(Target, target, 0, Object) \ 1497 V(Target, target, 0, Object) \ 1529 V(Target, target, 0, Object) \
|
| /third_party/node/deps/v8/src/builtins/ |
| H A D | builtins-object-gen.cc | 435 TNode<Object> target = args.GetOptionalArgumentValue(0); in TF_BUILTIN() local 437 // 1. Let to be ? ToObject(target). in TF_BUILTIN() 438 TNode<JSReceiver> to = ToObject_Inline(context, target); in TF_BUILTIN() 562 auto target = Parameter<Object>(Descriptor::kJSTarget); in TF_BUILTIN() local 577 Return(CallBuiltin(Builtin::kObjectPrototypeHasOwnProperty, context, target, in TF_BUILTIN()
|
| /third_party/node/deps/v8/src/codegen/ppc/ |
| H A D | assembler-ppc.h | 252 // Return the address in the constant pool of the code target address used by 258 // Read/Modify the code target address in the branch/call instruction at pc. 262 Address pc, Address constant_pool, Address target, 265 // Read/Modify the code target address in the branch/call instruction at pc. 269 Address pc, Address constant_pool, Tagged_t target, 280 Address instruction_payload, Code code, Address target); 282 // Get the size of the special target encoded at 'instruction_payload'. 288 Address pc, Address target, 296 // a target is resolved and written. 634 // Aligns code to something that's optimal for a jump target fo [all...] |
| /third_party/node/deps/v8/src/diagnostics/ |
| H A D | gdb-jit.cc | 528 #error Unsupported target architecture. 643 #error Unsupported target architecture. 672 #error Unsupported target architecture. 1103 #error Unsupported target architecture.
|