Home
last modified time | relevance | path

Searched refs:self (Results 2776 - 2800 of 3325) sorted by relevance

1...<<111112113114115116117118119120>>...133

/third_party/python/Modules/
H A Dmd5module.c373 MD5Type_copy_impl(MD5object *self, PyTypeObject *cls) in MD5Type_copy_impl() argument
382 newobj->hash_state = self->hash_state; in MD5Type_copy_impl()
393 MD5Type_digest_impl(MD5object *self) in MD5Type_digest_impl() argument
399 temp = self->hash_state; in MD5Type_digest_impl()
411 MD5Type_hexdigest_impl(MD5object *self) in MD5Type_hexdigest_impl() argument
418 temp = self->hash_state; in MD5Type_hexdigest_impl()
434 MD5Type_update(MD5object *self, PyObject *obj) in MD5Type_update() argument
441 md5_process(&self->hash_state, buf.buf, buf.len); in MD5Type_update()
456 MD5_get_block_size(PyObject *self, void *closure) in MD5_get_block_size() argument
462 MD5_get_name(PyObject *self, voi argument
468 md5_get_digest_size(PyObject *self, void *closure) md5_get_digest_size() argument
[all...]
H A Dsha256module.c432 SHA256Type_copy_impl(SHAobject *self, PyTypeObject *cls) in SHA256Type_copy_impl() argument
437 if (Py_IS_TYPE(self, state->sha256_type)) { in SHA256Type_copy_impl()
447 SHAcopy(self, newobj); in SHA256Type_copy_impl()
458 SHA256Type_digest_impl(SHAobject *self) in SHA256Type_digest_impl() argument
464 SHAcopy(self, &temp); in SHA256Type_digest_impl()
466 return PyBytes_FromStringAndSize((const char *)digest, self->digestsize); in SHA256Type_digest_impl()
476 SHA256Type_hexdigest_impl(SHAobject *self) in SHA256Type_hexdigest_impl() argument
483 SHAcopy(self, &temp); in SHA256Type_hexdigest_impl()
486 return _Py_strhex((const char *)digest, self->digestsize); in SHA256Type_hexdigest_impl()
499 SHA256Type_update(SHAobject *self, PyObjec argument
521 SHA256_get_block_size(PyObject *self, void *closure) SHA256_get_block_size() argument
527 SHA256_get_name(PyObject *self, void *closure) SHA256_get_name() argument
[all...]
/third_party/node/src/
H A Dspawn_sync.cc318 SyncProcessStdioPipe* self = in AllocCallback() local
320 self->OnAlloc(suggested_size, buf); in AllocCallback()
327 SyncProcessStdioPipe* self = in ReadCallback() local
329 self->OnRead(buf, nread); in ReadCallback()
334 SyncProcessStdioPipe* self = in WriteCallback() local
336 self->OnWriteDone(result); in WriteCallback()
341 SyncProcessStdioPipe* self = in ShutdownCallback() local
351 self->OnShutdownDone(result); in ShutdownCallback()
356 SyncProcessStdioPipe* self = in CloseCallback() local
358 self in CloseCallback()
1088 SyncProcessRunner* self = reinterpret_cast<SyncProcessRunner*>(handle->data); ExitCallback() local
1095 SyncProcessRunner* self = reinterpret_cast<SyncProcessRunner*>(handle->data); KillTimerCallback() local
[all...]
/third_party/googletest/googletest/test/
H A Dgoogletest-output-test.py262 def RemoveUnsupportedTests(self, test_output):
281 def testOutput(self):
300 self.assertEqual(normalized_golden, normalized_actual,
309 RemoveTestCounts(self.RemoveUnsupportedTests(normalized_golden)))
322 self.assertEqual(normalized_golden, normalized_actual)
/third_party/protobuf/php/src/Google/Protobuf/Internal/
H A DCodedInputStream.php65 $this->recursion_budget = self::DEFAULT_RECURSION_LIMIT;
66 $this->recursion_limit = self::DEFAULT_RECURSION_LIMIT;
67 $this->total_bytes_limit = self::DEFAULT_TOTAL_BYTES_LIMIT;
160 if ($count === self::MAX_VARINT_BYTES) {
191 if ($count === self::MAX_VARINT_BYTES) {
/third_party/protobuf/python/
H A Dsetup.py116 def run(self):
125 _clean.run(self)
128 def run(self):
145 _build_py.run(self)
149 def run(self):
/third_party/musl/src/process/
H A Dfork.c63 pthread_t self=__pthread_self(), next=self->next; in fork() local
68 for (pthread_t td=next; td!=self; td=td->next) in fork()
/third_party/node/deps/v8/src/torque/
H A Dsource-positions.cc59 SourceFileMap& self = Get(); in AllSources() local
61 result.reserve(static_cast<int>(self.sources_.size())); in AllSources()
62 for (int i = 0; i < static_cast<int>(self.sources_.size()); ++i) { in AllSources()
/third_party/python/Lib/http/
H A D__init__.py169 def __repr__(self):
170 return "<%s.%s>" % (self.__class__.__name__, self._name_)
/third_party/python/Lib/lib2to3/fixes/
H A Dfix_except.py47 def transform(self, node, results):
48 syms = self.syms
60 new_N = Name(self.new_name(), prefix=" ")
H A Dfix_raise.py38 def transform(self, node, results):
39 syms = self.syms
44 self.cannot_convert(node, msg)
H A Dfix_has_key.py71 def transform(self, node, results):
73 syms = self.syms
75 self.pattern.match(node.parent)):
/third_party/python/Lib/distutils/tests/
H A Dtest_text_file.py17 def test_class(self):
52 self.assertEqual(result, expected_result)
54 tmpdir = self.mkdtemp()
/third_party/skia/third_party/externals/swiftshader/third_party/marl/src/
H A Dosfiber_windows.h48 static inline void WINAPI run(void* self);
94 void WINAPI OSFiber::run(void* self) { in run() argument
96 std::swap(func, reinterpret_cast<OSFiber*>(self)->target); in run()
/third_party/skia/tools/gdb/
H A Dbitmap.py46 def __init__(self):
47 super(sk_bitmap, self).__init__('sk_bitmap',
51 def invoke(self, arg, from_tty):
/third_party/python/Objects/clinic/
H A Ddescrobject.c.h48 " def getx(self): return self._x\n"
49 " def setx(self, value): self._x = value\n"
50 " def delx(self): del self._x\n"
57 " def x(self):\n"
59 " return self._x\n"
61 " def x(self, value):\n"
62 " self
72 property_init(PyObject *self, PyObject *args, PyObject *kwargs) property_init() argument
[all...]
H A Dclassobject.c.h6 "__reduce__($self, /)\n"
14 method___reduce___impl(PyMethodObject *self);
17 method___reduce__(PyMethodObject *self, PyObject *Py_UNUSED(ignored)) in method___reduce__() argument
19 return method___reduce___impl(self); in method___reduce__()
/third_party/musl/src/thread/
H A D__tls_get_addr.c5 pthread_t self = __pthread_self(); in __tls_get_addr() local
6 return (void *)(self->dtv[v[0]] + v[1]); in __tls_get_addr()
/third_party/python/Lib/test/test_importlib/
H A Dstubs.py9 def setUpPyfakefs(self):
10 self.skipTest("pyfakefs not available")
/third_party/protobuf/python/google/protobuf/internal/
H A Dmessage_listener.py50 def Modified(self):
77 def Modified(self):
/third_party/libunwind/libunwind/tests/
H A Dtest-ptrace-misc.c36 pid_t self; variable
102 kill (self, SIGUSR1); /* tell test-ptrace to start single-stepping */ in bar()
104 kill (self, SIGUSR2); /* tell test-ptrace to stop single-stepping */ in bar()
116 self = getpid (); in main()
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_getschedparam/
H A D1-3.c73 pthread_t self = pthread_self(); in threaded() local
75 check_param(self, SCHED_RR, sched_get_priority_min(SCHED_RR)); in threaded()
89 check_param(self, SCHED_FIFO, sched_get_priority_min(SCHED_FIFO)); in threaded()
103 check_param(self, SCHED_FIFO, sched_get_priority_max(SCHED_FIFO)); in threaded()
/third_party/skia/third_party/externals/dawn/src/dawn_wire/server/
H A DServer.cpp118 data->info->self = ObjectHandle{id, generation}; in InjectDevice()
133 info->server->OnUncapturedError(info->self, type, message); in InjectDevice()
142 info->server->OnLogging(info->self, type, message); in InjectDevice()
149 info->server->OnDeviceLost(info->self, reason, message); in InjectDevice()
/third_party/skia/third_party/externals/dawn/generator/templates/
H A Dmock_webgpu.h51 virtual void {{as_MethodSuffix(type.name, Name("reference"))}}({{as_cType(type.name)}} self) = 0; member in ProcTableAsClass
52 virtual void {{as_MethodSuffix(type.name, Name("release"))}}({{as_cType(type.name)}} self) = 0; member in ProcTableAsClass
119 MOCK_METHOD(void, {{as_MethodSuffix(type.name, Name("reference"))}}, ({{as_cType(type.name)}} self), (override));
120 MOCK_METHOD(void, {{as_MethodSuffix(type.name, Name("release"))}}, ({{as_cType(type.name)}} self), (override));
/third_party/typescript/tests/baselines/reference/
H A DtypeofThis.js16 var self: typeof this = this;
17 self.data;
161 var self = this;
162 self.data;

Completed in 12 milliseconds

1...<<111112113114115116117118119120>>...133