/external/libfuse/lib/ |
D | fuse_opt.c | 58 char *newarg; in fuse_opt_add_arg() local 62 newarg = strdup(arg); in fuse_opt_add_arg() 63 if (!newarg) in fuse_opt_add_arg() 68 free(newarg); in fuse_opt_add_arg() 74 args->argv[args->argc++] = newarg; in fuse_opt_add_arg() 87 char *newarg = args->argv[args->argc - 1]; in fuse_opt_insert_arg_common() local 90 args->argv[pos] = newarg; in fuse_opt_insert_arg_common() 255 char *newarg; in process_opt_sep_arg() local 262 newarg = malloc(sep + strlen(param) + 1); in process_opt_sep_arg() 263 if (!newarg) in process_opt_sep_arg() [all …]
|
/external/llvm-project/clang/test/SemaObjC/ |
D | method-unused-attribute.m | 14 …rect_use_of_unused: (void *) __attribute__((unused)) notice : (id) __attribute__((unused)) newarg{
|
/external/clang/test/SemaObjC/ |
D | method-unused-attribute.m | 10 …rect_use_of_unused: (void *) __attribute__((unused)) notice : (id) __attribute__((unused)) newarg{
|
/external/python/cpython2/Objects/ |
D | classobject.c | 2587 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/ |
D | test_random.py | 620 def __init__(self, newarg=None): argument 622 Subclass(newarg=1)
|
D | test_deque.py | 679 def __init__(self, newarg=1): argument 685 SubclassWithKwargs(newarg=1)
|
D | test_array.py | 17 def __init__(self, typecode, newarg=None): argument 812 ArraySubclassWithKwargs('b', newarg=1)
|
D | test_bytes.py | 1107 def __init__(self, newarg=1, *args, **kwargs): argument 1111 x = subclass(newarg=4, source=b"abcd")
|
D | test_itertools.py | 1554 def __init__(self, newarg=None, *args): argument 1557 Subclass(newarg=1)
|
D | test_set.py | 594 def __init__(self, iterable=[], newarg=None): argument 601 SetSubclassWithKeywordArgs(newarg=1)
|
/external/python/cpython3/Lib/test/ |
D | test_deque.py | 932 def __init__(self, newarg=1): argument 938 SubclassWithKwargs(newarg=1)
|
D | test_random.py | 1127 def __init__(self, newarg=None): argument 1129 Subclass(newarg=1)
|
D | test_array.py | 24 def __init__(self, typecode, newarg=None): argument 1023 ArraySubclassWithKwargs('b', newarg=1)
|
D | test_set.py | 660 def __init__(self, iterable=[], newarg=None): argument 667 SetSubclassWithKeywordArgs(newarg=1)
|
D | test_bytes.py | 1963 def __init__(me, newarg=1, *args, **kwargs): argument 1968 x = subclass(newarg=4, source=b"abcd")
|
D | test_itertools.py | 2153 def __init__(self, newarg=None, *args): argument 2156 Subclass(newarg=1)
|