| /third_party/gn/src/gn/ |
| D | resolved_target_data.cc | 2 // Use of this source code is governed by a BSD-style license that can be 18 TargetInfo(const Target* target) in TargetInfo() 19 : target(target), in TargetInfo() 20 deps(target->public_deps(), in TargetInfo() 21 target->private_deps(), in TargetInfo() 22 target->data_deps()) {} in TargetInfo() 24 const Target* target = nullptr; member 43 ImmutableVector<const Target*> hard_deps; 58 LibInfo GetLibInfo(const Target* target) const { in GetLibInfo() 59 const TargetInfo* info = GetRecursiveTargetLibInfo(target); in GetLibInfo() [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 | 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 | rust_project_writer_helpers_unittest.cc | 2 // Use of this source code is governed by a BSD-style license that can be 32 Crate target = Crate(SourceFile("/root/hare/lib.rs"), in TEST_F() local 34 target.AddDependency(0, "tortoise"); in TEST_F() 35 target.AddConfigItem("unix"); in TEST_F() 36 target.AddConfigItem("feature=\"test\""); in TEST_F() 39 crates.push_back(target); in TEST_F() 97 setup.build_settings()->SetRootPath(UTF8ToFilePath("/root")); in TEST_F() 306 Target target(setup.settings(), Label(SourceDir("//foo/"), "bar")); in TEST_F() local 307 target.set_output_type(Target::RUST_LIBRARY); in TEST_F() 308 target.visibility().SetPublic(); in TEST_F() [all …]
|
| D | xcode_writer.cc | 2 // Use of this source code is governed by a BSD-style license that can be 35 #include "gn/target.h" 72 if (target_os_value->type() == Value::STRING) { in GetTargetOs() 73 if (target_os_value->string_value() == "ios") in GetTargetOs() 90 environment->GetVar(variable.name, &value); in ComputeScriptEnviron() 107 buffer << "exec env -i " << ComputeScriptEnviron(environment); in GetBuildScript() 108 buffer << GetNinjaExecutable(ninja_executable) << " -C ."; in GetBuildScript() 115 bool IsApplicationTarget(const Target* target) { in IsApplicationTarget() argument 116 return target->output_type() == Target::CREATE_BUNDLE && in IsApplicationTarget() 117 target->bundle_data().product_type() == in IsApplicationTarget() [all …]
|
| /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/cef/include/internal/ |
| D | cef_types_wrappers.h | 89 // Relinquish ownership of values to the target structure. 91 void DetachTo(struct_type& target) { in DetachTo() argument 92 if (attached_to_ != &target) { in DetachTo() 93 // Clear the target structure's values only if we are not currently in DetachTo() 95 Clear(&target); in DetachTo() 98 // Transfer ownership of the values to the target structure. in DetachTo() 99 memcpy(&target, static_cast<struct_type*>(this), sizeof(struct_type)); in DetachTo() 141 struct_type* target, in set() 143 *target = *src; in set() 177 struct_type* target, in set() [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/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/libffi/ |
| D | configure.host | 9 aarch64*-*-cygwin* | aarch64*-*-mingw* | aarch64*-*-win* ) 10 TARGET=ARM_WIN64; TARGETDIR=aarch64 14 aarch64*-*-*) 15 TARGET=AARCH64; TARGETDIR=aarch64 19 alpha*-*-*) 20 TARGET=ALPHA; TARGETDIR=alpha; 21 # Support 128-bit long double, changeable via command-line switch. 26 arc*-*-*) 27 TARGET=ARC; TARGETDIR=arc 31 arm*-*-cygwin* | arm*-*-mingw* | arm*-*-win* ) [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/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/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/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/cef/cmake/ |
| D | cef_macros.cmake.in | 2 # reserved. Use of this source code is governed by a BSD-style license that 30 message(STATUS "Target SDK: ${CEF_TARGET_SDK}") 83 # Determine the target output directory based on platform and generator. 100 macro(COPY_FILES target file_list source_dir target_dir) 107 if(NOT ${_pos} EQUAL -1) 119 TARGET ${target} 121 COMMAND ${CMAKE_COMMAND} -E copy_directory "${source_file}" "${target_file}" 126 TARGET ${target} 128 COMMAND ${CMAKE_COMMAND} -E copy_if_different "${source_file}" "${target_file}" 142 # Use pkg-config to find Linux libraries and update compiler/linker variables. [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/ltp/tools/sparse/sparse-src/Documentation/ |
| D | IR.rst | 1 .. default-domain:: ir 18 * .target: (pseudo_t) result of unary, binary & ternary ops, is 24 ----------- 44 Switch / multi-branch 48 * .multijmp_list: pairs of case-value - destination basic block 60 ----------------- 62 * .src1, .src2: operands (types must be compatible with .target) 63 * .target: result of the operation (must be an integral type) 64 * .type: type of .target 96 Floating-point binops [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 …]
|