Home
last modified time | relevance | path

Searched refs:target (Results 1726 - 1750 of 4212) sorted by relevance

1...<<61626364656667686970>>...169

/third_party/node/src/crypto/
H A Dcrypto_random.cc226 void Initialize(Environment* env, Local<Object> target) { in Initialize() argument
227 RandomBytesJob::Initialize(env, target); in Initialize()
228 RandomPrimeJob::Initialize(env, target); in Initialize()
229 CheckPrimeJob::Initialize(env, target); in Initialize()
/third_party/node/src/
H A Dnode_contextify.h21 static void Init(Environment* env, v8::Local<v8::Object> target);
61 static void Init(Environment* env, v8::Local<v8::Object> target);
164 static void Init(Environment* env, v8::Local<v8::Object> target);
185 v8::Local<v8::Object> target,
H A Dnode_watchdog.cc125 void TraceSigintWatchdog::Init(Environment* env, Local<Object> target) { in Init() argument
136 env->context(), target, "TraceSigintWatchdog", constructor); in Init()
426 static void Initialize(Local<Object> target, in Initialize() argument
431 TraceSigintWatchdog::Init(env, target); in Initialize()
H A Dpipe_wrap.cc66 void PipeWrap::Initialize(Local<Object> target, in Initialize() argument
90 SetConstructorFunction(context, target, "Pipe", t); in Initialize()
96 SetConstructorFunction(context, target, "PipeConnectWrap", cwt); in Initialize()
105 target->Set(context, in Initialize()
/third_party/node/test/fixtures/wpt/dom/abort/resources/
H A Dabort-signal-any-tests.js29 assert_equals(e.target, cloneSignal,
30 `The event target is the signal returned by ${desc}`);
52 assert_equals(e.target, combinedSignal,
53 `The event target is the signal returned by ${desc}`);
/third_party/node/deps/icu-small/source/common/
H A Dustr_wcs.cpp294 char16_t* target = nullptr; in _strFromWCS() local
434 pTarget = target= dest; in _strFromWCS()
451 count+= pTarget - target; in _strFromWCS()
454 target = uStack; in _strFromWCS()
/third_party/node/deps/npm/node_modules/@isaacs/cliui/build/lib/
H A Dindex.js142 // the target line, do so.
148 const target = previousLine.text;
149 const targetTextWidth = mixin.stringWidth(target.trimEnd());
157 return target + source;
163 return target.trimEnd() + ' '.repeat(leadingWhitespace - targetTextWidth) + source.trimStart();
/third_party/node/deps/icu-small/source/i18n/unicode/
H A Dtblcoll.h268 * @param target the string that is to be compared with the source string.
271 * than target; UCOL_EQUAL if source is equal to target; UCOL_LESS if source is less
272 * than target
276 const UnicodeString& target,
283 * @param target the string that is to be compared with the source string.
287 * length) is greater than target; UCOL_EQUAL if source (up to specified
288 * length) is equal to target; UCOL_LESS if source (up to the specified
289 * length) is less than target.
293 const UnicodeString& target,
[all...]
/third_party/node/deps/npm/node_modules/@npmcli/arborist/lib/arborist/
H A Drebuild.js126 // on having the target nodes available in global mode.
129 depNodes.delete(node.target)
204 const { package: { bin, scripts = {} } } = node.target
240 const { package: pkg, hasInstallScript } = node.target
304 } = node.target
/third_party/mesa3d/src/panfrost/bifrost/
H A Dbi_packer.c.py54 # Try to map from a modifier list `domain` to the list `target`
55 def map_modifier(body, prefix, mod, domain, target):
62 noned_target = reserved_to_none(target)
71 table = ", ".join([str(target.index(x)) if x in target else "~0" for x in domain])
/third_party/lwip/src/include/lwip/apps/
H A Dsnmp_core.h297 void snmp_oid_assign(struct snmp_obj_id* target, const u32_t *oid, u8_t oid_len);
298 void snmp_oid_combine(struct snmp_obj_id* target, const u32_t *oid1, u8_t oid1_len, const u32_t *oid2, u8_t oid2_len);
299 void snmp_oid_prefix(struct snmp_obj_id* target, const u32_t *oid, u8_t oid_len);
300 void snmp_oid_append(struct snmp_obj_id* target, const u32_t *oid, u8_t oid_len);
/third_party/node/deps/v8/src/codegen/
H A Dassembler.cc272 int AssemblerBase::AddCodeTarget(Handle<CodeT> target) { in AddCodeTarget() argument
274 if (current > 0 && !target.is_null() && in AddCodeTarget()
275 code_targets_.back().address() == target.address()) { in AddCodeTarget()
276 // Optimization if we keep jumping to the same code target. in AddCodeTarget()
279 code_targets_.push_back(target); in AddCodeTarget()
/third_party/node/deps/v8/src/builtins/
H A Dbuiltins-console.cc133 // Replace the |specifier| (including the '%' character) in |target| in Formatter()
153 isolate, args.target(), isolate->factory()->console_context_id_symbol()); in ConsoleCall()
157 isolate, args.target(), in ConsoleCall()
227 void InstallContextFunction(Isolate* isolate, Handle<JSObject> target, in InstallContextFunction() argument
255 JSObject::AddProperty(isolate, target, name_string, fun, NONE); in InstallContextFunction()
/third_party/node/deps/v8/src/bigint/
H A Ddiv-burnikel.cc249 RWDigits target = Q + n * (t - 2);
250 DCHECK(Qi.len() <= target.len());
251 PutAt(target, Qi, target.len());
/third_party/mesa3d/src/gallium/auxiliary/postprocess/
H A Dpp_init.c272 tmp_res.target = PIPE_TEXTURE_2D; in pp_init_fbos()
282 tmp_res.target, 1, 1, tmp_res.bind)) in pp_init_fbos()
308 tmp_res.target, 1, 1, tmp_res.bind)) { in pp_init_fbos()
313 tmp_res.target, 1, 1, tmp_res.bind)) in pp_init_fbos()
/third_party/mesa3d/src/gallium/drivers/r300/
H A Dr300_transfer.c145 base.target = PIPE_TEXTURE_2D; in r300_texture_transfer_map()
154 /* We must set the correct texture target and dimensions if needed for a 3D transfer. */ in r300_texture_transfer_map()
156 base.target = texture->target; in r300_texture_transfer_map()
158 if (base.target == PIPE_TEXTURE_3D) { in r300_texture_transfer_map()
/third_party/rust/crates/env_logger/src/
H A Dlib.rs96 //! example::log::target=level
99 //! The log target is typically equal to the path of the module the message
107 //! specified log target. A value of, for example, `RUST_LOG=example`, would
607 /// Whether or not to write the target in the default format.
721 /// Sets the target for the log output.
737 /// builder.target(Target::Stdout);
739 pub fn target(&mut self, target: fmt::Target) -> &mut Self { in target() functions
740 self.writer.target(target); in target()
[all...]
/third_party/python/Tools/msi/
H A Dtestrelease.bat18 if "%1" EQU "--target" (set TARGETDIR=%~2) && shift && shift && goto CheckOpts
106 echo testrelease.bat [--target TARGET] [-x86] [-x64] [--alluser] [--peruser] [-h]
108 echo --target (-t) Specify the target directory for installs and logs
/third_party/protobuf/java/core/src/main/java/com/google/protobuf/
H A DAbstractMessageLite.java124 private String getSerializingExceptionMessage(String target) { in getSerializingExceptionMessage() argument
128 + target in getSerializingExceptionMessage()
358 private String getReadingExceptionMessage(String target) { in getReadingExceptionMessage() argument
362 + target in getReadingExceptionMessage()
/third_party/pulseaudio/src/modules/
H A Dmodule-allow-passthrough.c100 static void move_stream(struct userdata *u, pa_sink_input *i, pa_sink *target) { in move_stream() argument
102 if (pa_sink_input_move_to(i, target, false) < 0) in move_stream()
104 pa_strnull(pa_proplist_gets(i->proplist, PA_PROP_APPLICATION_NAME)), target->name); in move_stream()
107 pa_strnull(pa_proplist_gets(i->proplist, PA_PROP_APPLICATION_NAME)), target->name); in move_stream()
/third_party/skia/third_party/externals/angle2/src/libANGLE/
H A DvalidationES32_autogen.h89 GLenum target,
117 GLenum target,
121 GLenum target,
193 GLenum target,
/third_party/skia/third_party/externals/icu/source/i18n/unicode/
H A Dtblcoll.h268 * @param target the string that is to be compared with the source string.
271 * than target; UCOL_EQUAL if source is equal to target; UCOL_LESS if source is less
272 * than target
276 const UnicodeString& target,
283 * @param target the string that is to be compared with the source string.
287 * length) is greater than target; UCOL_EQUAL if source (up to specified
288 * length) is equal to target; UCOL_LESS if source (up to the specified
289 * length) is less than target.
293 const UnicodeString& target,
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/
H A DTargetMachineC.cpp52 const Target *target = &*TargetRegistry::targets().begin(); in LLVMGetFirstTarget() local
53 return wrap(target); in LLVMGetFirstTarget()
157 const Target* target = &(unwrap(T)->getTarget()); in LLVMGetTargetMachineTarget() local
158 return wrap(target); in LLVMGetTargetMachineTarget()
/third_party/skia/tools/skqp/
H A Dcreate_apk.py98 def make_symlinked_subdir(target, working_dir):
99 newdir = os.path.join(working_dir, os.path.basename(target))
101 os.symlink(os.path.relpath(newdir, os.path.dirname(target)), target)
/third_party/skia/third_party/externals/icu/source/common/
H A Dustr_wcs.cpp294 UChar* target = NULL; in _strFromWCS() local
434 pTarget = target= dest; in _strFromWCS()
451 count+= pTarget - target; in _strFromWCS()
454 target = uStack; in _strFromWCS()

Completed in 20 milliseconds

1...<<61626364656667686970>>...169