Home
last modified time | relevance | path

Searched refs:newarg (Results 1 – 8 of 8) 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.c2589 PyObject *newarg = PyTuple_New(argcount + 1); in instancemethod_call() local
2591 if (newarg == NULL) in instancemethod_call()
2594 PyTuple_SET_ITEM(newarg, 0, self); in instancemethod_call()
2598 PyTuple_SET_ITEM(newarg, i+1, v); in instancemethod_call()
2600 arg = newarg; in instancemethod_call()
/external/python/cpython2/Lib/test/
Dtest_random.py599 def __init__(self, newarg=None): argument
601 Subclass(newarg=1)
Dtest_deque.py664 def __init__(self, newarg=1): argument
670 SubclassWithKwargs(newarg=1)
Dtest_bytes.py1084 def __init__(self, newarg=1, *args, **kwargs): argument
1088 x = subclass(newarg=4, source=b"abcd")
Dtest_array.py17 def __init__(self, typecode, newarg=None): argument
812 ArraySubclassWithKwargs('b', newarg=1)
Dtest_set.py594 def __init__(self, iterable=[], newarg=None): argument
601 SetSubclassWithKeywordArgs(newarg=1)
Dtest_itertools.py1474 def __init__(self, newarg=None, *args): argument
1477 Subclass(newarg=1)