| /third_party/node/src/ |
| D | node_constants.cc | 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() 101 NODE_DEFINE_CONSTANT(target, EBADF); in DefineErrnoConstants() 105 NODE_DEFINE_CONSTANT(target, EBADMSG); in DefineErrnoConstants() [all …]
|
| /third_party/typescript/tests/baselines/reference/ |
| D | invalidNewTarget.es6.types | 2 const a = new.target; 4 >new.target : any 5 >target : any 7 const b = () => new.target; 9 >() => new.target : () => any 10 >new.target : any 11 >target : any 16 [new.target]() { } 17 >[new.target] : () => void 18 >new.target : any [all …]
|
| D | invalidNewTarget.es5.types | 2 const a = new.target; 4 >new.target : any 5 >target : any 7 const b = () => new.target; 9 >() => new.target : () => any 10 >new.target : any 11 >target : any 16 [new.target]() { } 17 >[new.target] : () => void 18 >new.target : any [all …]
|
| D | newTarget.es6.types | 6 const a = new.target; 8 >new.target : typeof A 9 >target : any 11 const b = () => new.target; 13 >() => new.target : () => typeof A 14 >new.target : typeof A 15 >target : any 17 static c = function () { return new.target; } 19 >function () { return new.target; } : () => any 20 >new.target : () => any [all …]
|
| D | newTarget.es5.types | 6 const a = new.target; 8 >new.target : typeof A 9 >target : any 11 const b = () => new.target; 13 >() => new.target : () => typeof A 14 >new.target : typeof A 15 >target : any 17 static c = function () { return new.target; } 19 >function () { return new.target; } : () => any 20 >new.target : () => any [all …]
|
| D | invalidNewTarget.es6.js | 2 const a = new.target; 3 const b = () => new.target; 6 [new.target]() { } 7 c() { return new.target; } 8 get d() { return new.target; } 9 set e(_) { _ = new.target; } 10 f = () => new.target; 12 static [new.target]() { } 13 static g() { return new.target; } 14 static get h() { return new.target; } [all …]
|
| /third_party/gn/src/gn/ |
| D | resolved_target_data.h | 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. 52 // Convenience shortcut for GetTargetDeps(target).data_deps(). [all …]
|
| D | rust_project_writer_helpers_unittest.cc | 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() 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() 128 target.sources().push_back(lib); in TEST_F() 129 target.source_types_used().Set(SourceFile::SOURCE_RS); in TEST_F() [all …]
|
| D | rust_project_writer_unittest.cc | 10 #include "gn/target.h" 32 Target target(setup.settings(), Label(SourceDir("//foo/"), "bar")); in TEST_F() local 33 target.set_output_type(Target::RUST_LIBRARY); in TEST_F() 34 target.visibility().SetPublic(); in TEST_F() 36 target.sources().push_back(lib); in TEST_F() 37 target.source_types_used().Set(SourceFile::SOURCE_RS); in TEST_F() 38 target.rust_values().set_crate_root(lib); in TEST_F() 39 target.rust_values().crate_name() = "foo"; in TEST_F() 40 target.config_values().rustflags().push_back("--cfg=feature=\"foo_enabled\""); in TEST_F() 41 target.SetToolchain(setup.toolchain()); in TEST_F() [all …]
|
| D | command_refs.cc | 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 63 OutputString(indent + target->label().GetUserVisibleName( in RecursivePrintTarget() [all …]
|
| D | ninja_binary_target_writer_unittest.cc | 17 Target target(setup.settings(), Label(SourceDir("//foo/"), "bar")); in TEST_F() local 18 target.set_output_type(Target::SOURCE_SET); in TEST_F() 19 target.visibility().SetPublic(); in TEST_F() 20 target.sources().push_back(SourceFile("//foo/input1.cc")); in TEST_F() 21 target.sources().push_back(SourceFile("//foo/input2.cc")); in TEST_F() 24 target.sources().push_back(SourceFile("//foo/input3.o")); in TEST_F() 25 target.sources().push_back(SourceFile("//foo/input4.obj")); in TEST_F() 26 target.source_types_used().Set(SourceFile::SOURCE_CPP); in TEST_F() 27 target.source_types_used().Set(SourceFile::SOURCE_O); in TEST_F() 28 target.SetToolchain(setup.toolchain()); in TEST_F() [all …]
|
| D | runtime_deps.cc | 24 #include "gn/target.h" 29 using RuntimeDepsVector = std::vector<std::pair<OutputFile, const Target*>>; 34 const Target* source, in AddIfNew() 44 const Target* source, in AddIfNew() 54 // might be listed by more than one target, the set of targets and output files 57 // data deps add more stuff, so we will want to revisit a target if it's a 59 void RecursiveCollectRuntimeDeps(const Target* target, in RecursiveCollectRuntimeDeps() argument 62 std::map<const Target*, bool>* seen_targets, in RecursiveCollectRuntimeDeps() argument 64 const auto& found_seen_target = seen_targets->find(target); in RecursiveCollectRuntimeDeps() 72 // In the else case, the previously seen target was a regular dependency in RecursiveCollectRuntimeDeps() [all …]
|
| D | ninja_action_target_writer_unittest.cc | 12 #include "gn/target.h" 21 Target target(setup.settings(), Label(SourceDir("//foo/"), "bar")); in TEST() local 22 target.set_output_type(Target::ACTION_FOREACH); in TEST() 23 target.action_values().outputs() = in TEST() 27 target.SetToolchain(setup.toolchain()); in TEST() 28 ASSERT_TRUE(target.OnResolved(&err)); in TEST() 31 NinjaActionTargetWriter writer(&target, out); in TEST() 45 Target target(setup.settings(), Label(SourceDir("//foo++/"), "bar")); in TEST() local 46 target.set_output_type(Target::ACTION); in TEST() 48 target.action_values().set_script(SourceFile("//foo++/script.py")); in TEST() [all …]
|
| D | substitution_writer.h | 21 class Target; variable 36 // - Target substitutions: These are specific to the target+tool combination 42 // parts of the source file) as well as the target substitutions. 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 52 // pointer if there is no target context, in which case the substitutions 53 // requiring target context will not work. 87 // The target can be null (see class comment above). 88 static SourceFile ApplyPatternToSource(const Target* target, [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++ -*-===// 10 // the appropriate target specific classes (TargetMachine, AsmPrinter, etc.) 13 // Target specific class implementations should register themselves using the 66 /// target, suitable for compiling with a native assembler. 75 /// \param TAB - If given, a target asm backend to use to show the fixup 116 /// Target - Wrapper for Target specific information. 124 class Target { 140 *(*)(const Target &T, const Triple &TT, StringRef CPU, StringRef Features, 148 using MCAsmBackendCtorTy = MCAsmBackend *(*)(const Target &T, 155 using MCDisassemblerCtorTy = MCDisassembler *(*)(const Target &T, [all …]
|
| /third_party/curl/packages/vms/ |
| D | gnv_link_curl.com | 464 $ target = "10-at-a-time" 465 $ if f$search("[.docs.examples]''target'.o") .eqs. "" 470 $ if f$search("[.docs.examples]''target'.exe") .eqs. "" 473 $ link'ldebug'/exe=[.docs.examples]'target'.exe- 474 /dsf=[.docs.examples]'target'.dsf - 475 [.docs.examples]'target'.o,- 476 gnv$'target'.opt/opt,- 482 $ target = "anyauthput" 483 $ if f$search("[.docs.examples]''target'.exe") .eqs. "" 486 $ link'ldebug'/exe=[.docs.examples]'target'.exe- [all …]
|
| /third_party/vk-gl-cts/external/openglcts/modules/gl/ |
| D | gl4cSparseTextureTests.cpp | 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() 98 /** Get minimal depth value for target 100 * @param target Texture target 104 GLint SparseTextureUtils::getTargetDepth(GLint target) in getTargetDepth() argument 108 if (target == GL_TEXTURE_3D || target == GL_TEXTURE_1D_ARRAY || target == GL_TEXTURE_2D_ARRAY || in getTargetDepth() 109 …target == GL_TEXTURE_2D_MULTISAMPLE_ARRAY || target == GL_TEXTURE_2D || target == GL_TEXTURE_RECTA… in getTargetDepth() 113 else if (target == GL_TEXTURE_CUBE_MAP_ARRAY) in getTargetDepth() 124 * @param target Texture target [all …]
|
| /third_party/node/tools/gyp/pylib/gyp/generator/ |
| D | analyzer.py | 10 test_targets: unqualified target names to search for. Any target in this list 11 that depends upon a file in |files| is output regardless of the type of target 15 are not necessarily output. For example, if the target is of type none then the 16 target is not output (but one of the descendants of the target will be). 22 supplied targets or a target that one of the supplied targets depends on. 46 and the supplied target A depends upon it. A is not output as a build_target 56 In Gyp the "all" target is shorthand for the root targets in the files passed 60 Notice that "b1" and "b2" are not in the "all" target as "b.gyp" was not 62 then the "all" target includes "b1" and "b2". 78 # MatchStatus is used indicate if and how a target depends upon the supplied [all …]
|
| /third_party/vk-gl-cts/external/vulkan-docs/src/config/spec-macros/ |
| D | extension.rb | 23 def process parent, target, attributes 29 # Check if a link macro target exists - overridden by specific macros 31 def exists? target 35 def process parent, target, attributes 36 if not exists? target 37 # If the macro target is not in this build, but has an alias, 40 if $apiNames.nonexistent.has_key? target 41 oldtarget = target 42 target = $apiNames.nonexistent[oldtarget] 43 … msg = 'Rewriting nonexistent link macro target: ' + @name.to_s + ':' + oldtarget + ' to ' + target [all …]
|
| /third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/ |
| D | analyzer.py | 10 test_targets: unqualified target names to search for. Any target in this list 11 that depends upon a file in |files| is output regardless of the type of target 15 are not necessarily output. For example, if the target is of type none then the 16 target is not output (but one of the descendants of the target will be). 22 supplied targets or a target that one of the supplied targets depends on. 46 and the supplied target A depends upon it. A is not output as a build_target 56 In Gyp the "all" target is shorthand for the root targets in the files passed 60 Notice that "b1" and "b2" are not in the "all" target as "b.gyp" was not 62 then the "all" target includes "b1" and "b2". 78 # MatchStatus is used indicate if and how a target depends upon the supplied [all …]
|
| /third_party/protobuf/java/core/src/main/java/com/google/protobuf/ |
| D | UnsafeUtil.java | 120 static byte getByte(Object target, long offset) { in getByte() argument 121 return MEMORY_ACCESSOR.getByte(target, offset); in getByte() 124 static void putByte(Object target, long offset, byte value) { in putByte() argument 125 MEMORY_ACCESSOR.putByte(target, offset, value); in putByte() 128 static int getInt(Object target, long offset) { in getInt() argument 129 return MEMORY_ACCESSOR.getInt(target, offset); in getInt() 132 static void putInt(Object target, long offset, int value) { in putInt() argument 133 MEMORY_ACCESSOR.putInt(target, offset, value); in putInt() 136 static long getLong(Object target, long offset) { in getLong() argument 137 return MEMORY_ACCESSOR.getLong(target, offset); in getLong() [all …]
|
| /third_party/mesa3d/docs/gallium/ |
| D | buffermapping.rst | 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)) 62 679260 glBindBufferARB(target = GL_ELEMENT_ARRAY_BUFFER, buffer = 1314) 63 …679261 glBufferDataARB(target = GL_ELEMENT_ARRAY_BUFFER, size = 3072, data = NULL, usage = GL_STAT… 64 …679264 glMapBufferRange(target = GL_ELEMENT_ARRAY_BUFFER, offset = 0, length = 3072, access = GL_M… [all …]
|
| /third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/ |
| D | BUILD.gn | 85 "llvm/lib/Target/AArch64/", 86 "llvm/lib/Target/ARM/", 87 "llvm/lib/Target/Mips/", 88 "llvm/lib/Target/PowerPC/", 89 "llvm/lib/Target/X86/", 92 "configs/common/lib/Target/AArch64/", 93 "configs/common/lib/Target/ARM/", 94 "configs/common/lib/Target/Mips/", 95 "configs/common/lib/Target/PowerPC/", 96 "configs/common/lib/Target/X86/", [all …]
|
| /third_party/rust/crates/nix/ |
| D | .cirrus.yml | 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 25 …thub.com/taiki-e/cargo-hack/releases/latest/download/cargo-hack-${HOST:-$TARGET}.tar.gz | tar xzf … 26 …- if [ -z "$NOHACK" ]; then $TOOL +$TOOLCHAIN hack $ZFLAGS check --target $TARGET --each-feature; … 33 - $TOOL +$TOOLCHAIN test --target $TARGET 35 # Test FreeBSD in a full VM. Test the i686 target too, in the 41 TARGET: x86_64-unknown-freebsd 57 - rustup target add i686-unknown-freebsd 62 - cargo build --target i686-unknown-freebsd [all …]
|
| /third_party/typescript/src/lib/ |
| D | es2015.reflect.d.ts | 5 * @param target The function to call. 10 target: (this: T, ...args: A) => R, 14 function apply(target: Function, thisArgument: any, argumentsList: ArrayLike<any>): any; 17 * Constructs the target with the elements of specified array as the arguments 18 * and the specified constructor as the `new.target` value. 19 * @param target The constructor to invoke. 21 * @param newTarget The constructor to be used as the `new.target` object. 24 target: new (...args: A) => R, 28 function construct(target: Function, argumentsList: ArrayLike<any>, newTarget?: Function): any; 32 …* @param target Object on which to add or modify the property. This can be a native JavaScript obj… [all …]
|