Home
last modified time | relevance | path

Searched full:target (Results 1 – 25 of 10488) sorted by relevance

12345678910>>...420

/third_party/node/src/
Dnode_constants.cc71 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/
DinvalidNewTarget.es5.types2 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 …]
DinvalidNewTarget.es6.types2 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 …]
DnewTarget.es6.types6 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 …]
DnewTarget.es5.types6 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 …]
DinvalidNewTarget.es6.js2 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/
Dresolved_target_data.cc18 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()
67 ImmutableVectorView<SourceDir> all_lib_dirs(const Target* target) const { in all_lib_dirs()
[all …]
Drust_project_writer_unittest.cc10 #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 …]
Drust_project_writer_helpers_unittest.cc32 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()
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()
310 target.sources().push_back(lib); in TEST_F()
311 target.source_types_used().Set(SourceFile::SOURCE_RS); in TEST_F()
[all …]
Dcommand_refs.cc23 #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 …]
Dninja_binary_target_writer_unittest.cc17 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 …]
Druntime_deps.cc24 #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 …]
Dsubstitution_writer.h21 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 …]
Dninja_copy_target_writer_unittest.cc9 #include "gn/target.h"
18 Target target(setup.settings(), Label(SourceDir("//foo/"), "bar")); in TEST() local
19 target.set_output_type(Target::COPY_FILES); in TEST()
21 target.sources().push_back(SourceFile("//foo/input1.txt")); in TEST()
22 target.sources().push_back(SourceFile("//foo/input2.txt")); in TEST()
24 target.action_values().outputs() = in TEST()
27 target.SetToolchain(setup.toolchain()); in TEST()
28 ASSERT_TRUE(target.OnResolved(&err)); in TEST()
31 NinjaCopyTargetWriter writer(&target, out); in TEST()
48 Target target(setup.settings(), Label(SourceDir("//foo/"), "bar")); in TEST() local
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/
DTargetRegistry.h1 //===- 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/
Dgnv_link_curl.com464 $ 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/cef/include/internal/
Dcef_types_wrappers.h89 // 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/vk-gl-cts/external/openglcts/modules/gl/
Dgl4cSparseTextureTests.cpp54 * @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()
109target == 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/
Danalyzer.py10 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/node/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/
Danalyzer.py10 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/
DUnsafeUtil.java120 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/
Dbuffermapping.rst26 …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/
DBUILD.gn85 "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.yml21 - $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/
Des2015.reflect.d.ts5 * @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 …]

12345678910>>...420