Home
last modified time | relevance | path

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

12345678910>>...304

/third_party/node/src/
Dnode_constants.cc61 void DefineErrnoConstants(Local<Object> target) { in DefineErrnoConstants() argument
63 NODE_DEFINE_CONSTANT(target, E2BIG); in DefineErrnoConstants()
67 NODE_DEFINE_CONSTANT(target, EACCES); in DefineErrnoConstants()
71 NODE_DEFINE_CONSTANT(target, EADDRINUSE); in DefineErrnoConstants()
75 NODE_DEFINE_CONSTANT(target, EADDRNOTAVAIL); in DefineErrnoConstants()
79 NODE_DEFINE_CONSTANT(target, EAFNOSUPPORT); in DefineErrnoConstants()
83 NODE_DEFINE_CONSTANT(target, EAGAIN); in DefineErrnoConstants()
87 NODE_DEFINE_CONSTANT(target, EALREADY); in DefineErrnoConstants()
91 NODE_DEFINE_CONSTANT(target, EBADF); in DefineErrnoConstants()
95 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 …]
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.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 …]
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.es6.js4 const a = new.target;
5 const b = () => new.target;
7 static c = function () { return new.target; }
8 d = function () { return new.target; }
14 const e = new.target;
15 const f = () => new.target;
20 const g = new.target;
21 const h = () => new.target;
25 const i = new.target;
26 const j = () => new.target;
[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/node/test/parallel/
Dtest-eventtarget.js237 const target = new EventTarget(); constant
246 throws(() => target.dispatchEvent(i), {
266 ].forEach((i) => throws(() => target.addEventListener('foo', i), err(i)));
270 const target = new EventTarget(); constant
271 once(target, 'foo').then(common.mustCall());
272 target.dispatchEvent(new Event('foo'));
276 const target = new EventTarget(); constant
279 target.addEventListener('foo', common.mustNotCall());
280 target.dispatchEvent(event);
284 const target = new EventTarget(); constant
[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 …]
Dproxy_has.js19 var target = {}; variable
20 var handler = { has (target) { argument
24 var proxy = new Proxy(target, handler);
57 var target = { variable
62 has: function(target, prop) { argument
67 var proxy = new Proxy(target, handler);
72 var target = { variable
78 has: function(target, prop) { argument
82 return prop in target;
86 var proxy = new Proxy(target, handler);
[all …]
/third_party/flutter/skia/third_party/externals/angle2/src/libGL/
Dentry_points_gl_1_3_autogen.cpp64 void GL_APIENTRY CompressedTexImage1D(GLenum target, in CompressedTexImage1D() argument
75 GLenumToString(GLenumGroup::TextureTarget, target), level, in CompressedTexImage1D()
84 ValidateCompressedTexImage1D(context, target, level, internalformat, in CompressedTexImage1D()
88 context->compressedTexImage1D(target, level, internalformat, width, border, imageSize, in CompressedTexImage1D()
91 ANGLE_CAPTURE(CompressedTexImage1D, isCallValid, context, target, level, internalformat, in CompressedTexImage1D()
96 void GL_APIENTRY CompressedTexImage2D(GLenum target, in CompressedTexImage2D() argument
109 GLenumToString(GLenumGroup::TextureTarget, target), level, in CompressedTexImage2D()
116 TextureTarget targetPacked = FromGL<TextureTarget>(target); in CompressedTexImage2D()
132 void GL_APIENTRY CompressedTexImage3D(GLenum target, in CompressedTexImage3D() argument
146 GLenumToString(GLenumGroup::TextureTarget, target), level, in CompressedTexImage3D()
[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/flutter/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/node/deps/icu-small/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/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/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/boost/tools/build/src/tools/
Dlink.jam9 import virtual-target ;
43 local source-target = [ new file-target test-symlink-source : :
45 local target = [ new file-target test-symlink : :
46 $(project) : [ new action $(source-target) : link.mklink ] ] ;
48 if [ configure.try-build $(target) : [ property-set.empty ] : "symlinks supported" ]
73 local source-target = [ new file-target test-junction-source : :
75 local target = [ new file-target test-junction : :
76 $(project) : [ new action $(source-target) : link.junction ] ] ;
78 if [ configure.try-build $(target) : [ property-set.empty ] : "junctions supported" ]
111 local source-target = [ new file-target test-hardlink-source : :
[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/flutter/skia/third_party/externals/angle2/src/libANGLE/
DContext_gl_1_3_autogen.h14 void compressedTexImage1D(GLenum target, GLint level, GLenum internalformat, GLsizei width, \
16 void compressedTexSubImage1D(GLenum target, GLint level, GLint xoffset, GLsizei width, \
18 void getCompressedTexImage(GLenum target, GLint level, void *img); \
23 void multiTexCoord1d(GLenum target, GLdouble s); \
24 void multiTexCoord1dv(GLenum target, const GLdouble *v); \
25 void multiTexCoord1f(GLenum target, GLfloat s); \
26 void multiTexCoord1fv(GLenum target, const GLfloat *v); \
27 void multiTexCoord1i(GLenum target, GLint s); \
28 void multiTexCoord1iv(GLenum target, const GLint *v); \
29 void multiTexCoord1s(GLenum target, GLshort s); \
[all …]

12345678910>>...304