Home
last modified time | relevance | path

Searched refs:T_BOOL (Results 1 – 24 of 24) sorted by relevance

/external/python/cpython2/Lib/test/
Dtest_structmembers.py19 ts.T_BOOL = True
20 self.assertEqual(ts.T_BOOL, True)
21 ts.T_BOOL = False
22 self.assertEqual(ts.T_BOOL, False)
/external/python/cpython3/Lib/test/
Dtest_structmembers.py32 ts.T_BOOL = True
33 self.assertEqual(ts.T_BOOL, True)
34 ts.T_BOOL = False
35 self.assertEqual(ts.T_BOOL, False)
/external/python/cpython3/Python/
Dstructmember.c15 case T_BOOL: in PyMember_GetOne()
127 case T_BOOL:{ in PyMember_SetOne()
/external/python/cpython3/Include/
Dstructmember.h47 #define T_BOOL 14 macro
/external/python/cpython2/Include/
Dstructmember.h66 #define T_BOOL 14 macro
/external/python/cpython2/Python/
Dstructmember.c64 case T_BOOL: in PyMember_GetOne()
199 case T_BOOL:{ in PyMember_SetOne()
/external/python/cpython3/Modules/
D_bz2module.c696 {"eof", T_BOOL, offsetof(BZ2Decompressor, eof),
700 {"needs_input", T_BOOL, offsetof(BZ2Decompressor, needs_input), READONLY,
D_json.c38 {"strict", T_BOOL, offsetof(PyScannerObject, strict), READONLY, "strict"},
68 {"sort_keys", T_BOOL, offsetof(PyEncoderObject, sort_keys), READONLY, "sort_keys"},
69 {"skipkeys", T_BOOL, offsetof(PyEncoderObject, skipkeys), READONLY, "skipkeys"},
D_lzmamodule.c1257 {"eof", T_BOOL, offsetof(Decompressor, eof), READONLY,
1259 {"needs_input", T_BOOL, offsetof(Decompressor, needs_input), READONLY,
Dzlibmodule.c1157 {"eof", T_BOOL, COMP_OFF(eof), READONLY},
D_testcapimodule.c4837 {"T_BOOL", T_BOOL, offsetof(test_structmembers, structmembers.bool_member), 0, NULL},
/external/u-boot/tools/buildman/
Dkconfiglib.py927 elif t0 in (T_BOOL, T_TRISTATE, T_INT, T_HEX, T_STRING):
3473 T_BOOL, T_TRISTATE, T_HEX, T_INT, T_STRING,
3490 "prompt": T_PROMPT, "default": T_DEFAULT, "bool": T_BOOL, "boolean": T_BOOL,
3503 STRING_LEX = frozenset((T_BOOL, T_TRISTATE, T_INT, T_HEX, T_STRING, T_CHOICE,
3525 TOKEN_TO_TYPE = {T_BOOL: BOOL, T_TRISTATE: TRISTATE, T_STRING: STRING,
/external/python/cpython3/Objects/
Dframeobject.c19 {"f_trace_lines", T_BOOL, OFF(f_trace_lines), 0},
20 {"f_trace_opcodes", T_BOOL, OFF(f_trace_opcodes), 0},
Dgenobject.c711 {"gi_running", T_BOOL, offsetof(PyGenObject, gi_running), READONLY},
950 {"cr_running", T_BOOL, offsetof(PyCoroObject, cr_running), READONLY},
1348 {"ag_running", T_BOOL, offsetof(PyAsyncGenObject, ag_running), READONLY},
Dexceptions.c351 {"__suppress_context__", T_BOOL,
/external/python/cpython3/Modules/_io/
Dbufferedio.c2414 {"_finalizing", T_BOOL, offsetof(buffered, finalizing), 0},
2501 {"_finalizing", T_BOOL, offsetof(buffered, finalizing), 0},
2675 {"_finalizing", T_BOOL, offsetof(buffered, finalizing), 0},
Dfileio.c1182 {"_finalizing", T_BOOL, offsetof(fileio, finalizing), 0},
Dtextio.c3150 {"line_buffering", T_BOOL, offsetof(textio, line_buffering), READONLY},
3151 {"write_through", T_BOOL, offsetof(textio, write_through), READONLY},
3152 {"_finalizing", T_BOOL, offsetof(textio, finalizing), 0},
Dwinconsoleio.c1119 {"_finalizing", T_BOOL, offsetof(winconsoleio, finalizing), 0},
/external/python/cpython3/Doc/c-api/
Dstructures.rst280 T_BOOL char
/external/python/cpython2/Doc/c-api/
Dstructures.rst304 T_BOOL char
/external/python/cpython2/Modules/_io/
Dtextio.c2623 {"line_buffering", T_BOOL, offsetof(textio, line_buffering), READONLY},
/external/python/cpython2/Modules/
D_testcapimodule.c2821 {"T_BOOL", T_BOOL, offsetof(test_structmembers, structmembers.bool_member), 0, NULL},
/external/python/cpython2/Misc/NEWS.d/
D2.6a1.rst5310 add T_BOOL to the range of structmember types.