Lines Matching refs:aware
606 time_alloc(PyTypeObject *type, Py_ssize_t aware) in time_alloc() argument
611 PyObject_MALLOC(aware ? in time_alloc()
621 datetime_alloc(PyTypeObject *type, Py_ssize_t aware) in datetime_alloc() argument
626 PyObject_MALLOC(aware ? in datetime_alloc()
675 char aware = tzinfo != Py_None; in new_datetime_ex() local
677 self = (PyDateTime_DateTime *) (type->tp_alloc(type, aware)); in new_datetime_ex()
679 self->hastzinfo = aware; in new_datetime_ex()
685 if (aware) { in new_datetime_ex()
703 char aware = tzinfo != Py_None; in new_time_ex() local
705 self = (PyDateTime_Time *) (type->tp_alloc(type, aware)); in new_time_ex()
707 self->hastzinfo = aware; in new_time_ex()
713 if (aware) { in new_time_ex()
3164 char aware; in time_new() local
3174 aware = (char)(tzinfo != Py_None); in time_new()
3175 me = (PyDateTime_Time *) (type->tp_alloc(type, aware)); in time_new()
3181 me->hastzinfo = aware; in time_new()
3182 if (aware) { in time_new()
3693 char aware; in datetime_new() local
3703 aware = (char)(tzinfo != Py_None); in datetime_new()
3704 me = (PyDateTime_DateTime *) (type->tp_alloc(type , aware)); in datetime_new()
3710 me->hastzinfo = aware; in datetime_new()
3711 if (aware) { in datetime_new()