Searched refs:collection (Results 1 - 25 of 87) sorted by relevance

1234

/macosx-10.10.1/xnu-2782.1.97/libkern/c++/
H A DOSCollectionIterator.cpp54 collection = inColl;
79 kfree(collIterator, collection->iteratorSize());
80 ACCUMSIZE(-(collection->iteratorSize()));
84 if (collection) {
85 collection->release();
86 collection = 0;
97 collIterator = (void *)kalloc(collection->iteratorSize());
98 ACCUMSIZE(collection->iteratorSize());
103 if (!collection->initIterator(collIterator))
106 initialUpdateStamp = collection
[all...]
/macosx-10.10.1/BerkeleyDB-21/db/java/src/com/sleepycat/persist/impl/
H A DCollectionProxy.java38 public final void initializeProxy(Collection<E> collection) { argument
39 elements = (E[]) new Object[collection.size()];
41 for (E element : collection) {
48 Collection<E> collection = newInstance(elements.length);
50 collection.add(element);
52 return collection;
97 static Object[] getElements(RawObject collection) { argument
99 while (value == null && collection != null) {
100 Map<String,Object> values = collection.getValues();
104 collection
123 setElements(RawObject collection, Object[] elements) argument
[all...]
/macosx-10.10.1/IOHIDFamily-606.1.7/IOHIDSystem/IOHIDDescriptorParser/
H A DHIDGetNextButtonInfo.c55 * HIDGetNextButtonInfo - Get report id and collection for a button. In keeping
57 * next collection, so that you can find usages that
64 * collection - Starting Collection Criteria or zero
67 * collection - Final Collection Criteria or no change
77 UInt32 * collection,
91 if ((ptPreparsedData == NULL) || (collection == NULL) || (reportID == NULL))
98 iCollection = *collection;
103 // the collection parameter. HIDGetButton will only look at report items that
104 // are within the collection and can therefore limit it's searches to starting at
107 // find the NEXT collection a
73 HIDGetNextButtonInfo(HIDReportType reportType, HIDUsage usagePage, HIDUsage usage, UInt32 * collection, UInt8 * reportID, HIDPreparsedDataRef preparsedDataRef) argument
[all...]
H A DHIDGetNextUsageValueInfo.c55 * HIDGetNextUsageValueInfo - Get report id and collection for a usage. In keeping
57 * next collection, so that you can find usages that
64 * collection - Starting Collection Criteria or zero
67 * collection - Final Collection Criteria or no change
78 UInt32 * collection,
92 if ((ptPreparsedData == NULL) || (collection == NULL) || (reportID == NULL))
99 iCollection = *collection;
104 // the collection parameter. HIDGetUsageValue will only look at report items that
105 // are within the collection and can therefore limit it's searches to starting at
108 // find the NEXT collection a
74 HIDGetNextUsageValueInfo(HIDReportType reportType, HIDUsage usagePage, HIDUsage usage, UInt32 * collection, UInt8 * reportID, HIDPreparsedDataRef preparsedDataRef) argument
[all...]
H A DHIDSetButtons.c79 UInt32 collection,
107 if (collection >= ptPreparsedData->collectionCount)
114 ptCollection = &ptPreparsedData->collections[collection];
192 * collection - Collection Criteria or zero
207 UInt32 collection,
238 iStatus = HIDSetButton(reportType, usagePage, collection,
77 HIDSetButton(HIDReportType reportType, HIDUsage usagePage, UInt32 collection, HIDUsage usage, HIDPreparsedDataRef preparsedDataRef, void * report, IOByteCount reportLength) argument
205 HIDSetButtons(HIDReportType reportType, HIDUsage usagePage, UInt32 collection, HIDUsage * usageList, UInt32 * usageListSize, HIDPreparsedDataRef preparsedDataRef, void * report, IOByteCount reportLength) argument
/macosx-10.10.1/xnu-2782.1.97/libkern/libkern/c++/
H A DOSCollectionIterator.h41 * This header declares the OSCollectionIterator collection class.
53 * to allow association of an iterator with a specific collection.
55 * To use an OSCollectionIterator, you create it with the collection
70 * // report that collection changed during iteration
79 * simply look them up in the collection with the keys.
97 const OSCollection * collection; member in class:OSCollectionIterator
108 * for the provided collection object.
110 * @param inColl The OSCollection-derived collection object to be iteratated.
123 * for the provided collection object.
125 * @param inColl The OSCollection-derived collection objec
[all...]
/macosx-10.10.1/IOHIDFamily-606.1.7/IOHIDSystem/IOKit/hidsystem/
H A DIOHIDDescriptorParser.h131 @field usagePage Specifies the usage page identifier for this top level collection.
135 @field numberCollectionNodes Specifies the number of HIDCollectionNode structures that are returned for this top level collection by the HIDGetConnectionNodes function.
193 UInt32 collection; member in struct:HIDButtonCaps
231 UInt32 collection; member in struct:HIDButtonCapabilities
274 UInt32 collection; member in struct:HIDValueCaps
321 UInt32 collection; member in struct:HIDValueCapabilities
460 @abstract Returns an array of HIDCollectionNode structures that describe the relationships and layout of the link collections within this top level collection.
461 @discussion The length of the buffer required, in array elements, for an entire collection node array is found in the HIDCaps structure member numberCollectionNodes. You obtain the HIDCaps information by calling the HIDGetCaps function. For information on the relationships of link collections described by the data returned from this routine, see the descripton of the HIDCollectionNode structure.
462 @param collectionNodes Points to a caller-allocated array of HIDCollectionNode structures in which this routine returns an entry for each collection within the top level collection
[all...]
/macosx-10.10.1/cups-408/cups/cups/
H A Dtestipp.c50 static ipp_uchar_t collection[] = /* Collection buffer */ variable
248 *size; /* media-size collection */
314 if (length != sizeof(collection))
317 (int)length, (int)sizeof(collection));
343 else if (data.wused != sizeof(collection))
346 (int)sizeof(collection));
348 hex_dump("Baseline", collection, sizeof(collection));
351 else if (memcmp(data.wbuffer, collection, data.wused))
354 if (data.wbuffer[i] != collection[
[all...]
H A Ddest-options.c35 static void cups_add_dconstres(cups_array_t *a, ipp_t *collection);
429 for (attr = ippFirstAttribute(r->collection);
431 attr = ippNextAttribute(r->collection))
1160 ipp_t *collection) /* I - Collection value */
1166 if ((attr = ippFindAttribute(collection, "resolver-name",
1174 temp->collection = collection;
1353 cups_add_dconstres(dinfo->constraints, val->collection);
1360 cups_add_dconstres(dinfo->resolvers, val->collection);
1368 * TODO: Need to support collection default
1158 cups_add_dconstres( cups_array_t *a, ipp_t *collection) argument
[all...]
H A Dencode.c377 ipp_t *collection; /* Collection value */ local
378 int num_cols; /* Number of collection values */
751 if ((collection = ippNew()) == NULL)
762 attr->values[j].collection = collection;
763 cupsEncodeOptions2(collection, num_cols, cols, IPP_TAG_JOB);
H A Dpwg-media.c440 if ((media_size = ippFindAttribute(media_col->values[0].collection,
449 x_dimension = ippFindAttribute(media_size->values[0].collection,
451 y_dimension = ippFindAttribute(media_size->values[0].collection,
480 media_bottom_margin = ippFindAttribute(media_col->values[0].collection,
483 media_left_margin = ippFindAttribute(media_col->values[0].collection,
486 media_right_margin = ippFindAttribute(media_col->values[0].collection,
489 media_top_margin = ippFindAttribute(media_col->values[0].collection,
/macosx-10.10.1/pyobjc-45/2.5/pyobjc/pyobjc-framework-Cocoa/Lib/PyObjCTools/
H A DConversion.py104 Convert a Python collection (dict, list, tuple, string) into an
105 Objective-C collection.
115 collection = NSMutableDictionary.dictionary()
121 collection[aKey] = convertedValue
122 return collection
124 collection = NSMutableArray.array()
128 collection.append(aValue)
129 return collection
140 raise TypeError("Type '%s' encountered in Python collection; don't know how to convert." % type(aPyCollection))
146 collection (al
[all...]
/macosx-10.10.1/pyobjc-45/2.6/pyobjc/pyobjc-framework-Cocoa/Lib/PyObjCTools/
H A DConversion.py104 Convert a Python collection (dict, list, tuple, string) into an
105 Objective-C collection.
115 collection = NSMutableDictionary.dictionary()
121 collection[aKey] = convertedValue
122 return collection
124 collection = NSMutableArray.array()
128 collection.append(aValue)
129 return collection
140 raise TypeError("Type '%s' encountered in Python collection; don't know how to convert." % type(aPyCollection))
146 collection (al
[all...]
/macosx-10.10.1/pyobjc-45/pyobjc/pyobjc-framework-Cocoa-2.5.1/Lib/PyObjCTools/
H A DConversion.py121 Convert a Python collection (dict, list, tuple, string) into an
122 Objective-C collection.
132 collection = NSMutableDictionary.dictionary()
142 collection[aKey] = convertedValue
143 return collection
145 collection = NSMutableArray.array()
149 collection.append(aValue)
150 return collection
161 raise TypeError("Type '%s' encountered in Python collection; don't know how to convert." % type(aPyCollection))
167 collection (al
[all...]
/macosx-10.10.1/emacs-93/emacs/lisp/mh-e/
H A Dmh-limit.el269 current-arg collection arg-list)
273 (setq collection
274 (if (null collection)
276 (format "%s %s" collection current-arg)))
277 (when collection
278 (setq arg-list (append arg-list (list collection)))
279 (setq collection nil))
282 (when collection
283 (setq arg-list (append arg-list (list collection))))
/macosx-10.10.1/pyobjc-45/2.6/pyobjc/pyobjc-framework-CoreText/PyObjCTest/
H A Dtest_ctglyphinfo.py38 for collection in (kCTIdentityMappingCharacterCollection, kCTAdobeCNS1CharacterCollection,
41 v = CTGlyphInfoCreateWithCharacterIdentifier(3254, collection, "(c)")
/macosx-10.10.1/pyobjc-45/pyobjc/pyobjc-framework-CoreText-2.5.1/PyObjCTest/
H A Dtest_ctglyphinfo.py48 for collection in (kCTIdentityMappingCharacterCollection, kCTAdobeCNS1CharacterCollection,
51 v = CTGlyphInfoCreateWithCharacterIdentifier(3254, collection, "(c)")
/macosx-10.10.1/WTF-7600.1.24/wtf/
H A DHashCountedSet.h207 inline void copyToVector(const HashCountedSet<Value, HashFunctions, Traits>& collection, VectorType& vector) argument
211 vector.resize(collection.size());
213 iterator it = collection.begin();
214 iterator end = collection.end();
220 inline void copyToVector(const HashCountedSet<Value, HashFunctions, Traits>& collection, Vector<Value>& vector) argument
224 vector.resize(collection.size());
226 iterator it = collection.begin();
227 iterator end = collection.end();
/macosx-10.10.1/emacs-93/emacs/src/
H A Dminibuf.c1289 (string, collection, predicate)
1290 Lisp_Object string, collection, predicate;
1297 int type = (HASH_TABLE_P (collection) ? 3
1298 : VECTORP (collection) ? 2
1299 : NILP (collection) || (CONSP (collection)
1300 && (!SYMBOLP (XCAR (collection))
1301 || NILP (XCAR (collection)))));
1310 return call3 (collection, string, predicate, Qnil);
1316 tail = collection;
1284 Lisp_Object string, collection, predicate; variable
1560 Lisp_Object string, collection, predicate, hide_spaces; variable
1756 Lisp_Object prompt, collection, predicate, require_match, initial_input; variable
1835 Lisp_Object string, collection, predicate; variable
[all...]
/macosx-10.10.1/apache-793/httpd/modules/dav/fs/
H A Drepos.c244 if (resource->collection) {
731 resource->collection = r->finfo.filetype == APR_DIR;
736 if (resource->collection) {
745 resource->collection = 0;
817 parent_resource->collection = 1;
1086 if (resource->collection) {
1089 "collection.");
1126 "this collection.");
1130 "Cannot create collection; intermediate "
1131 "collection doe
[all...]
/macosx-10.10.1/emacs-93/emacs/lisp/
H A Dtempo.el167 (defvar tempo-collection nil
168 "A collection of all the tags defined for the current buffer.")
170 (defvar tempo-dirty-collection t
171 "Indicates if the tag collection needs to be rebuilt.")
215 (make-variable-buffer-local 'tempo-collection)
216 (make-variable-buffer-local 'tempo-dirty-collection)
602 (tempo-invalidate-collection))
624 (tempo-invalidate-collection))
627 ;;; tempo-invalidate-collection
629 (defun tempo-invalidate-collection ()
[all...]
/macosx-10.10.1/Security-57031.1.35/Security/sec/SOSCircle/Regressions/
H A DCKDKeyValueStore.h84 @property (retain) NSMutableDictionary *collection; variable
/macosx-10.10.1/WebKit-7600.1.25/win/Interfaces/
H A DDOMHTML.idl150 HRESULT images([out, retval] IDOMHTMLCollection** collection);
155 HRESULT applets([out, retval] IDOMHTMLCollection** collection);
160 HRESULT links([out, retval] IDOMHTMLCollection** collection);
165 HRESULT forms([out, retval] IDOMHTMLCollection** collection);
170 HRESULT anchors([out, retval] IDOMHTMLCollection** collection);
/macosx-10.10.1/CPANInternal-159.1/Heap-0.80/lib/
H A DHeap.pm44 The Heap collection of modules provide routines that manage
50 If the collection of elements is changing dynamically, the
51 heap has less overhead than keeping the collection fully
/macosx-10.10.1/ruby-106/ruby/lib/rdoc/
H A Dstore.rb271 # Removes empty items and ensures item in each collection are unique and
274 def clean_cache_collection collection # :nodoc:
275 collection.each do |name, item|
277 collection.delete name

Completed in 202 milliseconds

1234