Home
last modified time | relevance | path

Searched refs:newarg (Results 1 – 14 of 14) sorted by relevance

/external/clang/test/SemaObjC/
Dmethod-unused-attribute.m10 …rect_use_of_unused: (void *) __attribute__((unused)) notice : (id) __attribute__((unused)) newarg{
/external/python/cpython2/Objects/
Dclassobject.c2587 PyObject *newarg = PyTuple_New(argcount + 1); in instancemethod_call() local
2589 if (newarg == NULL) in instancemethod_call()
2592 PyTuple_SET_ITEM(newarg, 0, self); in instancemethod_call()
2596 PyTuple_SET_ITEM(newarg, i+1, v); in instancemethod_call()
2598 arg = newarg; in instancemethod_call()
/external/python/cpython2/Lib/test/
Dtest_random.py620 def __init__(self, newarg=None): argument
622 Subclass(newarg=1)
Dtest_deque.py679 def __init__(self, newarg=1): argument
685 SubclassWithKwargs(newarg=1)
Dtest_array.py17 def __init__(self, typecode, newarg=None): argument
812 ArraySubclassWithKwargs('b', newarg=1)
Dtest_bytes.py1107 def __init__(self, newarg=1, *args, **kwargs): argument
1111 x = subclass(newarg=4, source=b"abcd")
Dtest_itertools.py1554 def __init__(self, newarg=None, *args): argument
1557 Subclass(newarg=1)
Dtest_set.py594 def __init__(self, iterable=[], newarg=None): argument
601 SetSubclassWithKeywordArgs(newarg=1)
/external/python/cpython3/Lib/test/
Dtest_random.py951 def __init__(self, newarg=None): argument
953 Subclass(newarg=1)
Dtest_deque.py912 def __init__(self, newarg=1): argument
918 SubclassWithKwargs(newarg=1)
Dtest_array.py24 def __init__(self, typecode, newarg=None): argument
1043 ArraySubclassWithKwargs('b', newarg=1)
Dtest_set.py660 def __init__(self, iterable=[], newarg=None): argument
667 SetSubclassWithKeywordArgs(newarg=1)
Dtest_bytes.py1829 def __init__(me, newarg=1, *args, **kwargs): argument
1834 x = subclass(newarg=4, source=b"abcd")
Dtest_itertools.py2097 def __init__(self, newarg=None, *args): argument
2100 Subclass(newarg=1)