/external/cldr/tools/java/org/unicode/cldr/util/ |
D | StandardCodes.java | 50 public enum CodeType { enum in StandardCodes 52 public static CodeType from(String name) { in from() 56 return CodeType.valueOf(name); in from() 60 …private static final Set<CodeType> TypeSet = Collections.unmodifiableSet(EnumSet.allOf(CodeType.cl… 65 for (CodeType x : CodeType.values()) { 77 private EnumMap<CodeType, Map<String, List<String>>> type_code_data = new EnumMap<>( 78 CodeType.class); 80 private EnumMap<CodeType, Map<String, List<String>>> type_name_codes = new EnumMap<>( 81 CodeType.class); 83 private EnumMap<CodeType, Map<String, String>> type_code_preferred = new EnumMap<>( [all …]
|
/external/python/cpython2/Lib/test/crashers/ |
D | bogus_code_obj.py | 17 co = types.CodeType(0, 0, 0, 0, '\x04\x71\x00\x00', (),
|
/external/python/cpython3/Lib/test/crashers/ |
D | bogus_code_obj.py | 17 co = types.CodeType(0, 0, 0, 0, 0, b'\x04\x71\x00\x00',
|
/external/python/cpython2/Lib/ |
D | new.py | 17 from types import CodeType as code
|
D | types.py | 45 CodeType = type(_f.func_code) variable
|
D | dis.py | 13 _have_code = (types.MethodType, types.FunctionType, types.CodeType,
|
D | bdb.py | 397 if not isinstance(cmd, types.CodeType): 415 if not isinstance(expr, types.CodeType):
|
/external/python/jinja/src/jinja2/ |
D | debug.py | 3 from types import CodeType 146 code = CodeType(*code_args)
|
D | sandbox.py | 137 elif isinstance(obj, (types.CodeType, types.TracebackType, types.FrameType)):
|
/external/libchrome/third_party/jinja2/ |
D | debug.py | 15 from types import TracebackType, CodeType 272 code = CodeType(0, code.co_nlocals, code.co_stacksize, 278 code = CodeType(0, code.co_kwonlyargcount,
|
/external/pdfium/xfa/fxfa/parser/ |
D | cxfa_exobject.cpp | 22 {XFA_Attribute::CodeType, XFA_AttributeType::CData, nullptr},
|
/external/webrtc/modules/rtp_rtcp/test/testFec/ |
D | test_packet_masks_metrics.cc | 72 enum CodeType { enum 382 void ComputeMetricsForCode(CodeType code_type, int code_index) { in ComputeMetricsForCode() 696 CodeType code_type) { in GetPacketMaskConvertToBitMask() 711 int ProcessXORPacketMasks(CodeType code_type, FecMaskType fec_mask_type) { in ProcessXORPacketMasks() 745 void ProcessRS(CodeType code_type) { in ProcessRS()
|
/external/python/cpython2/Tools/compiler/ |
D | dumppyc.py | 27 if type(obj) == types.CodeType:
|
D | stacktest.py | 8 if type(const) == types.CodeType:
|
/external/tensorflow/tensorflow/python/platform/ |
D | benchmark.py | 60 new_code = types.CodeType(arg_num, func_code.co_nlocals, 70 new_code = types.CodeType(arg_num, func_code.co_posonlyargcount, 79 new_code = types.CodeType(arg_num, 0, func_code.co_nlocals,
|
/external/python/cpython3/Lib/ |
D | types.py | 14 CodeType = type(_f.__code__) variable 251 getattr(func, '__code__', None).__class__ is CodeType):
|
D | copy.py | 193 d[types.CodeType] = _deepcopy_atomic
|
/external/python/cpython3/Lib/test/ |
D | test_code.py | 213 CodeType = type(co) 216 return CodeType(co.co_argcount,
|
D | test_dtrace.py | 136 if isinstance(c, types.CodeType) and c.co_name == funcname:
|
/external/python/cpython2/Lib/idlelib/ |
D | rpc.py | 47 assert isinstance(co, types.CodeType) 51 assert isinstance(co, types.CodeType) 63 copy_reg.pickle(types.CodeType, pickle_code, unpickle_code)
|
/external/python/cpython3/Lib/idlelib/ |
D | rpc.py | 48 assert isinstance(co, types.CodeType) 53 assert isinstance(co, types.CodeType) 67 dispatch_table = {types.CodeType: pickle_code, **copyreg.dispatch_table}
|
/external/cldr/tools/java/org/unicode/cldr/tool/ |
D | FixTransformNames.java | 21 import org.unicode.cldr.util.StandardCodes.CodeType; 44 for (String lang : testInfo.getStandardCodes().getAvailableCodes(CodeType.language)) { in run()
|
/external/cldr/tools/cldr-unittest/src/org/unicode/cldr/unittest/ |
D | TestLocale.java | 34 import org.unicode.cldr.util.StandardCodes.CodeType; 67 .getGoodAvailableCodes(CodeType.script); 69 .getGoodAvailableCodes(CodeType.territory);
|
/external/python/setuptools/setuptools/command/ |
D | bdist_egg.py | 8 from types import CodeType 449 elif isinstance(const, CodeType):
|
/external/python/cpython3/Doc/library/ |
D | types.rst | 140 .. class:: CodeType(**kwargs) 146 …_ code,filename,name,argcount,posonlyargcount,kwonlyargcount,nlocals,stacksize,flags types.CodeType 152 .. method:: CodeType.replace(**kwargs)
|