/external/libnl/python/netlink/ |
D | util.py | 21 def _color(t, c): argument 100 def get_value(self, key, args, kwds): argument 161 def __cmp__(self, other): argument 174 def __cmp__(self, other): argument
|
/external/python/cpython2/Objects/ |
D | typeobject.c | 657 int c; in type_richcompare() local 738 type_call(PyTypeObject *type, PyObject *args, PyObject *kwds) in type_call() 804 PyType_GenericNew(PyTypeObject *type, PyObject *args, PyObject *kwds) in PyType_GenericNew() 1476 PyObject *c = PyList_GET_ITEM(L, remain[i]); in set_mro_error() local 2062 type_init(PyObject *cls, PyObject *args, PyObject *kwds) in type_init() 2094 type_new(PyTypeObject *metatype, PyObject *args, PyObject *kwds) in type_new() 2971 excess_args(PyObject *args, PyObject *kwds) in excess_args() 2978 object_init(PyObject *self, PyObject *args, PyObject *kwds) in object_init() 3002 object_new(PyTypeObject *type, PyObject *args, PyObject *kwds) in object_new() 4422 PyObject *other; local [all …]
|
D | bytearrayobject.c | 337 bytearray_iconcat(PyByteArrayObject *self, PyObject *other) in bytearray_iconcat() 772 bytearray_init(PyByteArrayObject *self, PyObject *args, PyObject *kwds) in bytearray_init() 963 register char c; in bytearray_repr() local 1040 bytearray_richcompare(PyObject *self, PyObject *other, int op) in bytearray_richcompare() 1467 register Py_ssize_t i, c; in bytearray_translate() local 1555 #define findchar(target, target_len, c) \ argument 1569 countchar(const char *target, Py_ssize_t target_len, char c, Py_ssize_t maxcount) in countchar() 2709 hex_digit_to_int(char c) in hex_digit_to_int()
|
/external/python/cpython3/Objects/ |
D | typeobject.c | 911 type_call(PyTypeObject *type, PyObject *args, PyObject *kwds) in type_call() 993 PyType_GenericNew(PyTypeObject *type, PyObject *args, PyObject *kwds) in PyType_GenericNew() 1647 PyObject *c = PyTuple_GET_ITEM(L, remain[i]); in set_mro_error() local 2274 type_init(PyObject *cls, PyObject *args, PyObject *kwds) in type_init() 2349 type_new(PyTypeObject *metatype, PyObject *args, PyObject *kwds) in type_new() 3645 excess_args(PyObject *args, PyObject *kwds) in excess_args() 3652 object_init(PyObject *self, PyObject *args, PyObject *kwds) in object_init() 3672 object_new(PyTypeObject *type, PyObject *args, PyObject *kwds) in object_new() 3781 object_richcompare(PyObject *self, PyObject *other, int op) in object_richcompare() 5456 PyObject *other; in wrap_binaryfunc() local [all …]
|
D | bytearrayobject.c | 311 bytearray_iconcat(PyByteArrayObject *self, PyObject *other) in bytearray_iconcat() 761 bytearray_init(PyByteArrayObject *self, PyObject *args, PyObject *kwds) in bytearray_init() 923 char c; in bytearray_repr() local 1010 bytearray_richcompare(PyObject *self, PyObject *other, int op) in bytearray_richcompare() 1209 Py_ssize_t i, c; in bytearray_translate_impl() local
|
/external/python/cpython2/Modules/ |
D | _struct.c | 67 typedef struct { char c; short x; } st_short; member 68 typedef struct { char c; int x; } st_int; member 69 typedef struct { char c; long x; } st_long; member 70 typedef struct { char c; float x; } st_float; member 71 typedef struct { char c; double x; } st_double; member 72 typedef struct { char c; void *x; } st_void_p; member 84 typedef struct { char c; PY_LONG_LONG x; } s_long_long; member 90 typedef struct { char c; _Bool x; } s_bool; member 1189 getentry(int c, const formatdef *f) in getentry() 1204 align(Py_ssize_t size, char c, const formatdef *e) in align() [all …]
|
D | arraymodule.c | 1750 arrayobject* other; in array_ass_subscr() local 1957 array_new(PyTypeObject *type, PyObject *args, PyObject *kwds) in array_new() 1959 int c = -1; in array_new() local
|
/external/python/cpython3/Modules/_decimal/ |
D | _decimal.c | 1226 context_init(PyObject *self, PyObject *args, PyObject *kwds) in context_init() 1578 ctxmanager_new(PyTypeObject *type UNUSED, PyObject *args, PyObject *kwds) in ctxmanager_new() 2642 dec_new(PyTypeObject *type, PyObject *args, PyObject *kwds) in dec_new() 2723 #define CONVERT_TERNOP(a, b, c, v, w, x, context) \ argument 2752 #define CONVERT_TERNOP_RAISE(a, b, c, v, w, x, context) \ argument 2879 Py_complex c = PyComplex_AsCComplex(w); in convert_op_cmp() local 3365 PyDec_ToIntegralValue(PyObject *dec, PyObject *args, PyObject *kwds) in PyDec_ToIntegralValue() 3406 PyDec_ToIntegralExact(PyObject *dec, PyObject *args, PyObject *kwds) in PyDec_ToIntegralExact() 3915 PyObject *a, *b, *c = NULL; in nm_mpd_qpow() local 4105 dec_mpd_to_eng(PyObject *self, PyObject *args, PyObject *kwds) in dec_mpd_to_eng() [all …]
|
/external/python/cpython3/Lib/test/ |
D | test_descr.py | 98 def sliceop_test(self, a, b, c, res, expr="a[b:c]", meth="__getitem__"): argument 131 def set2op_test(self, a, b, c, res, stmt="a[b]=c", meth="__setitem__"): argument 150 def setsliceop_test(self, a, b, c, d, res, stmt="a[b:c]=d", meth="__setitem__"): argument 241 def __add__(self, other): argument 263 def __new__(cls, *args, **kwds): 1260 def __eq__(self, other): argument 2098 def __eq__(self, other): argument 2100 def __ne__(self, other): argument 2102 def __ge__(self, other): argument 2104 def __gt__(self, other): argument [all …]
|
/external/python/cpython2/Lib/test/ |
D | test_descr.py | 107 def ternop_test(self, a, b, c, res, expr="a[b:c]", meth="__getslice__"): argument 140 def set2op_test(self, a, b, c, res, stmt="a[b]=c", meth="__setitem__"): argument 159 def set3op_test(self, a, b, c, d, res, stmt="a[b:c]=d", meth="__setslice__"): argument 254 def __add__(self, other): argument 285 def __new__(cls, *args, **kwds): 1150 def __cmp__(self, other): argument 1237 def __cmp__(self, other): argument 1975 def __eq__(self, other): argument 1977 def __ne__(self, other): argument 1979 def __cmp__(self, other): argument [all …]
|
/external/python/cpython3/Modules/ |
D | _struct.c | 61 typedef struct { char c; short x; } st_short; member 62 typedef struct { char c; int x; } st_int; member 63 typedef struct { char c; long x; } st_long; member 64 typedef struct { char c; float x; } st_float; member 65 typedef struct { char c; double x; } st_double; member 66 typedef struct { char c; void *x; } st_void_p; member 67 typedef struct { char c; size_t x; } st_size_t; member 68 typedef struct { char c; _Bool x; } st_bool; member 81 typedef struct { char c; long long x; } s_long_long; member 1238 getentry(int c, const formatdef *f) in getentry() [all …]
|
D | arraymodule.c | 2397 arrayobject* other; in array_ass_subscr() local 2624 array_new(PyTypeObject *type, PyObject *args, PyObject *kwds) in array_new() 2626 int c; in array_new() local 2742 arrayobject *other = (arrayobject *)initial; in array_new() local
|
D | _testcapimodule.c | 1009 int a, b, c; in getargs_tuple() local 1290 char c; in getargs_c() local 1299 int c; in getargs_C() local 4960 matmulType_matmul(PyObject *self, PyObject *other) in matmulType_matmul() 4966 matmulType_imatmul(PyObject *self, PyObject *other) in matmulType_imatmul() 5066 awaitObject_new(PyTypeObject *type, PyObject *args, PyObject *kwds) in awaitObject_new() 5195 recurse_infinitely_error_init(PyObject *self, PyObject *args, PyObject *kwds) in recurse_infinitely_error_init()
|
/external/icu/android_icu4j/src/main/java/android/icu/util/ |
D | ULocale.java | 448 public ULocale(String a, String b, String c) { in ULocale() 714 public int compareTo(ULocale other) { in compareTo() 1999 public int compareTo(ULocaleAcceptLanguageQ other) { in parseAcceptLanguage() 2027 char c = acceptLanguage.charAt(n); in parseAcceptLanguage() local 3713 TreeMap<String, String> kwds = new TreeMap<>(); in getInstance() local
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/ |
D | ULocale.java | 490 public ULocale(String a, String b, String c) { in ULocale() 765 public int compareTo(ULocale other) { in compareTo() 2119 public int compareTo(ULocaleAcceptLanguageQ other) { in parseAcceptLanguage() 2147 char c = acceptLanguage.charAt(n); in parseAcceptLanguage() local 3882 TreeMap<String, String> kwds = new TreeMap<>(); in getInstance() local
|
/external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base/src/com/ibm/icu/util/ |
D | ULocale.java | 472 public ULocale(String a, String b, String c) { in ULocale() 1896 public int compareTo(ULocaleAcceptLanguageQ other) { in parseAcceptLanguage() 1924 char c = acceptLanguage.charAt(n); in parseAcceptLanguage() local 3120 TreeMap<String, String> kwds = new TreeMap<String, String>(); in getInstance() local
|
/external/cldr/tools/java/libs/ |
D | icu4j.jar | ... boolean contains (int)
int lead
int twoBits
int c
public final int span (java.lang.CharSequence ... |