| /third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/ |
| D | TargetRegistry.h | 1 //===- Support/TargetRegistry.h - Target Registration -----------*- C++ -*-===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 10 // the appropriate target specific classes (TargetMachine, AsmPrinter, etc.) 13 // Target specific class implementations should register themselves using the 16 //===----------------------------------------------------------------------===// 21 #include "llvm-c/DisassemblerTypes.h" 66 /// target, suitable for compiling with a native assembler. 68 /// \param InstPrint - If given, the instruction printer to use. If not given 72 /// \param CE - If given, a code emitter to use to show the instruction [all …]
|
| /third_party/curl/packages/vms/ |
| D | gnv_link_curl.com | 19 $! SPDX-License-Identifier: ISC 40 $! Extended parsing option starts with VMS 7.3-1. 47 $ min_ver = f$element(0, "-", min_ver_patch) 48 $ patch = f$element(1, "-", min_ver_patch) 49 $ if patch .eqs. "-" then patch = "" 68 $ set def [--] 72 $!-------------------------- 84 $!------------------------------------------- 96 $!-------------------------------------------------------- 179 $ ver_patchltr_c = f$extract(ver_patch_len - 1, 1, ver_patch) [all …]
|
| /third_party/rust/crates/nix/ |
| D | .cirrus.yml | 8 RUSTFLAGS: -D warnings 9 RUSTDOCFLAGS: -D warnings 18 - . $HOME/.cargo/env || true 19 - $TOOL +$TOOLCHAIN -Vv 20 - rustc +$TOOLCHAIN -Vv 21 - $TOOL +$TOOLCHAIN $BUILD $ZFLAGS --target $TARGET --all-targets 22 - $TOOL +$TOOLCHAIN doc $ZFLAGS --no-deps --target $TARGET 23 - $TOOL +$TOOLCHAIN clippy $ZFLAGS --target $TARGET --all-targets -- -D warnings 24 - if [ -z "$NOHACK" ]; then mkdir -p $HOME/.cargo/bin; export PATH=$HOME/.cargo/bin:$PATH; fi 25 …- if [ -z "$NOHACK" ]; then curl -LsSf https://github.com/taiki-e/cargo-hack/releases/latest/downl… [all …]
|
| /third_party/gn/src/gn/ |
| D | rust_project_writer_helpers_unittest.cc | 2 // Use of this source code is governed by a BSD-style license that can be 34 Crate target = Crate(SourceFile("/root/hare/lib.rs"), in TEST_F() local 36 target.AddDependency(0, "tortoise"); in TEST_F() 37 target.AddConfigItem("unix"); in TEST_F() 38 target.AddConfigItem("feature=\"test\""); in TEST_F() 41 crates.push_back(target); in TEST_F() 99 setup.build_settings()->SetRootPath(UTF8ToFilePath("/root")); in TEST_F() 124 Target target(setup.settings(), Label(SourceDir("//foo/"), "bar")); in TEST_F() local 125 target.set_output_type(Target::RUST_LIBRARY); in TEST_F() 126 target.visibility().SetPublic(); in TEST_F() [all …]
|
| D | substitution_writer.h | 2 // Use of this source code is governed by a BSD-style license that can be 21 class Target; variable 31 // - Source substitutions: These are used to compute action_foreach 36 // - Target substitutions: These are specific to the target+tool combination 40 // - Compiler substitutions: These are used to compute compiler outputs. 42 // parts of the source file) as well as the target substitutions. 44 // - Linker substitutions: These are used to compute linker outputs. It 45 // includes the target substitutions. 48 // cflags, ldflags, libraries, etc. These are written by the ninja target 51 // The methods which take a target as an argument can accept null target [all …]
|
| D | resolved_target_data.h | 2 // Use of this source code is governed by a BSD-style license that can be 15 #include "gn/target.h" 19 // A class used to compute target-specific data by collecting information 36 // data. For all methods, the input Target instance passed as argument 37 // must have been fully resolved (meaning that Target::OnResolved() 38 // must have been called and completed). Input target pointers are 45 // Return the public/private/data/dependencies of a given target 47 const ResolvedTargetDeps& GetTargetDeps(const Target* target) const { in GetTargetDeps() argument 48 return GetTargetInfo(target)->deps; in GetTargetDeps() 51 // Return the data dependencies of a given target. [all …]
|
| D | runtime_deps.cc | 2 // Use of this source code is governed by a BSD-style license that can be 24 #include "gn/target.h" 29 using RuntimeDepsVector = std::vector<std::pair<OutputFile, const Target*>>; 34 const Target* source, in AddIfNew() 37 if (found_file->find(output_file) != found_file->end()) in AddIfNew() 39 deps->push_back(std::make_pair(output_file, source)); in AddIfNew() 44 const Target* source, in AddIfNew() 48 RebasePath(str, source->settings()->build_settings()->build_dir(), in AddIfNew() 49 source->settings()->build_settings()->root_path_utf8())); in AddIfNew() 54 // might be listed by more than one target, the set of targets and output files [all …]
|
| D | command_refs.cc | 2 // Use of this source code is governed by a BSD-style license that can be 23 #include "gn/target.h" 30 using TargetVector = std::vector<const Target*>; 33 using DepMap = std::multimap<const Target*, const Target*>; 37 for (auto* target : setup->builder().GetAllResolvedTargets()) { in FillDepMap() local 38 for (const auto& dep_pair : target->GetDeps(Target::DEPS_ALL)) in FillDepMap() 39 dep_map->insert(std::make_pair(dep_pair.ptr, target)); in FillDepMap() 45 const Target* target, 49 // Prints the target and its dependencies in tree form. If the set is non-null, 56 const Target* target, in RecursivePrintTarget() argument [all …]
|
| D | resolved_target_data.cc | 2 // Use of this source code is governed by a BSD-style license that can be 10 const Target* target) const { in GetTargetInfo() 11 auto ret = targets_.PushBackWithIndex(target); in GetTargetInfo() 13 infos_.push_back(std::make_unique<TargetInfo>(target)); in GetTargetInfo() 22 for (ConfigValuesIterator iter(info->target); !iter.done(); iter.Next()) { in ComputeLibInfo() 27 for (const Target* dep : info->deps.linked_deps()) { in ComputeLibInfo() 28 if (!dep->IsFinal() || dep->output_type() == Target::STATIC_LIBRARY) { in ComputeLibInfo() 30 all_lib_dirs.Append(dep_info->lib_dirs); in ComputeLibInfo() 31 all_libs.Append(dep_info->libs); in ComputeLibInfo() 35 info->lib_dirs = all_lib_dirs.release(); in ComputeLibInfo() [all …]
|
| D | config_values_extractors_unittest.cc | 2 // Use of this source code is governed by a BSD-style license that can be 9 #include "gn/target.h" 33 // Construct a chain of dependencies: target -> dep1 -> dep2 in TEST() 40 dep2_all.own_values().cflags().push_back("--dep2-all"); in TEST() 41 dep2_all.own_values().cflags().push_back("--dep2-all"); in TEST() 48 dep2_direct.own_values().cflags().push_back("--dep2-direct"); in TEST() 53 Target dep2(setup.settings(), Label(SourceDir("//dep2/"), "dep2")); in TEST() 54 dep2.set_output_type(Target::SOURCE_SET); in TEST() 64 dep1_all_sub.own_values().cflags().push_back("--dep1-all-sub"); in TEST() 69 dep1_all.own_values().cflags().push_back("--dep1-all"); in TEST() [all …]
|
| D | header_checker.h | 2 // Use of this source code is governed by a BSD-style license that can be 26 class Target; variable 36 ChainLink() : target(nullptr), is_public(false) {} in ChainLink() 37 ChainLink(const Target* t, bool p) : target(t), is_public(p) {} in ChainLink() 39 const Target* target; member 41 // True when the dependency on this target is public. 46 return target == other.target && is_public == other.is_public; 55 const std::vector<const Target*>& targets, 67 bool Run(const std::vector<const Target*>& to_check, 86 TargetInfo() : target(nullptr), is_public(false), is_generated(false) {} in TargetInfo() [all …]
|
| /third_party/node/src/ |
| D | node_constants.cc | 22 #include "env-inl.h" 25 #include "util-inl.h" 71 void DefineErrnoConstants(Local<Object> target) { in DefineErrnoConstants() argument 73 NODE_DEFINE_CONSTANT(target, E2BIG); in DefineErrnoConstants() 77 NODE_DEFINE_CONSTANT(target, EACCES); in DefineErrnoConstants() 81 NODE_DEFINE_CONSTANT(target, EADDRINUSE); in DefineErrnoConstants() 85 NODE_DEFINE_CONSTANT(target, EADDRNOTAVAIL); in DefineErrnoConstants() 89 NODE_DEFINE_CONSTANT(target, EAFNOSUPPORT); in DefineErrnoConstants() 93 NODE_DEFINE_CONSTANT(target, EAGAIN); in DefineErrnoConstants() 97 NODE_DEFINE_CONSTANT(target, EALREADY); in DefineErrnoConstants() [all …]
|
| /third_party/icu/icu4c/source/data/misc/ |
| D | units.txt | 3 // Generated using tools/cldr/cldr-to-icu/build-icu-data.xml 7 100-kilometer{ 9 target{"meter"} 13 target{"square-meter"} 17 target{"ampere"} 19 arc-minute{ 21 target{"revolution"} 23 arc-second{ 25 target{"revolution"} 27 astronomical-unit{ [all …]
|
| /third_party/skia/third_party/externals/icu/source/data/misc/ |
| D | units.txt | 3 // Generated using tools/cldr/cldr-to-icu/build-icu-data.xml 7 100-kilometer{ 9 target{"meter"} 13 target{"square-meter"} 17 target{"ampere"} 19 arc-minute{ 21 target{"revolution"} 23 arc-second{ 25 target{"revolution"} 27 astronomical-unit{ [all …]
|
| /third_party/vk-gl-cts/external/openglcts/modules/gl/ |
| D | gl4cSparseTextureTests.cpp | 1 /*------------------------------------------------------------------------- 3 * ----------------------------- 11 * http://www.apache.org/licenses/LICENSE-2.0 22 */ /*-------------------------------------------------------------------*/ 28 */ /*-------------------------------------------------------------------*/ 54 * @param target Target for which texture is binded 61 …ureUtils::verifyQueryError(std::stringstream& log, const char* funcName, GLint target, GLint pname, in verifyQueryError() argument 67 << ", target: " << target << ", pname: " << pname << ", expected: " << expectedError in verifyQueryError() 68 << ", returned: " << error << "] - "; in verifyQueryError() 90 << ", expectedError: " << expectedError << ", returnedError: " << error << "] - "; in verifyError() [all …]
|
| /third_party/skia/third_party/externals/icu/source/common/ |
| D | ucnvlat1.cpp | 5 * Copyright (C) 2000-2015, International Business Machines 9 * encoding: UTF-8 31 /* ISO 8859-1 --------------------------------------------------------------- */ 33 /* This is a table-less and callback-less version of ucnv_MBCSSingleToBMPWithOffsets(). */ 39 UChar *target; in _Latin1ToUnicodeWithOffsets() local 46 source=(const uint8_t *)pArgs->source; in _Latin1ToUnicodeWithOffsets() 47 target=pArgs->target; in _Latin1ToUnicodeWithOffsets() 48 targetCapacity=(int32_t)(pArgs->targetLimit-pArgs->target); in _Latin1ToUnicodeWithOffsets() 49 offsets=pArgs->offsets; in _Latin1ToUnicodeWithOffsets() 57 length=(int32_t)((const uint8_t *)pArgs->sourceLimit-source); in _Latin1ToUnicodeWithOffsets() [all …]
|
| /third_party/node/deps/icu-small/source/common/ |
| D | ucnvlat1.cpp | 5 * Copyright (C) 2000-2015, International Business Machines 9 * encoding: UTF-8 31 /* ISO 8859-1 --------------------------------------------------------------- */ 33 /* This is a table-less and callback-less version of ucnv_MBCSSingleToBMPWithOffsets(). */ 39 char16_t *target; in _Latin1ToUnicodeWithOffsets() local 46 source=(const uint8_t *)pArgs->source; in _Latin1ToUnicodeWithOffsets() 47 target=pArgs->target; in _Latin1ToUnicodeWithOffsets() 48 targetCapacity=(int32_t)(pArgs->targetLimit-pArgs->target); in _Latin1ToUnicodeWithOffsets() 49 offsets=pArgs->offsets; in _Latin1ToUnicodeWithOffsets() 57 length=(int32_t)((const uint8_t *)pArgs->sourceLimit-source); in _Latin1ToUnicodeWithOffsets() [all …]
|
| /third_party/icu/icu4c/source/common/ |
| D | ucnvlat1.cpp | 5 * Copyright (C) 2000-2015, International Business Machines 9 * encoding: UTF-8 31 /* ISO 8859-1 --------------------------------------------------------------- */ 33 /* This is a table-less and callback-less version of ucnv_MBCSSingleToBMPWithOffsets(). */ 39 UChar *target; in _Latin1ToUnicodeWithOffsets() local 46 source=(const uint8_t *)pArgs->source; in _Latin1ToUnicodeWithOffsets() 47 target=pArgs->target; in _Latin1ToUnicodeWithOffsets() 48 targetCapacity=(int32_t)(pArgs->targetLimit-pArgs->target); in _Latin1ToUnicodeWithOffsets() 49 offsets=pArgs->offsets; in _Latin1ToUnicodeWithOffsets() 57 length=(int32_t)((const uint8_t *)pArgs->sourceLimit-source); in _Latin1ToUnicodeWithOffsets() [all …]
|
| /third_party/mesa3d/src/mesa/main/ |
| D | arbprogram.c | 2 * Mesa 3-D graphics library 4 * Copyright (C) 1999-2007 Brian Paul All Rights Reserved. 49 flush_vertices_for_program_constants(struct gl_context *ctx, GLenum target) in flush_vertices_for_program_constants() argument 53 if (target == GL_FRAGMENT_PROGRAM_ARB) { in flush_vertices_for_program_constants() 55 ctx->DriverFlags.NewShaderConstants[MESA_SHADER_FRAGMENT]; in flush_vertices_for_program_constants() 58 ctx->DriverFlags.NewShaderConstants[MESA_SHADER_VERTEX]; in flush_vertices_for_program_constants() 62 ctx->NewDriverState |= new_driver_state; in flush_vertices_for_program_constants() 66 lookup_or_create_program(GLuint id, GLenum target, const char* caller) in lookup_or_create_program() argument 73 if (target == GL_VERTEX_PROGRAM_ARB) in lookup_or_create_program() 74 newProg = ctx->Shared->DefaultVertexProgram; in lookup_or_create_program() [all …]
|
| /third_party/mesa3d/docs/gallium/ |
| D | buffermapping.rst | 2 ----------------------- 23 .. code-block:: console 26 …1030876 glBufferDataARB(target = GL_ELEMENT_ARRAY_BUFFER, size = 65536, data = NULL, usage = GL_DY… 27 …1030877 glBufferSubData(target = GL_ELEMENT_ARRAY_BUFFER, offset = 0, size = 576, data = blob(576)) 30 …1030917 glBufferDataARB(target = GL_ARRAY_BUFFER, size = 1572864, data = NULL, usage = GL_DYNAMIC_… 31 1030918 glBufferSubData(target = GL_ARRAY_BUFFER, offset = 0, size = 128, data = blob(128)) 32 …1030919 glBufferSubData(target = GL_ELEMENT_ARRAY_BUFFER, offset = 576, size = 12, data = blob(12)) 34 1030937 glBufferSubData(target = GL_ARRAY_BUFFER, offset = 128, size = 128, data = blob(128)) 35 …1030938 glBufferSubData(target = GL_ELEMENT_ARRAY_BUFFER, offset = 588, size = 12, data = blob(12)) 42 the ``glDraw*()`` calls (a common behavior for non-tiled GPUs, particularly those with [all …]
|
| /third_party/vk-gl-cts/framework/opengl/simplereference/ |
| D | sglrContextWrapper.cpp | 1 /*------------------------------------------------------------------------- 3 * ------------------------------------------------ 11 * http://www.apache.org/licenses/LICENSE-2.0 21 * \brief Context wrapper that exposes sglr API as GL-compatible API. 22 *//*--------------------------------------------------------------------*/ 51 return m_curCtx->getWidth(); in getWidth() 56 return m_curCtx->getHeight(); in getHeight() 61 m_curCtx->viewport(x, y, width, height); in glViewport() 66 m_curCtx->activeTexture(texture); in glActiveTexture() 69 void ContextWrapper::glBindTexture (deUint32 target, deUint32 texture) in glBindTexture() argument [all …]
|
| /third_party/EGL/sdk/docs/man/html/ |
| D | index.php | 3 <link rel="stylesheet" type="text/css" href="style-index.css" /> 10 <ul id="containerul"> <!-- Must wrap entire list for expand/contract --> 12 <a href="start.html" target="pagedisplay">Introduction</a> 19 <li><a href="eglBindAPI.xhtml" target="pagedisplay">eglBindAPI</a></li> 20 <li><a href="eglBindTexImage.xhtml" target="pagedisplay">eglBindTexImage</a></li> 21 </ul> <!-- End Level3 --> 26 <li><a href="eglChooseConfig.xhtml" target="pagedisplay">eglChooseConfig</a></li> 27 … <li><a href="eglClientWaitSync.xhtml" target="pagedisplay">eglClientWaitSync</a></li> 28 <li><a href="eglCopyBuffers.xhtml" target="pagedisplay">eglCopyBuffers</a></li> 29 <li><a href="eglCreateContext.xhtml" target="pagedisplay">eglCreateContext</a></li> [all …]
|
| /third_party/python/Lib/tkinter/ |
| D | dnd.py | 1 """Drag-and-drop support for Tkinter. 6 I am trying to make this as generic as possible -- not dependent on 11 for it that starts the drag-and-drop process. Typically, you should 16 instantiation, the returned instance should not be stored -- it will 17 be kept alive automatically for the duration of the drag-and-drop. 19 When a drag-and-drop is already in process for the Tk interpreter, the 24 The object is *not* necessarily a widget -- it can be any 25 application-specific object that is meaningful to potential 26 drag-and-drop targets. 28 Potential drag-and-drop targets are discovered as follows. Whenever [all …]
|
| /third_party/typescript/tests/baselines/reference/ |
| D | invalidNewTarget.es5.errors.txt | 1 …e/es6/newTarget/invalidNewTarget.es5.ts(1,11): error TS17013: Meta-property 'new.target' is only a… 2 …e/es6/newTarget/invalidNewTarget.es5.ts(2,17): error TS17013: Meta-property 'new.target' is only a… 3 …ce/es6/newTarget/invalidNewTarget.es5.ts(5,6): error TS17013: Meta-property 'new.target' is only a… 4 …e/es6/newTarget/invalidNewTarget.es5.ts(6,18): error TS17013: Meta-property 'new.target' is only a… 5 …e/es6/newTarget/invalidNewTarget.es5.ts(7,22): error TS17013: Meta-property 'new.target' is only a… 6 …e/es6/newTarget/invalidNewTarget.es5.ts(8,20): error TS17013: Meta-property 'new.target' is only a… 7 …e/es6/newTarget/invalidNewTarget.es5.ts(9,15): error TS17013: Meta-property 'new.target' is only a… 8 …/es6/newTarget/invalidNewTarget.es5.ts(11,13): error TS17013: Meta-property 'new.target' is only a… 9 …/es6/newTarget/invalidNewTarget.es5.ts(12,25): error TS17013: Meta-property 'new.target' is only a… 10 …/es6/newTarget/invalidNewTarget.es5.ts(13,29): error TS17013: Meta-property 'new.target' is only a… [all …]
|
| D | invalidNewTarget.es6.errors.txt | 1 …e/es6/newTarget/invalidNewTarget.es6.ts(1,11): error TS17013: Meta-property 'new.target' is only a… 2 …e/es6/newTarget/invalidNewTarget.es6.ts(2,17): error TS17013: Meta-property 'new.target' is only a… 3 …ce/es6/newTarget/invalidNewTarget.es6.ts(5,6): error TS17013: Meta-property 'new.target' is only a… 4 …e/es6/newTarget/invalidNewTarget.es6.ts(6,18): error TS17013: Meta-property 'new.target' is only a… 5 …e/es6/newTarget/invalidNewTarget.es6.ts(7,22): error TS17013: Meta-property 'new.target' is only a… 6 …e/es6/newTarget/invalidNewTarget.es6.ts(8,20): error TS17013: Meta-property 'new.target' is only a… 7 …e/es6/newTarget/invalidNewTarget.es6.ts(9,15): error TS17013: Meta-property 'new.target' is only a… 8 …/es6/newTarget/invalidNewTarget.es6.ts(11,13): error TS17013: Meta-property 'new.target' is only a… 9 …/es6/newTarget/invalidNewTarget.es6.ts(12,25): error TS17013: Meta-property 'new.target' is only a… 10 …/es6/newTarget/invalidNewTarget.es6.ts(13,29): error TS17013: Meta-property 'new.target' is only a… [all …]
|