Home
last modified time | relevance | path

Searched refs:CodeType (Results 1 – 25 of 51) sorted by relevance

123

/external/cldr/tools/java/org/unicode/cldr/util/
DStandardCodes.java50 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/
Dbogus_code_obj.py17 co = types.CodeType(0, 0, 0, 0, '\x04\x71\x00\x00', (),
/external/python/cpython3/Lib/test/crashers/
Dbogus_code_obj.py17 co = types.CodeType(0, 0, 0, 0, 0, b'\x04\x71\x00\x00',
/external/python/cpython2/Lib/
Dnew.py17 from types import CodeType as code
Dtypes.py45 CodeType = type(_f.func_code) variable
Ddis.py13 _have_code = (types.MethodType, types.FunctionType, types.CodeType,
Dbdb.py397 if not isinstance(cmd, types.CodeType):
415 if not isinstance(expr, types.CodeType):
/external/python/jinja/src/jinja2/
Ddebug.py3 from types import CodeType
146 code = CodeType(*code_args)
Dsandbox.py137 elif isinstance(obj, (types.CodeType, types.TracebackType, types.FrameType)):
/external/libchrome/third_party/jinja2/
Ddebug.py15 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/
Dcxfa_exobject.cpp22 {XFA_Attribute::CodeType, XFA_AttributeType::CData, nullptr},
/external/webrtc/modules/rtp_rtcp/test/testFec/
Dtest_packet_masks_metrics.cc72 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/
Ddumppyc.py27 if type(obj) == types.CodeType:
Dstacktest.py8 if type(const) == types.CodeType:
/external/tensorflow/tensorflow/python/platform/
Dbenchmark.py60 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/
Dtypes.py14 CodeType = type(_f.__code__) variable
251 getattr(func, '__code__', None).__class__ is CodeType):
Dcopy.py193 d[types.CodeType] = _deepcopy_atomic
/external/python/cpython3/Lib/test/
Dtest_code.py213 CodeType = type(co)
216 return CodeType(co.co_argcount,
Dtest_dtrace.py136 if isinstance(c, types.CodeType) and c.co_name == funcname:
/external/python/cpython2/Lib/idlelib/
Drpc.py47 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/
Drpc.py48 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/
DFixTransformNames.java21 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/
DTestLocale.java34 import org.unicode.cldr.util.StandardCodes.CodeType;
67 .getGoodAvailableCodes(CodeType.script);
69 .getGoodAvailableCodes(CodeType.territory);
/external/python/setuptools/setuptools/command/
Dbdist_egg.py8 from types import CodeType
449 elif isinstance(const, CodeType):
/external/python/cpython3/Doc/library/
Dtypes.rst140 .. class:: CodeType(**kwargs)
146 …_ code,filename,name,argcount,posonlyargcount,kwonlyargcount,nlocals,stacksize,flags types.CodeType
152 .. method:: CodeType.replace(**kwargs)

123