Home
Sort by
last modified time
|
relevance
|
path
Repository(s)
applications
arkcompiler
base
build
commonlibrary
developtools
device
docs
domains
drivers
foundation
ide
interface
kernel
napi_generator
productdefine
test
third_party
vendor
select all
invert selection
clear
Full Search
Search through all text tokens(words,strings,identifiers,numbers) in index.
Definition
Only finds symbol definitions(where e.g a variable(function,...) is defined).
Symbol
Only finds symbol(e.g. methods classes,function,variables).
File Path
Path of the source file(use "/").If you want just exact path,enclose it in "".Source files end with: .jar/.bz2/.a/.h/.java...
History
History log comments.
Type
Any
Bzip(2)
C
Clojure
C#
C++
ELF
Erlang
Image file
Fortran
Golang
GZIP
Haskell
Jar
Java
Java class
JavaScript
Lisp
Lua
Pascal
Perl
PHP
Plain Text
PL/SQL
Python
Rust
Scala
Shell script
SQL
Tar
Tcl
Troff
UUEncoded
Visual Basic
XML
Zip
Type of analyzer used to filter file types include with selected(e.g. just C sources).
Help
Searched
refs:nkwargs
(Results
1 - 5
of
5
) sorted by relevance
/third_party/python/Python/
H
A
D
getargs.c
1629
Py_ssize_t nargs,
nkwargs
;
in vgetargskeywords()
local
1678
nkwargs
= (kwargs == NULL) ? 0 : PyDict_GET_SIZE(kwargs);
in vgetargskeywords()
1679
if (nargs +
nkwargs
> len) {
in vgetargskeywords()
1689
nargs +
nkwargs
);
in vgetargskeywords()
1763
else if (
nkwargs
&& i >= pos) {
in vgetargskeywords()
1766
--
nkwargs
;
in vgetargskeywords()
1809
if (!
nkwargs
&& !skip) {
in vgetargskeywords()
1844
if (
nkwargs
> 0) {
in vgetargskeywords()
2034
Py_ssize_t i,
nkwargs
;
in find_keyword()
local
2036
nkwargs
in find_keyword()
2070
Py_ssize_t
nkwargs
;
vgetargskeywordsfast_impl()
local
2304
Py_ssize_t
nkwargs
;
_PyArg_UnpackKeywords()
local
2480
Py_ssize_t
nkwargs
;
_PyArg_UnpackKeywordsWithVararg()
local
[all...]
/third_party/python/Objects/
H
A
D
enumobject.c
105
Py_ssize_t
nkwargs
= 0;
in enumerate_vectorcall()
local
107
nkwargs
= PyTuple_GET_SIZE(kwnames);
in enumerate_vectorcall()
111
if (nargs +
nkwargs
== 2) {
in enumerate_vectorcall()
112
if (
nkwargs
== 1) {
in enumerate_vectorcall()
116
} else if (
nkwargs
== 2) {
in enumerate_vectorcall()
133
if (nargs +
nkwargs
== 1) {
in enumerate_vectorcall()
134
if (
nkwargs
== 1 && !check_keyword(kwnames, 0, "iterable")) {
in enumerate_vectorcall()
147
"enumerate() takes at most 2 arguments (%d given)", nargs +
nkwargs
);
in enumerate_vectorcall()
H
A
D
call.c
937
Py_ssize_t
nkwargs
;
in _PyStack_AsDict()
local
940
nkwargs
= PyTuple_GET_SIZE(kwnames);
in _PyStack_AsDict()
942
values, 1,
nkwargs
);
in _PyStack_AsDict()
967
Py_ssize_t
nkwargs
= PyDict_GET_SIZE(kwargs);
in _PyStack_UnpackDict()
local
969
* in this check cannot overflow: both maxnargs and
nkwargs
are
in _PyStack_UnpackDict()
972
if (nargs > maxnargs -
nkwargs
) {
in _PyStack_UnpackDict()
978
PyObject **stack = PyMem_Malloc((1 + nargs +
nkwargs
) * sizeof(args[0]));
in _PyStack_UnpackDict()
984
PyObject *kwnames = PyTuple_New(
nkwargs
);
in _PyStack_UnpackDict()
H
A
D
classobject.c
64
Py_ssize_t
nkwargs
= (kwnames == NULL) ? 0 : PyTuple_GET_SIZE(kwnames);
in method_vectorcall()
local
65
Py_ssize_t totalargs = nargs +
nkwargs
;
in method_vectorcall()
/third_party/python/Lib/
H
A
D
inspect.py
1317
nkwargs
= co.co_kwonlyargcount
1319
kwonlyargs = list(names[nargs:nargs+
nkwargs
])
1322
nargs +=
nkwargs
Completed in 10 milliseconds