Searched defs:items (Results 1 - 25 of 48) sorted by relevance

12

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/wsgiref/
H A Dheaders.py115 def items(self): member in class:Headers
164 for k, v in _params.items():
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/RegularExpressionDxe/Oniguruma/enc/
H A Dutf16_le.c203 const OnigUChar* p, const OnigUChar* end, OnigCaseFoldCodeItem items[])
206 flag, p, end, items);
202 utf16le_get_case_fold_codes_by_str(OnigCaseFoldType flag, const OnigUChar* p, const OnigUChar* end, OnigCaseFoldCodeItem items[]) argument
/device/generic/goldfish/dhcp/common/
H A Dmessage.h110 void addOption(uint8_t type, T (&items)[N]) { argument
116 for (const T& item : items) {
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
H A DUserDict.py40 def items(self): return self.data.items() member in class:UserDict
51 elif isinstance(dict, type({})) or not hasattr(dict, 'items'):
54 for k, v in dict.items():
121 def items(self): member in class:DictMixin
H A Dcollections.py97 'od.clear() -> None. Remove all items from od.'
113 def items(self): member in class:OrderedDict
114 'od.items() -> list of (key, value) pairs in od'
178 return '%s(%r)' % (self.__class__.__name__, self.items())
184 items = [[k, self[k]] for k in self]
189 return (self.__class__, (items,), inst_dict)
190 return self.__class__, (items,)
231 "od.viewitems() -> a set-like object providing a view on od's items"
396 '''Dict subclass for counting hashable items. Sometimes called a bag
586 for elem, count in iterable.items()
[all...]
H A Dweakref.py110 for key, wr in self.data.items():
121 for key, wr in self.data.items():
140 def items(self): member in class:WeakValueDictionary
142 for key, wr in self.data.items():
222 if not hasattr(dict, "items"):
224 for key, o in dict.items():
325 for key, value in self.data.items():
336 for key, value in self.data.items():
359 def items(self): member in class:WeakKeyDictionary
361 for key, value in self.data.items()
[all...]
H A D_abcoll.py404 'D.iteritems() -> an iterator over the (key, value) items of D'
412 def items(self): member in class:Mapping
413 "D.items() -> list of D's (key, value) pairs, as 2-tuples"
426 return dict(self.items()) == dict(other.items())
538 'D.clear() -> None. Remove all items from D.'
549 In either case, this is followed by: for k, v in F.items(): D[k] = v
570 for key, value in kwds.items():
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/zlib/
H A Dzutil.c220 voidpf ZLIB_INTERNAL zcalloc (voidpf opaque, unsigned items, unsigned size) argument
223 ulg bsize = (ulg)items*size;
279 voidpf ZLIB_INTERNAL zcalloc (voidpf opaque, uInt items, uInt size) argument
282 return _halloc((long)items, size);
300 extern voidp calloc OF((uInt items, uInt size));
304 voidpf ZLIB_INTERNAL zcalloc (opaque, items, size)
306 unsigned items;
309 if (opaque) items += size - size; /* make compiler happy */
310 return sizeof(uInt) > 2 ? (voidpf)malloc(items * size) :
311 (voidpf)calloc(items, siz
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
H A DUserDict.py40 def items(self): return self.data.items() member in class:UserDict
51 elif isinstance(dict, type({})) or not hasattr(dict, 'items'):
54 for k, v in dict.items():
121 def items(self): member in class:DictMixin
H A Dweakref.py84 for key, wr in self.data.items():
95 for key, wr in self.data.items():
114 def items(self): member in class:WeakValueDictionary
116 for key, wr in self.data.items():
183 if not hasattr(dict, "items"):
185 for key, o in dict.items():
266 for key, value in self.data.items():
277 for key, value in self.data.items():
300 def items(self): member in class:WeakKeyDictionary
302 for key, value in self.data.items()
[all...]
H A DConfigParser.py73 items(section, raw=False, vars=None)
234 for key, value in defaults.items():
334 def items(self, section): member in class:RawConfigParser
345 return d.items()
395 for (key, value) in self._defaults.items():
400 for (key, value) in self._sections[section].items():
544 for name, val in options.items():
603 for key, value in vars.items():
617 def items(self, section, raw=False, vars=None): member in class:ConfigParser
637 for key, value in vars.items()
[all...]
H A Dcollections.py93 'od.clear() -> None. Remove all items from od.'
111 def items(self): member in class:OrderedDict
112 'od.items() -> list of (key, value) pairs in od'
176 return '%s(%r)' % (self.__class__.__name__, self.items())
182 items = [[k, self[k]] for k in self]
187 return (self.__class__, (items,), inst_dict)
188 return self.__class__, (items,)
211 return len(self)==len(other) and self.items() == other.items()
229 "od.viewitems() -> a set-like object providing a view on od's items"
[all...]
H A D_abcoll.py368 def items(self): member in class:Mapping
380 return dict(self.items()) == dict(other.items())
501 for key, value in kwds.items():
H A Drfc822.py454 def items(self): member in class:Message
459 return self.dict.items()
1011 print 'items =', m.items()
H A Dcgi.py360 The items are either a Python list (if there's multiple values) or
784 form.items() -> [(key, [val, val, ...]), (key, [val, val, ...]), ...]
802 get all of the values. values() and items() are a compromise:
820 def items(self): member in class:SvFormContentDict
822 for key, value in self.dict.items():
847 def items(self): member in class:InterpFormContentDict
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
H A Dtest_userdict.py91 # Test keys, items, values
93 self.assertEqual(u2.items(), d2.items())
111 def items(self): member in class:UserDictTest.test_all.Items
298 # items
299 self.assertEqual(s.items(), [(10,'ten'), (30, 'thirty')])
H A Dtest_cfgparser.py11 def items(self): member in class:SortedDict
12 result = self.data.items()
23 result = self.items()
26 def iteritems(self): return iter(self.items())
353 L = list(cf.items("section"))
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/zlib/
H A Dzutil.c216 voidpf zcalloc (voidpf opaque, unsigned items, unsigned size) argument
219 ulg bsize = (ulg)items*size;
275 voidpf zcalloc (voidpf opaque, unsigned items, unsigned size) argument
278 return _halloc((long)items, size);
296 extern voidp calloc OF((uInt items, uInt size));
300 voidpf zcalloc (opaque, items, size)
302 unsigned items;
305 if (opaque) items += size - size; /* make compiler happy */
306 return sizeof(uInt) > 2 ? (voidpf)malloc(items * size) :
307 (voidpf)calloc(items, siz
[all...]
/device/linaro/bootloader/edk2/EmbeddedPkg/Library/ZLib/
H A Dzutil.c214 voidpf ZLIB_INTERNAL zcalloc (voidpf opaque, unsigned items, unsigned size) argument
217 ulg bsize = (ulg)items*size;
277 voidpf ZLIB_INTERNAL zcalloc (voidpf opaque, uInt items, uInt size) argument
280 return _halloc((long)items, size);
298 extern voidp calloc OF((uInt items, uInt size));
302 voidpf ZLIB_INTERNAL zcalloc (opaque, items, size)
304 unsigned items;
309 return sizeof(uInt) > 2 ? (voidpf)malloc(items * size) :
310 (voidpf)calloc(items, size);
312 return AllocatePool (items * siz
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/xml/sax/
H A Dxmlreader.py333 def items(self): member in class:AttributesImpl
334 return self._attrs.items()
352 for (nsname, qname) in self._qnames.items():
359 for (nsname, qname) in self._qnames.items():
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/pdist/
H A Dcvslib.py269 def items(self): member in class:CVS
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/email/
H A Dmessage.py47 # A tuple is used for RFC 2231 encoded parameter values where items
346 def items(self):
406 for k, v in _params.items():
783 The returned list of items describes the Content-Type headers'
344 def items(self): member in class:Message
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/xml/sax/
H A Dxmlreader.py333 def items(self): member in class:AttributesImpl
334 return self._attrs.items()
352 for (nsname, qname) in self._qnames.items():
359 for (nsname, qname) in self._qnames.items():
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/xml/etree/
H A DElementTree.py184 # {@link #Element.items} to access
450 # returned in an arbitrary order. Equivalent to <b>attrib.items()</b>.
455 def items(self): member in class:Element
456 return self.attrib.items()
887 for key, value in elem.items():
915 items = elem.items()
916 if items or namespaces:
918 for v, k in sorted(namespaces.items(),
926 for k, v in sorted(items)
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/xml/etree/
H A DElementTree.py184 # {@link #Element.items} to access
450 # returned in an arbitrary order. Equivalent to <b>attrib.items()</b>.
455 def items(self): member in class:Element
456 return self.attrib.items()
882 for key, value in elem.items():
910 items = elem.items()
911 if items or namespaces:
913 for v, k in sorted(namespaces.items(),
921 for k, v in sorted(items)
[all...]

Completed in 168 milliseconds

12