Home
last modified time | relevance | path

Searched refs:in_dict (Results 1 – 19 of 19) sorted by relevance

/third_party/python/Lib/unittest/
Dmock.py1801 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/
DMSVSUtil.py29 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/
DMSVSUtil.py30 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/
Dcffdecode.h54 FT_Bool in_dict );
Dcffdecode.c499 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/
Dcffdecode.h55 FT_Bool in_dict );
Dcffdecode.c500 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/
Dcffdecode.h54 FT_Bool in_dict );
Dcffdecode.c499 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/
Dvalues.h130 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;
Dvalues.cc153 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/
Din_impl.py102 return F.in_dict(x, y)
/third_party/mindspore/mindspore/ops/
Dfunctional.py224 in_dict = Primitive("in_dict") variable
/third_party/flutter/skia/third_party/externals/freetype/include/freetype/internal/
Dpsaux.h1238 FT_Bool in_dict );
/third_party/skia/third_party/externals/freetype/include/freetype/internal/
Dpsaux.h1237 FT_Bool in_dict );
/third_party/freetype/include/freetype/internal/
Dpsaux.h1237 FT_Bool in_dict );
/third_party/flutter/skia/third_party/externals/libwebp/swig/
Dlibwebp_python_wrap.c2541 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/
Dlibwebp_python_wrap.c2562 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/
Dunittest.mock.rst1574 .. 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