/third_party/node/src/crypto/ |
H A D | crypto_random.cc | 226 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 D | node_contextify.h | 21 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 D | node_watchdog.cc | 125 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 D | pipe_wrap.cc | 66 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 D | abort-signal-any-tests.js | 29 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 D | ustr_wcs.cpp | 294 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 D | index.js | 142 // 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 D | tblcoll.h | 268 * @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 D | rebuild.js | 126 // 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 D | bi_packer.c.py | 54 # 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 D | snmp_core.h | 297 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 D | assembler.cc | 272 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 D | builtins-console.cc | 133 // 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 D | div-burnikel.cc | 249 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 D | pp_init.c | 272 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 D | r300_transfer.c | 145 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 D | lib.rs | 96 //! 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 D | testrelease.bat | 18 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 D | AbstractMessageLite.java | 124 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 D | module-allow-passthrough.c | 100 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 D | validationES32_autogen.h | 89 GLenum target, 117 GLenum target, 121 GLenum target, 193 GLenum target,
|
/third_party/skia/third_party/externals/icu/source/i18n/unicode/ |
H A D | tblcoll.h | 268 * @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 D | TargetMachineC.cpp | 52 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 D | create_apk.py | 98 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 D | ustr_wcs.cpp | 294 UChar* target = NULL; in _strFromWCS() local 434 pTarget = target= dest; in _strFromWCS() 451 count+= pTarget - target; in _strFromWCS() 454 target = uStack; in _strFromWCS()
|