Home
last modified time | relevance | path

Searched refs:MyDict (Results 1 – 25 of 145) sorted by relevance

123456

/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/tools/idl_parser/test_parser/
H A Ddictionary_web.idl26 *Dictionary(MyDict)
28 dictionary MyDict { };
210 *Dictionary(MyDict)
217 dictionary MyDict {
229 dictionary MyDict {
241 dictionary MyDict {
255 dictionary MyDict {
268 dictionary MyDict {
280 dictionary MyDict {
292 dictionary MyDict {
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/tools/idl_parser/test_parser/
H A Ddictionary_web.idl26 *Dictionary(MyDict)
28 dictionary MyDict { };
210 *Dictionary(MyDict)
217 dictionary MyDict {
229 dictionary MyDict {
241 dictionary MyDict {
255 dictionary MyDict {
268 dictionary MyDict {
280 dictionary MyDict {
292 dictionary MyDict {
[all …]
/dports/devel/p5-MooseX-Types-Structured/MooseX-Types-Structured-0.36/t/
H A Dbug-optional.t11 MyDict
17 subtype MyDict, as Dict[optional => Optional[Any], required => Any];
28 ok(!MyDict->check({ }));
29 ok(!MyDict->check({ optional => 42 }));
30 ok(!MyDict->check({ optional => 42, unknown => 23 }));
31 ok(!MyDict->check({ required => 42, unknown => 23 }));
33 ok(MyDict->check({ optional => 42, required => 23 }));
34 ok(MyDict->check({ required => 23 }));
/dports/lang/mono/mono-5.10.1.57/mono/tests/
H A Dgeneric-method-patching.2.cs4 public class MyDict<S,T> { class
31 MyDict<int,T> cache;
35 cache = new MyDict <int,T> (); in Invoke()
50 MyDict<string,string> dss = new MyDict<string,string> (); in Main()
/dports/audio/deadbeef/deadbeef-0.7.2/plugins/adplug/adplug/
H A Du6m.h81 class MyDict
92 MyDict(); // use dictionary size of 4096
93 MyDict(int); // let the caller specify a dictionary size
94 ~MyDict();
168 …void get_string(int codeword, MyDict& dictionary, unsigned char *root_stack, int &root_stack_size);
H A Du6m.cpp213 MyDict dictionary = MyDict(); in lzw_decompress()
366 void Cu6mPlayer::get_string(int codeword, Cu6mPlayer::MyDict& dictionary, unsigned char *root_stack… in get_string()
891 Cu6mPlayer::MyDict::MyDict() in MyDict() function in Cu6mPlayer::MyDict
899 Cu6mPlayer::MyDict::MyDict(int max_size) in MyDict() function in Cu6mPlayer::MyDict
907 Cu6mPlayer::MyDict::~MyDict() in ~MyDict()
913 void Cu6mPlayer::MyDict::reset() in reset()
920 void Cu6mPlayer::MyDict::add(unsigned char root, int codeword) in add()
931 unsigned char Cu6mPlayer::MyDict::get_root(int codeword) in get_root()
937 int Cu6mPlayer::MyDict::get_codeword(int codeword) in get_codeword()
/dports/audio/libadplug/adplug-adplug-2.3.3/src/
H A Du6m.h82 class MyDict
93 MyDict(); // use dictionary size of 4096
94 MyDict(int); // let the caller specify a dictionary size
95 ~MyDict();
165 void get_string(int codeword, MyDict& dictionary, std::stack<unsigned char>& root_stack);
H A Du6m.cpp207 MyDict dictionary = MyDict(); in lzw_decompress()
371 void Cu6mPlayer::get_string(int codeword, Cu6mPlayer::MyDict& dictionary, std::stack<unsigned char>… in get_string()
937 Cu6mPlayer::MyDict::MyDict() in MyDict() function in Cu6mPlayer::MyDict
945 Cu6mPlayer::MyDict::MyDict(int max_size) in MyDict() function in Cu6mPlayer::MyDict
953 Cu6mPlayer::MyDict::~MyDict() in ~MyDict()
959 void Cu6mPlayer::MyDict::reset() in reset()
966 void Cu6mPlayer::MyDict::add(unsigned char root, int codeword) in add()
977 unsigned char Cu6mPlayer::MyDict::get_root(int codeword) in get_root()
983 int Cu6mPlayer::MyDict::get_codeword(int codeword) in get_codeword()
/dports/devel/py-anyconfig/anyconfig-0.9.11/tests/backend/
H A Dcommon.py39 class MyDict(dict): class
106 cnf = self.psr.loads(self.cnf_s, ac_dict=MyDict)
108 self._assert_dicts_equal(cnf, cls=MyDict)
117 opts = {dopts[0]: MyDict}
120 self._assert_dicts_equal(cnf, cls=MyDict)
189 cnf = self.psr.load(self.ioi, ac_dict=MyDict)
191 self._assert_dicts_equal(cnf, cls=MyDict)
213 cnf = self.psr.load(self.ioi, ac_dict=MyDict)
/dports/lang/cython/Cython-0.29.24/tests/run/
H A Dbuiltin_subtype_methods_T653.pyx21 cdef class MyDict(dict): class
27 >>> MyDict(a=1, b=2).test_items()
36 >>> MyDict(a=1, b=2).test_values()
64 cdef class MyDict2(MyDict):
87 cdef class MyDict2Final(MyDict):
134 cdef class MyDictOverride2(MyDict):
H A Dbuiltin_type_inheritance_T608.pyx109 cdef class MyDict(dict): class
111 >>> MyDict({1:2, 3:4}) == {1:2, 3:4}
113 >>> MyDict({1:2, 3:4}).attr is None
/dports/lang/cython-devel/cython-2b1e743/tests/run/
H A Dbuiltin_subtype_methods_T653.pyx21 cdef class MyDict(dict): class
27 >>> MyDict(a=1, b=2).test_items()
36 >>> MyDict(a=1, b=2).test_values()
64 cdef class MyDict2(MyDict):
87 cdef class MyDict2Final(MyDict):
134 cdef class MyDictOverride2(MyDict):
H A Dbuiltin_type_inheritance_T608.pyx109 cdef class MyDict(dict): class
111 >>> MyDict({1:2, 3:4}) == {1:2, 3:4}
113 >>> MyDict({1:2, 3:4}).attr is None
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/Common/tests/System/Xml/ModuleCore/
H A Dcmodinfo.cs11 public class MyDict<Type1, Type2> : Dictionary<Type1, Type2> class
37 private static MyDict<string, string> s_hashOptions;
70 public static MyDict<string, string> Options
H A Dcparser.cs45 public static MyDict<string, string> ParseKeywords(string str) in ParseKeywords()
50 public static MyDict<string, string> ParseKeywords(string str, Tokens tokens) in ParseKeywords()
55 MyDict<string, string> keywords = new MyDict<string, string>(); in ParseKeywords()
/dports/www/py-scrapy/Scrapy-2.5.1/tests/
H A Dtest_utils_datatypes.py136 class MyDict(CaselessDict): class
140 d = MyDict()
145 class MyDict(CaselessDict): class
150 d = MyDict({'key': 1})
154 d = MyDict()
159 d = MyDict()
164 d = MyDict()
169 d = MyDict.fromkeys(('key',), 1)
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/Common/tests/System/Xml/XmlCoreTest/
H A DFilePathUtil.cs110 private static MyDict<string, Stream> s_XmlFileInMemoryCache = null;
111 private static MyDict<string, Stream> s_XmlFileInMemoryCacheBackup = null;
120 s_XmlFileInMemoryCache = new MyDict<string, Stream>(); in initXmlFileCacheIfNotYet()
121 s_XmlFileInMemoryCacheBackup = new MyDict<string, Stream>(); in initXmlFileCacheIfNotYet()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Private.Xml/tests/Writers/RwFactory/
H A DCModCmdLine.cs15 private static MyDict<string, string> s_cmdList = null;
17 public static MyDict<string, string> CmdLine
/dports/devel/py-srsly/srsly-2.4.2/srsly/tests/msgpack/
H A Dtest_subtype.py9 class MyDict(dict): class
21 assert packb(MyDict()) == packb(dict())
/dports/devel/py-msgpack/msgpack-1.0.3/test/
H A Dtest_subtype.py12 class MyDict(dict): class
24 assert packb(MyDict()) == packb(dict())
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/ppapi/generators/test_parser/
H A Ddictionary.idl6 dictionary MyDict {
14 dictionary MyDict {
/dports/lang/spidermonkey60/firefox-60.9.0/browser/extensions/mortar/ppapi/generators/test_parser/
H A Ddictionary.idl6 dictionary MyDict {
14 dictionary MyDict {
/dports/www/chromium-legacy/chromium-88.0.4324.182/ppapi/generators/test_parser/
H A Ddictionary.idl6 dictionary MyDict {
14 dictionary MyDict {
/dports/lang/ruby26/ruby-2.6.9/test/win32ole/
H A Dtest_win32ole.rb567 class MyDict < WIN32OLE class
568 def MyDict.new
575 @dict1 = MyDict.new
576 @dict2 = MyDict.new
579 assert_instance_of(MyDict, @dict1)
580 assert_instance_of(MyDict, @dict2)
/dports/net/google-cloud-sdk/google-cloud-sdk/platform/gsutil/third_party/six/
H A Dtest_six.py391 class MyDict(dict): class
397 f = MyDict.iterlists
398 del MyDict.iterlists
399 setattr(MyDict, stock_method_name('lists'), f)
401 d = MyDict(zip(range(10), reversed(range(10))))
412 old = getattr(MyDict, stock_method_name(name))
413 monkeypatch.setattr(MyDict, stock_method_name(name), with_kw)
751 class MyDict(dict): class
758 namespace = MyDict(super().__prepare__(name, bases), cls=cls, bases=bases)
772 assert isinstance(getattr(X, 'namespace', {}), MyDict)

123456