Home
last modified time | relevance | path

Searched refs:target (Results 3776 - 3800 of 4064) sorted by relevance

1...<<151152153154155156157158159160>>...163

/third_party/node/tools/gyp/pylib/gyp/generator/
H A Dmsvs.py32 # silently skip building the target causing hard to track down errors.
503 p: the target project
504 spec: the target project dict
533 p: the target project
534 spec: the target project dict
620 p: the target project
677 # Gather stuff needed to emit all: target.
688 # Only use one target from each rule as the dependency for
696 # Write out all: target, including mkdir for each output directory.
971 spec: The target dictionar
[all...]
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/
H A Dmsvs.py32 # silently skip building the target causing hard to track down errors.
501 p: the target project
502 spec: the target project dict
531 p: the target project
532 spec: the target project dict
618 p: the target project
675 # Gather stuff needed to emit all: target.
686 # Only use one target from each rule as the dependency for
694 # Write out all: target, including mkdir for each output directory.
969 spec: The target dictionar
[all...]
/third_party/python/Lib/test/test_asyncio/
H A Dtest_unix_events.py1184 def patch(target, wrapper):
1185 return mock.patch(target, wraps=wrapper,
1737 th = threading.Thread(target=f)
/third_party/python/Lib/
H A Dinspect.py3300 target = args.object
3301 mod_name, has_attrs, attrs = target.partition(":")
3322 print('Target: {}'.format(target))
/third_party/vk-gl-cts/external/openglcts/modules/common/
H A DglcPackedDepthStencilTests.cpp1260 GLenum target = coreTexTargets[i]; in iterate() local
1263 gl.getTexLevelParameterfv(target, 0, GL_TEXTURE_STENCIL_SIZE, &fp); in iterate()
1272 gl.getTexLevelParameteriv(target, 0, GL_TEXTURE_STENCIL_SIZE, &ip); in iterate()
/third_party/skia/third_party/externals/angle2/src/tests/gl_tests/
H A DCopyTextureTest.cpp396 void initializeSourceTexture(GLenum target, in initializeSourceTexture() argument
415 glBindTexture(target, mTextures[0]); in initializeSourceTexture()
416 glTexImage2D(target, 0, sourceFormat, 2, 2, 0, sourceFormat, GL_UNSIGNED_BYTE, in initializeSourceTexture()
845 // Invalid enum for a completely invalid target in TEST_P()
850 // Invalid value for a valid target enum but is not valid for the destination texture in TEST_P()
/third_party/skia/third_party/externals/swiftshader/src/Pipeline/
H A DSpirvShader.cpp186 uint32_t target = insn.word(i); in robustBufferAccess() local
187 decorations[target].Apply(groupDecorations); in robustBufferAccess()
188 descriptorDecorations[target].Apply(descriptorGroupDecorations); in robustBufferAccess()
H A DSpirvShaderDebugger.cpp752 Type *target = nullptr; // Class, struct or function.
756 uint32_t sizeInBytes() const override { return target->sizeInBytes(); }
761 return target->value(ptr, interleaved);
1671 tpl->target = get(debug::Type::ID(insn.word(5)));
/third_party/skia/third_party/externals/tint/src/resolver/
H A Dintrinsic_test.cc2054 auto* target = call_sem->Target(); in TEST_P() local
2055 ASSERT_NE(target, nullptr); in TEST_P()
2057 auto got = resolver::to_str(param.function, target->Parameters()); in TEST_P()
/third_party/python/Lib/test/
H A Dtest_ast.py811 NAMED_EXPR = enum.auto() # <target> := <expr1>
1888 target = tree.body[0].targets[0]
1890 ast.copy_location(new_target, target)
2102 self._check_content(s, for_loop.target, 'x, y')
2247 self._check_content(s, cmp.elt.generators[0].target, 'x, y')
H A Dtest_os.py315 symlink(src='target', dst=os_helper.TESTFN,
2718 'Create a "directory" link to a non-existent target'
2722 target = r'c:\\target does not exist.29r3c740'
2723 assert not os.path.exists(target)
2725 os.symlink(target, linkname, target_is_dir)
2742 def check_stat(self, link, target):
2743 self.assertEqual(os.stat(link), os.stat(target))
2747 self.assertEqual(os.stat(bytes_link), os.stat(target))
2797 target
[all...]
/third_party/vk-gl-cts/external/vulkancts/scripts/
H A Dgen_framework_sc.py3007 for target in vkTargets:
3008 execute([pythonExecutable, "../scripts/genvk.py", "-o", "../include/vulkan", target])
3023 for target in videoTargets:
3024 execute([pythonExecutable, "../scripts/genvk.py", "-registry", "video.xml", "-o", videoDir, target])
/third_party/vk-gl-cts/external/openglcts/modules/gles3/
H A Des3cCopyTexImageConversionsTests.cpp4748 const char* getTargetName(GLenum target) const;
4749 GLenum getGeneralTargetForDetailedTarget(GLenum target);
4754 void destroyGLObject(GLenum target, GLuint object_id);
5498 /** Retrieves a string representing name of target passed by argument.
5500 * @param target GLES target to retrieve a string for.
5505 const char* TestBase::getTargetName(GLenum target) const
5509 switch (target)
5546 /** Returns a general texture target for cube-map texture targets or
5547 * user-specified target otherwis
[all...]
/third_party/ffmpeg/
H A Dconfigure365 --target-os=OS compiler targets OS [$target_os]
366 --target-exec=CMD command to run executables on target
367 --target-path=DIR path to view of build directory on target
368 --target-samples=DIR path to samples directory on target
477 Cannot be combined with --target-exec
4413 die "Must specify target arch (--arch) and OS (--target
[all...]
/third_party/node/deps/v8/src/wasm/
H A Dfunction-body-decoder-impl.h3004 const uint32_t target = iterator.next(); in DECODE() local
3005 if (!VALIDATE(target < control_depth())) { in DECODE()
3006 this->DecodeError(pos, "invalid branch depth: %u", target); in DECODE()
3009 // Avoid redundant branch target checks. in DECODE()
3010 if (br_targets[target]) continue; in DECODE()
3011 br_targets[target] = true; in DECODE()
3015 arity = control_at(target)->br_merge()->arity; in DECODE()
3016 } else if (!VALIDATE(control_at(target)->br_merge()->arity == arity)) { in DECODE()
3022 if (!VALIDATE(TypeCheckBranch<false>(control_at(target), 1))) return 0; in DECODE()
4605 "br_on_cast must target in DecodeGCOpcode()
[all...]
/third_party/vk-gl-cts/external/openglcts/modules/gles31/
H A Des31cComputeShaderTests.cpp2247 bool CheckIndexed(GLenum target, const GLint* min_values) in CheckIndexed() argument
2254 glGetIntegeri_v(target, c, &i); in CheckIndexed()
2264 glGetInteger64i_v(target, c, &i64); in CheckIndexed()
2277 bool Check(GLenum target, const GLint min_value) in Check() argument
2284 glGetIntegerv(target, &i); in Check()
2291 glGetInteger64v(target, &i64); in Check()
2298 glGetFloatv(target, &f); in Check()
2305 glGetBooleanv(target, &b); in Check()
4237 " command if target regions of memory do not overlap."; in Purpose()
4672 /* validate render target */ in Run()
[all...]
/third_party/skia/third_party/externals/swiftshader/src/Reactor/
H A DSubzeroReactor.cpp486 const SectionHeader *target = elfSection(elfHeader, relocationTable.sh_info); in relocateSymbol() local
510 const SectionHeader *target = elfSection(elfHeader, symbol.st_shndx); in relocateSymbol()
511 symbolValue = reinterpret_cast<void *>((intptr_t)elfHeader + symbol.st_value + target->sh_offset); in relocateSymbol()
519 intptr_t address = (intptr_t)elfHeader + target->sh_offset; in relocateSymbol()
571 const SectionHeader *target = elfSection(elfHeader, relocationTable.sh_info);
595 const SectionHeader *target = elfSection(elfHeader, symbol.st_shndx);
596 symbolValue = reinterpret_cast<void *>((intptr_t)elfHeader + symbol.st_value + target->sh_offset);
604 intptr_t address = (intptr_t)elfHeader + target->sh_offset;
/third_party/libunwind/libunwind/doc/
H A Dlibunwind-ia64.tex30 target-platform-specific symbols.
/third_party/mesa3d/src/amd/llvm/
H A Dac_llvm_build.h336 unsigned target; member
/third_party/mesa3d/src/gallium/frontends/vdpau/
H A Dmixer.c351 res_tmpl.target = PIPE_TEXTURE_2D; in vlVdpVideoMixerRender()
/third_party/ntfs-3g/include/ntfs-3g/
H A Dlayout.h2703 ntfschar target[0]; member
/third_party/mesa3d/src/gallium/drivers/nouveau/nv50/
H A Dnv50_program.c341 info->target = chipset; in nv50_program_translate()
H A Dnv50_shader_state.c191 fb->cbufs[0]->texture->target, in nv50_fragprog_validate()
/third_party/libphonenumber/cpp/src/phonenumbers/
H A Dphonenumber.pb.h170 ::PROTOBUF_NAMESPACE_ID::uint8* target, ::PROTOBUF_NAMESPACE_ID::io::EpsCopyOutputStream* stream) const final;
/third_party/node/deps/v8/src/compiler/backend/
H A Dinstruction-selector.h393 // Returns the features supported on the target platform.
618 void VisitGoto(BasicBlock* target);

Completed in 75 milliseconds

1...<<151152153154155156157158159160>>...163