Home
last modified time | relevance | path

Searched refs:target (Results 1 – 25 of 6315) sorted by relevance

12345678910>>...253

/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/openssl/util/perl/OpenSSL/
Dconfig.pm471 [ [ 'uClinux.*64.*', { target => 'uClinux-dist64' } ],
472 [ 'uClinux.*', { target => 'uClinux-dist' } ],
473 [ 'mips3-sgi-irix', { target => 'irix-mips3' } ],
481 return { target => "irix-mips3" };
484 [ 'ppc-apple-rhapsody', { target => "rhapsody-ppc" } ],
496 return { target => "darwin64-ppc" }
498 return { target => "darwin-ppc" };
512 return { target => "darwin64-x86_64" }
514 return { target => "darwin-i386" };
525 return { target => "darwin64-x86_64" };
[all …]
/third_party/node/deps/openssl/openssl/util/perl/OpenSSL/
Dconfig.pm471 [ [ 'uClinux.*64.*', { target => 'uClinux-dist64' } ],
472 [ 'uClinux.*', { target => 'uClinux-dist' } ],
473 [ 'mips3-sgi-irix', { target => 'irix-mips3' } ],
481 return { target => "irix-mips3" };
484 [ 'ppc-apple-rhapsody', { target => "rhapsody-ppc" } ],
496 return { target => "darwin64-ppc" }
498 return { target => "darwin-ppc" };
512 return { target => "darwin64-x86_64" }
514 return { target => "darwin-i386" };
525 return { target => "darwin64-x86_64" };
[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 …]
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 …]
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 …]
/third_party/gn/src/gn/
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 …]
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 …]
Drust_project_writer_unittest.cc32 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()
42 ASSERT_TRUE(target.OnResolved(&err)); in TEST_F()
[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/jerryscript/tests/jerry/es2015/
Dproxy_is_extensible.js20 var target = {}; variable
21 var handler = { isExtensible (target) { argument
25 var proxy = new Proxy(target, handler);
52 var target = {};
54 var proxy = new Proxy(target, handler);
55 assert(Object.isExtensible(target) === true)
57 Object.preventExtensions(target);
58 assert(Object.isExtensible(target) === false);
62 var target = {};
64 var proxy = new Proxy(target, handler);
[all …]
Dproxy_prevent_extensions.js19 var target = {}; variable
20 var handler = { preventExtensions (target) { argument
24 var proxy = new Proxy(target, handler);
43 var target = {};
45 var proxy = new Proxy(target, handler);
47 assert(Object.isExtensible(target) === true);
50 assert(Object.isExtensible(target) === false);
54 var target = {};
56 var proxy = new Proxy(target, handler);
58 assert(Object.isExtensible(target) === true);
[all …]
/third_party/cef/include/internal/
Dcef_types_wrappers.h91 void DetachTo(struct_type& target) { in DetachTo() argument
92 if (attached_to_ != &target) { in DetachTo()
95 Clear(&target); 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()
179 *target = *src; in set()
226 struct_type* target, in set()
228 *target = *src; in set()
[all …]
/third_party/node/test/parallel/
Dtest-eventtarget.js173 strictEqual(event.target, eventTarget1);
179 strictEqual(event.target, eventTarget2);
185 strictEqual(event.target, eventTarget1);
191 strictEqual(event.target, eventTarget2);
202 strictEqual(event.target, eventTarget1);
207 strictEqual(event.target, eventTarget2);
236 const target = new EventTarget(); constant
240 target.addEventListener('foo', listener);
245 target.dispatchEvent(new Event('foo'));
249 const target = new EventTarget(); constant
[all …]
/third_party/node/deps/icu-small/source/common/
Ducnvlat1.cpp39 char16_t *target; in _Latin1ToUnicodeWithOffsets() local
47 target=pArgs->target; in _Latin1ToUnicodeWithOffsets()
48 targetCapacity=(int32_t)(pArgs->targetLimit-pArgs->target); in _Latin1ToUnicodeWithOffsets()
73 target[0]=source[0]; in _Latin1ToUnicodeWithOffsets()
74 target[1]=source[1]; in _Latin1ToUnicodeWithOffsets()
75 target[2]=source[2]; in _Latin1ToUnicodeWithOffsets()
76 target[3]=source[3]; in _Latin1ToUnicodeWithOffsets()
77 target[4]=source[4]; in _Latin1ToUnicodeWithOffsets()
78 target[5]=source[5]; in _Latin1ToUnicodeWithOffsets()
79 target[6]=source[6]; in _Latin1ToUnicodeWithOffsets()
[all …]
/third_party/skia/third_party/externals/icu/source/common/
Ducnvlat1.cpp39 UChar *target; in _Latin1ToUnicodeWithOffsets() local
47 target=pArgs->target; in _Latin1ToUnicodeWithOffsets()
48 targetCapacity=(int32_t)(pArgs->targetLimit-pArgs->target); in _Latin1ToUnicodeWithOffsets()
73 target[0]=source[0]; in _Latin1ToUnicodeWithOffsets()
74 target[1]=source[1]; in _Latin1ToUnicodeWithOffsets()
75 target[2]=source[2]; in _Latin1ToUnicodeWithOffsets()
76 target[3]=source[3]; in _Latin1ToUnicodeWithOffsets()
77 target[4]=source[4]; in _Latin1ToUnicodeWithOffsets()
78 target[5]=source[5]; in _Latin1ToUnicodeWithOffsets()
79 target[6]=source[6]; in _Latin1ToUnicodeWithOffsets()
[all …]
/third_party/icu/icu4c/source/common/
Ducnvlat1.cpp39 UChar *target; in _Latin1ToUnicodeWithOffsets() local
47 target=pArgs->target; in _Latin1ToUnicodeWithOffsets()
48 targetCapacity=(int32_t)(pArgs->targetLimit-pArgs->target); in _Latin1ToUnicodeWithOffsets()
73 target[0]=source[0]; in _Latin1ToUnicodeWithOffsets()
74 target[1]=source[1]; in _Latin1ToUnicodeWithOffsets()
75 target[2]=source[2]; in _Latin1ToUnicodeWithOffsets()
76 target[3]=source[3]; in _Latin1ToUnicodeWithOffsets()
77 target[4]=source[4]; in _Latin1ToUnicodeWithOffsets()
78 target[5]=source[5]; in _Latin1ToUnicodeWithOffsets()
79 target[6]=source[6]; in _Latin1ToUnicodeWithOffsets()
[all …]
/third_party/musl/libc-test/src/functionalext/supplement/ctype/
Dwctype.c30 wctype_t target = 1; in wctype_0100() local
31 if (expect0 != target) { in wctype_0100()
36 if (expect1 == target) { in wctype_0100()
49 wctype_t target = 2; in wctype_0200() local
50 if (expect0 != target) { in wctype_0200()
55 if (expect1 == target) { in wctype_0200()
68 wctype_t target = 3; in wctype_0300() local
69 if (expect0 != target) { in wctype_0300()
74 if (expect1 == target) { in wctype_0300()
87 wctype_t target = 4; in wctype_0400() local
[all …]
/third_party/node/deps/npm/node_modules/@npmcli/arborist/lib/
Dlink.js11 const { root, realpath, target, parent, fsParent, isStoreLink } = options
13 if (!realpath && !(target && target.path)) {
19 realpath: realpath || target.path,
22 : target ? target.root
28 if (target) {
29 this.target = target
31 this.target = this.root
33 this.target = new Node({
44 return this.target ? this.target.version : this.package.version || ''
47 get target () { getter in Link
[all …]
/third_party/python/Lib/test/
Dtest_zipapp.py29 target = self.tmpdir / 'source.pyz'
30 zipapp.create_archive(str(source), str(target))
31 self.assertTrue(target.is_file())
38 target = self.tmpdir / 'source.pyz'
39 zipapp.create_archive(source, target)
40 self.assertTrue(target.is_file())
50 target = io.BytesIO()
51 zipapp.create_archive(str(source), target)
52 target.seek(0)
53 with zipfile.ZipFile(target, 'r') as z:
[all …]
/third_party/ltp/tools/sparse/sparse-src/
Dtarget.h79 struct target { struct
94 const struct target *target_32bit; argument
95 const struct target *target_x32bit; argument
96 const struct target *target_64bit; argument
100 void (*init)(const struct target *self); argument
102 void (*predefine)(const struct target *self); argument
106 extern const struct target target_default; argument
107 extern const struct target target_alpha;
108 extern const struct target target_arm;
109 extern const struct target target_arm64;
[all …]
/third_party/vk-gl-cts/external/openglcts/modules/gl/
Dgl4cSparseTextureTests.cpp61 …ureUtils::verifyQueryError(std::stringstream& log, const char* funcName, GLint target, GLint pname, in verifyQueryError() argument
67 << ", target: " << target << ", pname: " << pname << ", expected: " << expectedError in verifyQueryError()
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()
130 void SparseTextureUtils::getTexturePageSizes(const glw::Functions& gl, glw::GLint target, glw::GLin… in getTexturePageSizes() argument
133 gl.getInternalformativ(target, format, GL_VIRTUAL_PAGE_SIZE_X_ARB, 1, &pageSizeX); in getTexturePageSizes()
136 gl.getInternalformativ(target, format, GL_VIRTUAL_PAGE_SIZE_Y_ARB, 1, &pageSizeY); in getTexturePageSizes()
139 gl.getInternalformativ(target, format, GL_VIRTUAL_PAGE_SIZE_Z_ARB, 1, &pageSizeZ); in getTexturePageSizes()
[all …]
/third_party/vk-gl-cts/external/vulkan-docs/src/config/spec-macros/
Dextension.rb23 def process parent, target, attributes
31 def exists? target
35 def process parent, target, attributes
36 if not exists? target
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
49 msg = 'Textifying unknown link macro target: ' + @name.to_s + ':' + target
52 return create_inline parent, :quoted, '<code>' + target + '</code>'
[all …]

12345678910>>...253