Home
last modified time | relevance | path

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

12345678910>>...296

/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.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 …]
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/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/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/gn/src/gn/
Dninja_action_target_writer_unittest.cc20 Target target(setup.settings(), Label(SourceDir("//foo/"), "bar")); in TEST() local
21 target.set_output_type(Target::ACTION_FOREACH); in TEST()
22 target.action_values().outputs() = in TEST()
26 target.SetToolchain(setup.toolchain()); in TEST()
27 ASSERT_TRUE(target.OnResolved(&err)); in TEST()
30 NinjaActionTargetWriter writer(&target, out); in TEST()
44 Target target(setup.settings(), Label(SourceDir("//foo/"), "bar")); in TEST() local
45 target.set_output_type(Target::ACTION); in TEST()
47 target.action_values().set_script(SourceFile("//foo/script.py")); in TEST()
48 target.config_values().inputs().push_back(SourceFile("//foo/included.txt")); in TEST()
[all …]
Dcommand_refs.cc37 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,
56 const Target* target, in RecursivePrintTarget() argument
63 OutputString(indent + target->label().GetUserVisibleName( in RecursivePrintTarget()
64 !target->settings()->is_default())); in RecursivePrintTarget()
68 if (seen_targets->find(target) == seen_targets->end()) { in RecursivePrintTarget()
70 seen_targets->insert(target); in RecursivePrintTarget()
76 if (dep_map.lower_bound(target) != dep_map.upper_bound(target)) in RecursivePrintTarget()
[all …]
Dninja_rust_binary_target_writer_unittest.cc22 Target target(setup.settings(), Label(SourceDir("//foo/"), "bar")); in TEST_F() local
23 target.set_output_type(Target::SOURCE_SET); in TEST_F()
24 target.visibility().SetPublic(); in TEST_F()
25 target.sources().push_back(SourceFile("//foo/input1.rs")); in TEST_F()
26 target.sources().push_back(SourceFile("//foo/main.rs")); in TEST_F()
27 target.source_types_used().Set(SourceFile::SOURCE_RS); in TEST_F()
28 target.SetToolchain(setup.toolchain()); in TEST_F()
29 ASSERT_TRUE(target.OnResolved(&err)); in TEST_F()
34 NinjaRustBinaryTargetWriter writer(&target, out); in TEST_F()
62 Target target(setup.settings(), Label(SourceDir("//foo/"), "bar")); in TEST_F() local
[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/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/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/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/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/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 …]
/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/boost/boost/graph/
Dmesh_graph_generator.hpp50 , target(1) in mesh_iterator()
67 if (target == source + 1) in operator ++()
69 target = source + x; in operator ++()
73 target = (source % x) < x - 1 ? source + 1 : source + x; in operator ++()
74 if (target > n) in operator ++()
77 else if (target == source + x) in operator ++()
80 target = (source % x) < x - 1 ? source + 1 : source + x; in operator ++()
85 if (target == source + 1 || target == source - (source % x)) in operator ++()
86 target = (source + x) % n; in operator ++()
87 else if (target == (source + x) % n) in operator ++()
[all …]
/third_party/ltp/testcases/kernel/io/disktest/
Dchildmain.c67 unsigned short action_in_use(const test_env_t * env, const action_t target) in action_in_use() argument
72 if ((target.lba == env->action_list[i].lba) /* attempting same transfer start lba */ in action_in_use()
73 …||((target.lba < env->action_list[i].lba) && (target.lba + target.trsiz - 1) >= env->action_list[i… in action_in_use()
80 switch (target.oper) { in action_in_use()
100 const action_t target) in add_action() argument
109 env->action_list[env->action_list_entry++] = target; in add_action()
112 void remove_action(test_env_t * env, const action_t target) in remove_action() argument
124 while (target.lba != env->action_list[i].lba) { in remove_action()
142 const action_t target) in decrement_io_count() argument
145 remove_action(env, target); in decrement_io_count()
[all …]

12345678910>>...296