/third_party/python/Lib/test/ |
D | test_structmembers.py | 33 ts.T_BOOL = True 34 self.assertEqual(ts.T_BOOL, True) 35 ts.T_BOOL = False 36 self.assertEqual(ts.T_BOOL, False)
|
/third_party/flatbuffers/kotlin/flatbuffers-kotlin/src/commonMain/kotlin/com/google/flatbuffers/kotlin/ |
D | FlexBuffersInternals.kt | 96 …ernal inline fun FlexBufferType.isInline(): Boolean = this.value <= T_FLOAT.value || this == T_BOOL in paddingBytes() 99 T_INT, T_UINT, T_FLOAT, T_BOOL -> true in paddingBytes() 111 …pe.isTypedVectorElementType(): Boolean = (this.value in T_INT.value..T_KEY.value) || this == T_BOOL in isTypedVector() 196 T_BOOL -> "BoolVector" in typeToString() 250 internal val T_BOOL = FlexBufferType(26) constant
|
D | FlexBuffers.kt | 62 public val isBoolean: Boolean get() = type == T_BOOL 228 T_INDIRECT_INT, T_INDIRECT_UINT, T_INT, T_BOOL, T_UINT -> buffer.readULong(pos, width) in get() 247 T_UINT, T_BOOL -> buffer.readUInt(end, parentWidth).toFloat() in pos() 267 T_UINT, T_BOOL -> buffer.readUInt(pos, width).toDouble() in toDouble()
|
D | JSON.kt | 57 T_BOOL -> out.put(toBoolean().toString()) in toJson() 148 TOK_TRUE -> T_BOOL.also { output[key] = true } in parseValue() 149 TOK_FALSE -> T_BOOL.also { output[key] = false } in parseValue()
|
D | FlexBuffersBuilder.kt | 84 run { stack.add(Value(T_BOOL, putKey(key), W_8, if (value) 1UL else 0UL)) } in set() 507 T_NULL, T_BOOL, T_INT, T_UINT -> writeInt(toWrite.iValue, byteWidth) in writeAny()
|
/third_party/python/Python/ |
D | structmember.c | 14 case T_BOOL: in PyMember_GetOne() 131 case T_BOOL:{ in PyMember_SetOne()
|
/third_party/python/Include/ |
D | structmember.h | 47 #define T_BOOL 14 macro
|
/third_party/python/Modules/ |
D | _bz2module.c | 742 {"eof", T_BOOL, offsetof(BZ2Decompressor, eof), 746 {"needs_input", T_BOOL, offsetof(BZ2Decompressor, needs_input), READONLY,
|
D | _csv.c | 336 { "skipinitialspace", T_BOOL, D_OFF(skipinitialspace), READONLY }, 337 { "doublequote", T_BOOL, D_OFF(doublequote), READONLY }, 338 { "strict", T_BOOL, D_OFF(strict), READONLY },
|
D | _json.c | 41 {"strict", T_BOOL, offsetof(PyScannerObject, strict), READONLY, "strict"}, 71 {"sort_keys", T_BOOL, offsetof(PyEncoderObject, sort_keys), READONLY, "sort_keys"}, 72 {"skipkeys", T_BOOL, offsetof(PyEncoderObject, skipkeys), READONLY, "skipkeys"},
|
D | _lzmamodule.c | 1335 {"eof", T_BOOL, offsetof(Decompressor, eof), READONLY, 1337 {"needs_input", T_BOOL, offsetof(Decompressor, needs_input), READONLY,
|
D | zlibmodule.c | 1376 {"eof", T_BOOL, COMP_OFF(eof), READONLY},
|
D | _testcapimodule.c | 5931 {"T_BOOL", T_BOOL, offsetof(test_structmembers, structmembers.bool_member), 0, NULL},
|
/third_party/python/Objects/ |
D | frameobject.c | 19 {"f_trace_lines", T_BOOL, OFF(f_trace_lines), 0}, 20 {"f_trace_opcodes", T_BOOL, OFF(f_trace_opcodes), 0},
|
D | genobject.c | 1375 {"ag_running", T_BOOL, offsetof(PyAsyncGenObject, ag_running_async),
|
D | exceptions.c | 375 {"__suppress_context__", T_BOOL,
|
/third_party/python/Modules/_io/ |
D | bufferedio.c | 2418 {"_finalizing", T_BOOL, offsetof(buffered, finalizing), 0}, 2504 {"_finalizing", T_BOOL, offsetof(buffered, finalizing), 0}, 2675 {"_finalizing", T_BOOL, offsetof(buffered, finalizing), 0},
|
D | fileio.c | 1186 {"_finalizing", T_BOOL, offsetof(fileio, finalizing), 0},
|
D | textio.c | 3270 {"line_buffering", T_BOOL, offsetof(textio, line_buffering), READONLY}, 3271 {"write_through", T_BOOL, offsetof(textio, write_through), READONLY}, 3272 {"_finalizing", T_BOOL, offsetof(textio, finalizing), 0},
|
D | winconsoleio.c | 1108 {"_finalizing", T_BOOL, offsetof(winconsoleio, finalizing), 0},
|
/third_party/python/Doc/c-api/ |
D | structures.rst | 437 T_BOOL char
|