Searched refs:StrEnum (Results 1 - 9 of 9) sorted by relevance
/third_party/typescript/tests/baselines/reference/ |
H A D | noImplicitAnyStringIndexerOnObject.js | 80 enum StrEnum { a = "a", b = "b" } 81 let strEnumKey: StrEnum; 168 var StrEnum;
variable 169 (function (StrEnum) {
170 StrEnum["a"] = "a";
171 StrEnum["b"] = "b";
172 })(StrEnum || (StrEnum = {}));
|
/third_party/python/Lib/http/ |
H A D | __init__.py | 1 from enum import StrEnum, IntEnum, _simple_enum namespace 154 @_simple_enum(StrEnum)
|
/third_party/python/Lib/test/ |
H A D | test_pstats.py | 6 from enum import StrEnum, _test_simple_enum namespace 71 class CheckedSortKey(StrEnum):
|
H A D | test_enum.py | 14 from enum import Enum, EnumMeta, IntEnum, StrEnum, EnumType, Flag, IntFlag, unique, auto namespace 91 class Name(StrEnum): 276 if issubclass(MainEnum, StrEnum): 344 if issubclass(TE, StrEnum): 516 if self.enum_type is StrEnum: 540 if self.enum_type is StrEnum: 606 elif issubclass(TE, StrEnum): 796 enum_type = StrEnum 2378 class Decision1(StrEnum): 2382 class MyEnum(StrEnum) [all...] |
H A D | test_unicode.py | 1593 class Str(enum.StrEnum): 1594 # StrEnum uses the value and not the name for %s etc.
|
/third_party/python/Lib/ |
H A D | pstats.py | 29 from enum import StrEnum, _simple_enum namespace 36 @_simple_enum(StrEnum)
|
H A D | enum.py | 10 'Enum', 'IntEnum', 'StrEnum', 'Flag', 'IntFlag', 'ReprEnum', 1261 class StrEnum(str, ReprEnum): class 1297 class FlagBoundary(StrEnum): 1765 # Enum / IntEnum / StrEnum 1805 @_simple_enum(StrEnum) 2053 _stdlib_enums = IntEnum, StrEnum, IntFlag
|
/third_party/python/Lib/tkinter/test/test_tkinter/ |
H A D | test_misc.py | 280 class CheckedEventType(enum.StrEnum):
|
/third_party/python/Lib/tkinter/ |
H A D | __init__.py | 170 @enum._simple_enum(enum.StrEnum)
|
Completed in 25 milliseconds