Home
last modified time | relevance | path

Searched refs:target (Results 1 - 25 of 4851) sorted by relevance

12345678910>>...195

/third_party/node/src/
H A 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, EBADMS in DefineErrnoConstants()
389 DefineWindowsErrorConstants(Local<Object> target) DefineWindowsErrorConstants() argument
623 DefineSignalConstants(Local<Object> target) DefineSignalConstants() argument
772 DefinePriorityConstants(Local<Object> target) DefinePriorityConstants() argument
810 DefineCryptoConstants(Local<Object> target) DefineCryptoConstants() argument
1106 DefineSystemConstants(Local<Object> target) DefineSystemConstants() argument
1289 DefineDLOpenConstants(Local<Object> target) DefineDLOpenConstants() argument
1311 DefineTraceConstants(Local<Object> target) DefineTraceConstants() argument
1342 DefineConstants(v8::Isolate* isolate, Local<Object> target) DefineConstants() argument
[all...]
/third_party/gn/src/gn/
H A Drust_project_writer_helpers_unittest.cc34 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()
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 in TEST_F()
[all...]
H A Dninja_binary_target_writer_unittest.cc17 Target target(setup.settings(), Label(SourceDir("//foo/"), "bar")); in TEST_F()
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 in TEST_F()
[all...]
H A Drust_project_writer_unittest.cc10 #include "gn/target.h"
32 Target target(setup.settings(), Label(SourceDir("//foo/"), "bar")); in TEST_F()
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 in TEST_F()
[all...]
H A Dresolved_target_data.h15 #include "gn/target.h"
19 // A class used to compute target-specific data by collecting information
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()
48 return GetTargetInfo(target)->deps; in GetTargetDeps()
51 // Return the data dependencies of a given target.
52 // Convenience shortcut for GetTargetDeps(target).data_deps().
53 base::span<const Target*> GetDataDeps(const Target* target) const { in GetDataDeps()
54 return GetTargetDeps(target) in GetDataDeps()
142 const Target* target = nullptr; global() member
[all...]
H A Dninja_copy_target_writer_unittest.cc9 #include "gn/target.h"
18 Target target(setup.settings(), Label(SourceDir("//foo/"), "bar")); in TEST()
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(setu in TEST()
[all...]
H A Dninja_action_target_writer_unittest.cc12 #include "gn/target.h"
21 Target target(setup.settings(), Label(SourceDir("//foo/"), "bar")); in TEST()
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()
46 target.set_output_type(Target::ACTION); in TEST()
48 target in TEST()
[all...]
/third_party/protobuf/java/core/src/main/java/com/google/protobuf/
H A 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, offse in getLong()
140 putLong(Object target, long offset, long value) putLong() argument
144 getBoolean(Object target, long offset) getBoolean() argument
148 putBoolean(Object target, long offset, boolean value) putBoolean() argument
152 getFloat(Object target, long offset) getFloat() argument
156 putFloat(Object target, long offset, float value) putFloat() argument
160 getDouble(Object target, long offset) getDouble() argument
164 putDouble(Object target, long offset, double value) putDouble() argument
168 getObject(Object target, long offset) getObject() argument
172 putObject(Object target, long offset, Object value) putObject() argument
176 getByte(byte[] target, long index) getByte() argument
180 putByte(byte[] target, long index, byte value) putByte() argument
184 getInt(int[] target, long index) getInt() argument
188 putInt(int[] target, long index, int value) putInt() argument
192 getLong(long[] target, long index) getLong() argument
197 putLong(long[] target, long index, long value) putLong() argument
202 getBoolean(boolean[] target, long index) getBoolean() argument
207 putBoolean(boolean[] target, long index, boolean value) putBoolean() argument
212 getFloat(float[] target, long index) getFloat() argument
217 putFloat(float[] target, long index, float value) putFloat() argument
222 getDouble(double[] target, long index) getDouble() argument
227 putDouble(double[] target, long index, double value) putDouble() argument
232 getObject(Object[] target, long index) getObject() argument
237 putObject(Object[] target, long index, Object value) putObject() argument
246 copyMemory(long srcOffset, byte[] target, long targetIndex, long length) copyMemory() argument
250 copyMemory(byte[] src, long srcIndex, byte[] target, long targetIndex, long length) copyMemory() argument
549 getByte(Object target, long offset) getByte() argument
551 putByte(Object target, long offset, byte value) putByte() argument
553 getInt(Object target, long offset) getInt() argument
557 putInt(Object target, long offset, int value) putInt() argument
561 getLong(Object target, long offset) getLong() argument
565 putLong(Object target, long offset, long value) putLong() argument
569 getBoolean(Object target, long offset) getBoolean() argument
571 putBoolean(Object target, long offset, boolean value) putBoolean() argument
573 getFloat(Object target, long offset) getFloat() argument
575 putFloat(Object target, long offset, float value) putFloat() argument
577 getDouble(Object target, long offset) getDouble() argument
579 putDouble(Object target, long offset, double value) putDouble() argument
581 getObject(Object target, long offset) getObject() argument
585 putObject(Object target, long offset, Object value) putObject() argument
611 copyMemory(long srcOffset, byte[] target, long targetIndex, long length) copyMemory() argument
653 getByte(Object target, long offset) getByte() argument
658 putByte(Object target, long offset, byte value) putByte() argument
663 getBoolean(Object target, long offset) getBoolean() argument
668 putBoolean(Object target, long offset, boolean value) putBoolean() argument
673 getFloat(Object target, long offset) getFloat() argument
678 putFloat(Object target, long offset, float value) putFloat() argument
683 getDouble(Object target, long offset) getDouble() argument
688 putDouble(Object target, long offset, double value) putDouble() argument
693 copyMemory(long srcOffset, byte[] target, long targetIndex, long length) copyMemory() argument
745 getByte(Object target, long offset) getByte() argument
754 putByte(Object target, long offset, byte value) putByte() argument
763 getBoolean(Object target, long offset) getBoolean() argument
772 putBoolean(Object target, long offset, boolean value) putBoolean() argument
781 getFloat(Object target, long offset) getFloat() argument
786 putFloat(Object target, long offset, float value) putFloat() argument
791 getDouble(Object target, long offset) getDouble() argument
796 putDouble(Object target, long offset, double value) putDouble() argument
801 copyMemory(long srcOffset, byte[] target, long targetIndex, long length) copyMemory() argument
865 getByte(Object target, long offset) getByte() argument
874 putByte(Object target, long offset, byte value) putByte() argument
883 getBoolean(Object target, long offset) getBoolean() argument
892 putBoolean(Object target, long offset, boolean value) putBoolean() argument
901 getFloat(Object target, long offset) getFloat() argument
906 putFloat(Object target, long offset, float value) putFloat() argument
911 getDouble(Object target, long offset) getDouble() argument
916 putDouble(Object target, long offset, double value) putDouble() argument
921 copyMemory(long srcOffset, byte[] target, long targetIndex, long length) copyMemory() argument
940 getByteBigEndian(Object target, long offset) getByteBigEndian() argument
944 getByteLittleEndian(Object target, long offset) getByteLittleEndian() argument
948 putByteBigEndian(Object target, long offset, byte value) putByteBigEndian() argument
955 putByteLittleEndian(Object target, long offset, byte value) putByteLittleEndian() argument
962 getBooleanBigEndian(Object target, long offset) getBooleanBigEndian() argument
966 getBooleanLittleEndian(Object target, long offset) getBooleanLittleEndian() argument
970 putBooleanBigEndian(Object target, long offset, boolean value) putBooleanBigEndian() argument
974 putBooleanLittleEndian(Object target, long offset, boolean value) putBooleanLittleEndian() argument
[all...]
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/shape/
H A Dshape_paint_property.cpp20 void ShapePaintProperty::UpdateShapeProperty(const RefPtr<ShapePaintProperty>& target) in UpdateShapeProperty() argument
22 CHECK_NULL_VOID(target); in UpdateShapeProperty()
23 if (!HasAntiAlias() && target->HasAntiAlias()) { in UpdateShapeProperty()
24 UpdateAntiAlias(target->GetAntiAliasValue()); in UpdateShapeProperty()
26 if (!HasFill() && target->HasFill()) { in UpdateShapeProperty()
27 UpdateFill(target->GetFillValue()); in UpdateShapeProperty()
29 if (!HasFillOpacity() && target->HasFillOpacity()) { in UpdateShapeProperty()
30 UpdateFillOpacity(target->GetFillOpacityValue()); in UpdateShapeProperty()
32 if (!HasStroke() && target->HasStroke()) { in UpdateShapeProperty()
33 UpdateStroke(target in UpdateShapeProperty()
[all...]
/third_party/jerryscript/tests/jerry/es2015/
H A Dproxy_is_extensible.js20 var target = {};
21 var handler = { isExtensible (target) {
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, handle
[all...]
H A Dproxy_prevent_extensions.js19 var target = {};
20 var handler = { preventExtensions (target) {
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)
[all...]
H A Dproxy_has.js19 var target = {};
20 var handler = { has (target) {
24 var proxy = new Proxy(target, handler);
57 var target = {
62 has: function(target, prop) {
67 var proxy = new Proxy(target, handler);
72 var target = {
78 has: function(target, prop) {
82 return prop in target;
86 var proxy = new Proxy(target, handle
[all...]
/third_party/musl/libc-test/src/functionalext/supplement/ctype/
H A 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 in wctype_0400() local
106 wctype_t target = 5; wctype_0500() local
125 wctype_t target = 6; wctype_0600() local
144 wctype_t target = 7; wctype_0700() local
163 wctype_t target = 8; wctype_0800() local
182 wctype_t target = 9; wctype_0900() local
201 wctype_t target = 10; wctype_1000() local
220 wctype_t target = 11; wctype_1100() local
239 wctype_t target = 12; wctype_1200() local
[all...]
/third_party/node/deps/openssl/openssl/util/perl/OpenSSL/
H A Dconfig.pm71 # This is what we will set as the target for calling Configure.
427 or configure with an explicit configuration target.
479 [ [ 'uClinux.*64.*', { target => 'uClinux-dist64' } ],
480 [ 'uClinux.*', { target => 'uClinux-dist' } ],
481 [ 'mips3-sgi-irix', { target => 'irix-mips3' } ],
489 return { target => "irix-mips3" };
492 [ 'ppc-apple-rhapsody', { target => "rhapsody-ppc" } ],
504 return { target => "darwin64-ppc" }
506 return { target => "darwin-ppc" };
520 return { target
[all...]
/third_party/openssl/util/perl/OpenSSL/
H A Dconfig.pm71 # This is what we will set as the target for calling Configure.
419 or configure with an explicit configuration target.
471 [ [ '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
[all...]
/third_party/typescript/tests/baselines/reference/
H A 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/node/test/parallel/
H A 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();
240 target.addEventListener('foo', listener);
245 target.dispatchEvent(new Event('foo'));
249 const target
[all...]
/foundation/arkui/ace_engine_lite/frameworks/src/core/wrapper/
H A Djs.cpp33 bool JSString::Is(JSValue target) in Is() argument
35 return jerry_value_is_string(target); in Is()
44 jerry_value_t target; in Value() local
46 target = jerry_get_symbol_descriptive_string(value); in Value()
48 target = jerry_value_to_string(value); in Value()
51 if (jerry_value_is_error(target)) { in Value()
52 jerry_release_value(target); in Value()
56 jerry_size_t size = jerry_get_string_size(target); in Value()
58 jerry_release_value(target); in Value()
68 jerry_release_value(target); in Value()
99 Is(JSValue target) Is() argument
109 Keys(JSValue target) Keys() argument
114 Get(JSValue target, JSValue key) Get() argument
119 Get(JSValue target, const char * const prop) Get() argument
127 GetString(JSValue target, const char * const prop) GetString() argument
134 GetNumber(JSValue target, const char * const prop) GetNumber() argument
141 GetBoolean(JSValue target, const char * const prop) GetBoolean() argument
148 Set(JSValue target, const char * const prop, JSValue value) Set() argument
155 SetString(JSValue target, const char * const prop, const char * const value) SetString() argument
162 SetNumber(JSValue target, const char * const prop, const double value) SetNumber() argument
169 SetBoolean(JSValue target, const char * const prop, const bool value) SetBoolean() argument
176 Set(JSValue target, const char * const prop, JSHandler handler) Set() argument
183 Del(JSValue target, const char * const prop) Del() argument
191 GetNativePointer(JSValue target, void **nativePointer) GetNativePointer() argument
196 SetNativePointer(JSValue target, void *nativePointer) SetNativePointer() argument
201 DelNativePointer(JSValue target) DelNativePointer() argument
206 Call(JSValue target, const char * const prop, JSValue args[], JSSize size) Call() argument
214 Call(JSValue target, const char * const prop) Call() argument
219 Is(JSValue target) Is() argument
224 Has(JSValue target, const char *name) Has() argument
282 Is(JSValue target) Is() argument
297 Is(JSValue target) Is() argument
340 Is(JSValue target) Is() argument
344 Is(JSValue target) Is() argument
[all...]
/foundation/graphic/graphic_2d/rosen/modules/render_service_client/core/animation/
H A Drs_animation.cpp67 auto target = target_.lock(); in SetFinishCallback() local
68 if (target != nullptr) { in SetFinishCallback()
70 "Animation Set FinishCallback", target->GetId(), id_, true); in SetFinishCallback()
91 auto target = target_.lock(); in CallFinishCallback() local
92 if (target != nullptr) { in CallFinishCallback()
94 "Animation Call FinishCallback", target->GetId(), id_, true); in CallFinishCallback()
136 void RSAnimation::Start(const std::shared_ptr<RSNode>& target) in Start() argument
143 if (target == nullptr) { in Start()
144 ROSEN_LOGE("Failed to start animation, target is null!"); in Start()
148 target in Start()
151 StartInner(const std::shared_ptr<RSNode>& target) StartInner() argument
181 auto target = target_.lock(); Pause() local
198 auto target = target_.lock(); OnPause() local
228 auto target = target_.lock(); InteractivePause() local
248 auto target = target_.lock(); InteractiveContinue() local
267 auto target = target_.lock(); InteractiveFinish() local
287 auto target = target_.lock(); InteractiveReverse() local
310 auto target = target_.lock(); InteractiveSetFraction() local
328 auto target = target_.lock(); Resume() local
345 auto target = target_.lock(); OnResume() local
370 auto target = target_.lock(); Finish() local
387 auto target = target_.lock(); OnFinish() local
412 auto target = target_.lock(); Reverse() local
430 auto target = target_.lock(); OnReverse() local
460 auto target = target_.lock(); SetFraction() local
476 auto target = target_.lock(); OnSetFraction() local
[all...]
/third_party/rust/crates/bindgen/bindgen/
H A Dlog_stubs.rs4 (target: $target:expr, $lvl:expr, $($arg:tt)+) => {{
5 let _ = $target;
14 (target: $target:expr, $($arg:tt)+) => { log!(target: $target, "", $($arg)+) };
18 (target: $target:expr, $($arg:tt)*) => { log!(target
[all...]
/third_party/ltp/tools/sparse/sparse-src/
H A Dtarget.h79 struct target { struct
94 const struct target *target_32bit;
95 const struct target *target_x32bit;
96 const struct target *target_64bit;
100 void (*init)(const struct target *self);
102 void (*predefine)(const struct target *self);
106 extern const struct target target_default;
107 extern const struct target target_alpha;
108 extern const struct target target_arm;
109 extern const struct target target_arm6
[all...]
/third_party/python/Lib/test/
H A Dtest_zipapp.py30 target = self.tmpdir / 'source.pyz'
31 zipapp.create_archive(str(source), str(target))
32 self.assertTrue(target.is_file())
35 # Test packing a directory using Path objects for source and target.
39 target = self.tmpdir / 'source.pyz'
40 zipapp.create_archive(source, target)
41 self.assertTrue(target.is_file())
51 target = io.BytesIO()
52 zipapp.create_archive(str(source), target)
53 target
[all...]
/third_party/node/tools/gyp/pylib/gyp/generator/
H A 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 a
[all...]
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/
H A 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 a
[all...]
/third_party/rust/crates/log/src/
H A Dmacros.rs26 /// log!(target: "app_events", Level::Warn, "App warning: {}, {}, {}",
32 // log!(target: "my_target", Level::Info; key1 = 42, key2 = true; "a {} event", "log");
33 (target: $target:expr, $lvl:expr, $($key:tt = $value:expr),+; $($arg:tt)+) => ({
39 &($target, __log_module_path!(), __log_file!(), __log_line!()),
45 // log!(target: "my_target", Level::Info; "a {} event", "log");
46 (target: $target:expr, $lvl:expr, $($arg:tt)+) => ({
52 &($target, __log_module_path!(), __log_file!(), __log_line!()),
59 ($lvl:expr, $($arg:tt)+) => (log!(target
[all...]

Completed in 10 milliseconds

12345678910>>...195