/third_party/python/Lib/unittest/ |
D | mock.py | 1801 def __init__(self, in_dict, values=(), clear=False, **kwargs): argument 1802 self.in_dict = in_dict 1829 decorator = _patch_dict(self.in_dict, self.values, self.clear) 1838 return self.in_dict 1843 if isinstance(self.in_dict, str): 1844 self.in_dict = _importer(self.in_dict) 1845 in_dict = self.in_dict 1849 original = in_dict.copy() 1854 for key in in_dict: 1855 original[key] = in_dict[key] [all …]
|
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/ |
D | MSVSUtil.py | 29 def _DeepCopySomeKeys(in_dict, keys): argument 41 if key not in in_dict: 43 d[key] = copy.deepcopy(in_dict[key])
|
/third_party/node/tools/gyp/pylib/gyp/ |
D | MSVSUtil.py | 30 def _DeepCopySomeKeys(in_dict, keys): argument 42 if key not in in_dict: 44 d[key] = copy.deepcopy(in_dict[key])
|
/third_party/skia/third_party/externals/freetype/src/psaux/ |
D | cffdecode.h | 54 FT_Bool in_dict );
|
D | cffdecode.c | 499 FT_Bool in_dict ) in cff_decoder_parse_charstrings() argument 836 if ( in_dict ) in cff_decoder_parse_charstrings() 918 set_width_ok = in_dict in cff_decoder_parse_charstrings() 1636 if ( in_dict ) in cff_decoder_parse_charstrings() 1728 FT_UInt32* randval = in_dict ? &decoder->cff->top_font.random in cff_decoder_parse_charstrings()
|
/third_party/flutter/skia/third_party/externals/freetype/src/psaux/ |
D | cffdecode.h | 55 FT_Bool in_dict );
|
D | cffdecode.c | 500 FT_Bool in_dict ) in cff_decoder_parse_charstrings() argument 834 if ( in_dict ) in cff_decoder_parse_charstrings() 916 set_width_ok = in_dict in cff_decoder_parse_charstrings() 1634 if ( in_dict ) in cff_decoder_parse_charstrings() 1726 FT_UInt32* randval = in_dict ? &decoder->cff->top_font.random in cff_decoder_parse_charstrings()
|
/third_party/freetype/src/psaux/ |
D | cffdecode.h | 54 FT_Bool in_dict );
|
D | cffdecode.c | 499 FT_Bool in_dict ) in cff_decoder_parse_charstrings() argument 836 if ( in_dict ) in cff_decoder_parse_charstrings() 918 set_width_ok = in_dict in cff_decoder_parse_charstrings() 1636 if ( in_dict ) in cff_decoder_parse_charstrings() 1728 FT_UInt32* randval = in_dict ? &decoder->cff->top_font.random in cff_decoder_parse_charstrings()
|
/third_party/gn/src/base/ |
D | values.h | 130 explicit Value(const DictStorage& in_dict); 131 explicit Value(DictStorage&& in_dict) noexcept; 383 explicit DictionaryValue(const DictStorage& in_dict); 384 explicit DictionaryValue(DictStorage&& in_dict) noexcept;
|
D | values.cc | 153 Value::Value(const DictStorage& in_dict) : type_(Type::DICTIONARY), dict_() { in Value() argument 154 dict_.reserve(in_dict.size()); in Value() 155 for (const auto& it : in_dict) { in Value() 161 Value::Value(DictStorage&& in_dict) noexcept in Value() argument 162 : type_(Type::DICTIONARY), dict_(std::move(in_dict)) {} in Value() 664 DictionaryValue::DictionaryValue(const DictStorage& in_dict) : Value(in_dict) {} in DictionaryValue() argument 665 DictionaryValue::DictionaryValue(DictStorage&& in_dict) noexcept in DictionaryValue() argument 666 : Value(std::move(in_dict)) {} in DictionaryValue()
|
/third_party/mindspore/mindspore/ops/composite/multitype_ops/ |
D | in_impl.py | 102 return F.in_dict(x, y)
|
/third_party/mindspore/mindspore/ops/ |
D | functional.py | 224 in_dict = Primitive("in_dict") variable
|
/third_party/flutter/skia/third_party/externals/freetype/include/freetype/internal/ |
D | psaux.h | 1238 FT_Bool in_dict );
|
/third_party/skia/third_party/externals/freetype/include/freetype/internal/ |
D | psaux.h | 1237 FT_Bool in_dict );
|
/third_party/freetype/include/freetype/internal/ |
D | psaux.h | 1237 FT_Bool in_dict );
|
/third_party/flutter/skia/third_party/externals/libwebp/swig/ |
D | libwebp_python_wrap.c | 2541 inst->in_dict = PyDict_New(); in SWIG_Python_NewShadowInstance() 2542 if (inst->in_dict == NULL) { in SWIG_Python_NewShadowInstance() 2552 PyDict_SetItem(inst->in_dict, SWIG_This(), swig_this); in SWIG_Python_NewShadowInstance()
|
/third_party/skia/third_party/externals/libwebp/swig/ |
D | libwebp_python_wrap.c | 2562 inst->in_dict = PyDict_New(); in SWIG_Python_NewShadowInstance() 2563 if (inst->in_dict == NULL) { in SWIG_Python_NewShadowInstance() 2573 PyDict_SetItem(inst->in_dict, SWIG_This(), swig_this); in SWIG_Python_NewShadowInstance()
|
/third_party/python/Doc/library/ |
D | unittest.mock.rst | 1574 .. function:: patch.dict(in_dict, values=(), clear=False, **kwargs) 1579 *in_dict* can be a dictionary or a mapping like container. If it is a 1583 *in_dict* can also be a string specifying the name of the dictionary, which
|