/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<CodeType, Map<St… 78 CodeType.class); 80 …private EnumMap<CodeType, Map<String, List<String>>> type_name_codes = new EnumMap<CodeType, Map<S… 81 CodeType.class); 83 …private EnumMap<CodeType, Map<String, String>> type_code_preferred = new EnumMap<CodeType, Map<Str… [all …]
|
/external/v8/src/compiler/ |
D | verifier.h | 26 enum CodeType { kDefault, kWasm }; enum 30 CodeType code_type = kDefault);
|
/external/python/cpython3/Lib/ |
D | types.py | 14 CodeType = type(_f.__code__) variable 244 getattr(func, '__code__', None).__class__ is CodeType): 258 func.__code__ = CodeType(
|
D | copy.py | 202 d[types.CodeType] = _deepcopy_atomic
|
/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,
|
D | sandbox.py | 193 elif isinstance(obj, (types.CodeType, types.TracebackType, types.FrameType)):
|
/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):
|
D | copy.py | 216 d[types.CodeType] = _deepcopy_atomic
|
/external/webrtc/webrtc/modules/rtp_rtcp/test/testFec/ |
D | test_packet_masks_metrics.cc | 72 enum CodeType { enum 386 void ComputeMetricsForCode(CodeType code_type, in ComputeMetricsForCode() 712 CodeType code_type) { in GetPacketMaskConvertToBitMask() 727 int ProcessXORPacketMasks(CodeType code_type, in ProcessXORPacketMasks() 765 void ProcessRS(CodeType code_type) { in ProcessRS()
|
/external/cldr/tools/cldr-unittest/src/org/unicode/cldr/unittest/ |
D | TestLocale.java | 27 import org.unicode.cldr.util.StandardCodes.CodeType; 45 .getGoodAvailableCodes(CodeType.script); 47 .getGoodAvailableCodes(CodeType.territory);
|
/external/pdfium/xfa/fxfa/parser/ |
D | cxfa_exobject.cpp | 20 {XFA_Attribute::CodeType, XFA_AttributeType::CData, nullptr},
|
/external/python/cpython2/Tools/compiler/ |
D | dumppyc.py | 27 if type(obj) == types.CodeType:
|
D | stacktest.py | 8 if type(const) == types.CodeType:
|
/external/python/cpython3/Lib/test/ |
D | test_code.py | 152 from types import FunctionType, CodeType 159 return CodeType(
|
D | test_dtrace.py | 136 if isinstance(c, types.CodeType) and c.co_name == funcname:
|
D | test_funcattrs.py | 160 self.assertEqual(type(func.__code__), types.CodeType)
|
/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}
|
/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/python/setuptools/setuptools/command/ |
D | bdist_egg.py | 8 from types import CodeType 449 elif isinstance(const, CodeType):
|