Home
last modified time | relevance | path

Searched refs:self (Results 2826 - 2850 of 3262) sorted by relevance

1...<<111112113114115116117118119120>>...131

/third_party/python/Lib/distutils/
H A Dutil.py498 def log_error(self, msg, *args, **kw):
501 def log_message(self, msg, *args):
504 def log_debug(self, msg, *args):
561 def run_2to3(self, files):
562 return run_2to3(files, self.fixer_names, self.options, self.explicit)
/third_party/python/Lib/test/
H A Dpythoninfo.py25 def __init__(self):
26 self.info = {}
28 def add(self, key, value):
29 if key in self.info:
44 self.info[key] = value
46 def get_infos(self):
50 return {key: str(value) for key, value in self.info.items()}
/third_party/node/lib/internal/cluster/
H A Dchild.js234 const self = server[owner_symbol];
235 if (self.maxConnections && self._connections >= self.maxConnections) {
/third_party/node/lib/internal/
H A Dstream_base_commons.js122 function writevGeneric(self, data, cb) {
123 const req = createWriteWrap(self[kHandle], cb);
147 function writeGeneric(self, data, encoding, cb) {
148 const req = createWriteWrap(self[kHandle], cb);
/third_party/python/Lib/encodings/
H A Didna.py145 def encode(self, input, errors='strict'):
182 def decode(self, input, errors='strict'):
217 def _buffer_encode(self, input, errors, final):
252 def _buffer_decode(self, input, errors, final):
/third_party/node/src/api/
H A Dhooks.cc97 // Use a self-reference to make sure the storage is kept alive while the
99 std::shared_ptr<AsyncCleanupHookInfo> self; member
134 std::shared_ptr<AsyncCleanupHookInfo> keep_alive = info->self; in FinishAsyncCleanupHook()
137 info->self.reset(); in FinishAsyncCleanupHook()
157 info->self = info; in AddEnvironmentCleanupHookInternal()
165 handle->info->self.reset(); in RemoveEnvironmentCleanupHookInternal()
/third_party/python/Objects/
H A Dcomplexobject.c648 complex_conjugate_impl(PyComplexObject *self) in complex_conjugate_impl() argument
651 Py_complex c = self->cval; in complex_conjugate_impl()
662 complex___getnewargs___impl(PyComplexObject *self) in complex___getnewargs___impl() argument
665 Py_complex c = self->cval; in complex___getnewargs___impl()
680 complex___format___impl(PyComplexObject *self, PyObject *format_spec) in complex___format___impl() argument
688 (PyObject *)self, in complex___format___impl()
704 complex___complex___impl(PyComplexObject *self) in complex___complex___impl() argument
707 if (PyComplex_CheckExact(self)) { in complex___complex___impl()
708 Py_INCREF(self); in complex___complex___impl()
709 return (PyObject *)self; in complex___complex___impl()
[all...]
H A Dfloatobject.c890 float_is_integer_impl(PyObject *self) in float_is_integer_impl() argument
893 double x = PyFloat_AsDouble(self); in float_is_integer_impl()
918 float___trunc___impl(PyObject *self) in float___trunc___impl() argument
921 return PyLong_FromDouble(PyFloat_AS_DOUBLE(self)); in float___trunc___impl()
931 float___floor___impl(PyObject *self) in float___floor___impl() argument
934 double x = PyFloat_AS_DOUBLE(self); in float___floor___impl()
945 float___ceil___impl(PyObject *self) in float___ceil___impl() argument
948 double x = PyFloat_AS_DOUBLE(self); in float___ceil___impl()
1080 float___round___impl(PyObject *self, PyObject *o_ndigits) in float___round___impl() argument
1086 x = PyFloat_AsDouble(self); in float___round___impl()
1141 float_conjugate_impl(PyObject *self) float_conjugate_impl() argument
1239 float_hex_impl(PyObject *self) float_hex_impl() argument
1569 float_as_integer_ratio_impl(PyObject *self) float_as_integer_ratio_impl() argument
1720 float___getnewargs___impl(PyObject *self) float___getnewargs___impl() argument
1807 float___format___impl(PyObject *self, PyObject *format_spec) float___format___impl() argument
[all...]
/third_party/node/tools/gyp/pylib/gyp/generator/
H A Dmsvs.py2402 def __init__(self, rule, spec):
2403 self.display_name = rule["rule_name"]
2405 self.rule_name = re.sub(r"\W", "_", self.display_name)
2409 self.target_name = "_" + self.rule_name
2410 self.after_targets = self.rule_name + "AfterTargets"
2411 self.before_targets = self
[all...]
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/
H A Dmsvs.py2394 def __init__(self, rule, spec):
2395 self.display_name = rule["rule_name"]
2397 self.rule_name = re.sub(r"\W", "_", self.display_name)
2401 self.target_name = "_" + self.rule_name
2402 self.after_targets = self.rule_name + "AfterTargets"
2403 self.before_targets = self
[all...]
/third_party/mesa3d/src/compiler/nir/
H A Dnir_intrinsics.py37 def __init__(self, c_data_type, name):
38 self.c_data_type = c_data_type
39 self.name = name
45 def __init__(self, name, src_components, dest_components,
80 self.name = name
81 self.num_srcs = len(src_components)
82 self.src_components = src_components
83 self.has_dest = (dest_components >= 0)
84 self.dest_components = dest_components
85 self
[all...]
/third_party/node/test/fixtures/wpt/webmessaging/broadcastchannel/resources/
H A Dworker.js14 if (self.gc) self.gc();
/third_party/ltp/testcases/kernel/power_management/
H A Dpm_ilb_test.py14 def __init__(self, msg):
15 self.msg = msg
H A Dpm_sched_domain.py14 def __init__(self, msg):
15 self.msg = msg
/third_party/python/Include/cpython/
H A Ddescrobject.h5 typedef PyObject *(*wrapperfunc)(PyObject *self, PyObject *args,
8 typedef PyObject *(*wrapperfunc_kwds)(PyObject *self, PyObject *args,
/third_party/skia/third_party/externals/spirv-cross/
H A Dspirv_reflect.cpp306 ir.for_each_typed_id<SPIRType>([&](uint32_t self, SPIRType &type) { in emit_types()
309 emit_type(self, emitted_open_tag); in emit_types()
395 json_stream->emit_json_key_value("type", "_" + std::to_string(membertype.self)); in emit_type_member()
428 auto &memb = ir.meta[type.self].members; in emit_type_member_qualifiers()
563 auto typeflags = ir.meta[type.self].decoration.decoration_flags; in emit_resources()
570 bool is_block = get_decoration_bitset(type.self).get(DecorationBlock) || in emit_resources()
571 get_decoration_bitset(type.self).get(DecorationBufferBlock); in emit_resources()
694 auto *type_meta = ir.find_meta(type.self); in to_member_name()
H A Dspirv_parser.cpp135 target.self = source.self; in parse()
517 // NOTE: The self member is also copied! For pointers and array modifiers this is a good thing in parse()
529 vecbase.self = id; in parse()
544 matrixbase.self = id; in parse()
572 // Do NOT set arraybase.self! in parse()
592 // Do NOT set arraybase.self! in parse()
619 type.self = id; in parse()
656 // Do NOT set ptrbase.self! in parse()
694 bool consider_aliasing = !ir.get_name(type.self) in parse()
[all...]
/third_party/skia/experimental/wasm-skp-debugger/
H A Ddebugger_bindings.cpp561 .function("imageUseInfoForFrameJs", optional_override([](SkpDebugPlayer& self, const int frame)->JSObject { in EMSCRIPTEN_BINDINGS()
563 return self.imageUseInfo(frame, -1); in EMSCRIPTEN_BINDINGS()
617 .function("_flush", optional_override([](SkSurface& self) { in EMSCRIPTEN_BINDINGS()
618 self.flushAndSubmit(false); in EMSCRIPTEN_BINDINGS()
620 .function("clear", optional_override([](SkSurface& self, JSColor color)->void { in EMSCRIPTEN_BINDINGS()
621 self.getCanvas()->clear(SkColor(color)); in EMSCRIPTEN_BINDINGS()
626 .function("clear", optional_override([](SkCanvas& self, JSColor color)->void { in EMSCRIPTEN_BINDINGS()
629 self.clear(SkColor(color)); in EMSCRIPTEN_BINDINGS()
/third_party/python/Modules/
H A Dsha512module.c486 SHA512Type_copy_impl(SHAobject *self, PyTypeObject *cls) in SHA512Type_copy_impl() argument
492 if (Py_IS_TYPE((PyObject*)self, st->sha512_type)) { in SHA512Type_copy_impl()
503 SHAcopy(self, newobj); in SHA512Type_copy_impl()
514 SHA512Type_digest_impl(SHAobject *self) in SHA512Type_digest_impl() argument
520 SHAcopy(self, &temp); in SHA512Type_digest_impl()
522 return PyBytes_FromStringAndSize((const char *)digest, self->digestsize); in SHA512Type_digest_impl()
532 SHA512Type_hexdigest_impl(SHAobject *self) in SHA512Type_hexdigest_impl() argument
539 SHAcopy(self, &temp); in SHA512Type_hexdigest_impl()
542 return _Py_strhex((const char *)digest, self->digestsize); in SHA512Type_hexdigest_impl()
555 SHA512Type_update(SHAobject *self, PyObjec argument
577 SHA512_get_block_size(PyObject *self, void *closure) SHA512_get_block_size() argument
583 SHA512_get_name(PyObject *self, void *closure) SHA512_get_name() argument
[all...]
/third_party/node/lib/internal/http2/
H A Dcore.js329 function emit(self, ...args) {
330 ReflectApply(self.emit, self, args);
1085 function emitClose(self, error) {
1087 self.emit('error', error);
1088 self.emit('close');
2397 function callTimeout(self, kSession) {
2400 if (self.destroyed)
2407 if (self[kState].writeQueueSize > 0) {
2408 const handle = kSession ? self[kSessio
[all...]
/third_party/lzma/C/
H A Dwarn_gcc.mak13 -Winit-self \
36 -Winit-self \
/third_party/node/test/fixtures/wpt/common/
H A Dsubset-tests-by-key.js81 self.shouldRunSubTest = shouldRunSubTest;
82 self.subsetTestByKey = subsetTestByKey;
H A Dsubset-tests.js58 self.shouldRunSubTest = shouldRunSubTest;
59 self.subsetTest = subsetTest;
/third_party/musl/porting/liteos_a/user/src/thread/
H A Dpthread_join.c14 pthread_t self = __pthread_self(); in __pthread_timedjoin_np() local
18 if (t == self) { in __pthread_timedjoin_np()
/third_party/musl/src/thread/powerpc64/
H A Dsyscall_cp.s13 # at enter: r3 = pointer to self->cancel, r4: syscall no, r5: first arg, r6: 2nd, r7: 3rd, r8: 4th, r9: 5th, r10: 6th
15 # if (self->cancel) goto __cp_cancel

Completed in 21 milliseconds

1...<<111112113114115116117118119120>>...131