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

12345

/macosx-10.9.5/WebCore-7537.78.1/bindings/js/
H A DJSHTMLCollectionCustom.cpp46 bool JSHTMLCollection::canGetItemsForName(ExecState*, HTMLCollection* collection, PropertyName propertyName) argument
48 return collection->hasNamedItem(propertyNameToAtomicString(propertyName));
53 JSHTMLCollection* collection = jsCast<JSHTMLCollection*>(asObject(slotBase)); local
55 HTMLCollection* impl = collection->impl();
58 return toJS(exec, collection->globalObject(), static_cast<HTMLPropertiesCollection*>(impl)->propertyNodeList(name));
60 return toJS(exec, collection->globalObject(), impl->namedItem(name));
63 JSValue toJS(ExecState* exec, JSDOMGlobalObject* globalObject, HTMLCollection* collection) argument
65 if (!collection)
68 JSDOMWrapper* wrapper = getCachedWrapper(currentWorld(exec), collection);
73 switch (collection
[all...]
H A DJSHTMLFormControlsCollectionCustom.cpp40 static JSValue getNamedItems(ExecState* exec, JSHTMLFormControlsCollection* collection, PropertyName propertyName) argument
44 collection->impl()->namedItems(name, namedItems);
49 return toJS(exec, collection->globalObject(), namedItems[0].get());
51 ASSERT(collection->impl()->type() == FormControls);
52 return toJS(exec, collection->globalObject(), collection->impl()->ownerNode()->radioNodeList(name).get());
55 bool JSHTMLFormControlsCollection::canGetItemsForName(ExecState*, HTMLFormControlsCollection* collection, PropertyName propertyName) argument
57 return collection->hasNamedItem(propertyNameToAtomicString(propertyName));
H A DJSHTMLAllCollectionCustom.cpp43 static JSValue getNamedItems(ExecState* exec, JSHTMLAllCollection* collection, PropertyName propertyName) argument
46 collection->impl()->namedItems(propertyNameToAtomicString(propertyName), namedItems);
51 return toJS(exec, collection->globalObject(), namedItems[0].get());
55 return toJS(exec, collection->globalObject(), StaticNodeList::adopt(namedItems).get());
66 HTMLAllCollection* collection = static_cast<HTMLAllCollection*>(jsCollection->impl()); local
75 return JSValue::encode(toJS(exec, jsCollection->globalObject(), collection->item(index)));
85 if (Node* node = collection->namedItemWithIndex(string, index))
98 bool JSHTMLAllCollection::canGetItemsForName(ExecState*, HTMLAllCollection* collection, PropertyName propertyName) argument
100 return collection->hasNamedItem(propertyNameToAtomicString(propertyName));
/macosx-10.9.5/xnu-2422.115.4/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.9.5/CPANInternal-140/Sub-Exporter/t/lib/Test/SubExporter/
H A DGroupGenSubclass.pm8 my ($class, $group, $arg, $collection) = @_;
14 collection => $collection,
H A DGroupGen.pm13 my ($class, $group, $arg, $collection) = @_;
19 collection => $collection,
29 my ($class, $group, $arg, $collection) = @_;
35 collection => $collection,
H A DDashSetup.pm26 my ($class, $name, $arg, $collection) = @_;
H A Ds_e.pm29 my ($class, $name, $arg, $collection) = @_;
/macosx-10.9.5/CPANInternal-140/DBIx-Class/t/lib/DBICTest/Schema/
H A DCollectionObject.pm8 'collection' => {
15 __PACKAGE__->set_primary_key(qw/collection object/);
17 __PACKAGE__->belongs_to( collection => "DBICTest::Schema::Collection",
18 { "foreign.collectionid" => "self.collection" }
/macosx-10.9.5/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.9.5/CPANInternal-140/Sub-Exporter/t/
H A Dcollection.t46 my $collection = Sub::Exporter::_collect_collections(
53 $collection,
55 "collection returned properly from collector",
60 my $collection = Sub::Exporter::_collect_collections(
67 $collection,
79 qr/collection \S+ provided multiple/,
80 "can't provide multiple collection values",
98 my $collection = Sub::Exporter::_collect_collections($config, $arg, 'main');
100 $collection,
102 "collector validator allows collection"
[all...]
H A Dcol-init.t38 my $collection = Sub::Exporter::_collect_collections(
45 $collection,
47 "collection returned properly from collector",
52 my $collection = eval {
H A Dreal-export-groupgen.t43 collection => { col1 => { value => 2 } },
56 collection => { col1 => { value => 2 } },
69 collection => { col1 => { value => 2 } },
81 collection => { col1 => { value => 3 } },
H A Dgroup-generator.t23 my ($class, $group, $arg, $collection) = @_;
29 collection => $collection,
161 collection => { col1 => { value => 2 } },
186 collection => { col1 => { value => 2 } },
/macosx-10.9.5/WebKit-7537.78.2/qt/Api/
H A Dqwebelement.h182 void append(const QWebElementCollection &collection);
195 inline const_iterator(const QWebElementCollection* collection, int index) : i(index), collection(collection) {} argument
196 inline const_iterator(const const_iterator& o) : i(o.i), collection(o.collection) {}
198 inline const QWebElement operator*() const { return collection->at(i); }
200 inline bool operator==(const const_iterator& o) const { return i == o.i && collection == o.collection; }
201 inline bool operator!=(const const_iterator& o) const { return i != o.i || collection !
218 const QWebElementCollection* const collection; member in class:QWebElementCollection::const_iterator
229 iterator(const QWebElementCollection* collection, int index) argument
252 const QWebElementCollection* const collection; member in class:QWebElementCollection::iterator
[all...]
/macosx-10.9.5/IOHIDFamily-503.215.2/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.9.5/xnu-2422.115.4/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.9.5/IOHIDFamily-503.215.2/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.9.5/WebCore-7537.78.1/bindings/gobject/
H A DWebKitDOMPrivate.cpp130 WebKitDOMHTMLCollection* wrap(HTMLCollection* collection) argument
132 ASSERT(collection);
134 if (collection->type() == WebCore::SelectOptions)
135 return WEBKIT_DOM_HTML_COLLECTION(wrapHTMLOptionsCollection(static_cast<HTMLOptionsCollection*>(collection)));
136 return wrapHTMLCollection(collection);
/macosx-10.9.5/cups-372.4/cups/cups/
H A Dtestipp.c58 ipp_uchar_t collection[] = /* Collection buffer */ variable
256 *size; /* media-size collection */
322 if (length != sizeof(collection))
325 length, (int)sizeof(collection));
351 else if (data.wused != sizeof(collection))
354 (int)sizeof(collection));
356 hex_dump("Baseline", collection, sizeof(collection));
359 else if (memcmp(data.wbuffer, collection, data.wused))
362 if (data.wbuffer[i] != collection[
[all...]
/macosx-10.9.5/WebKit-7537.78.2/gtk/tests/
H A Dtestdomdocument.c169 WebKitDOMHTMLCollection *collection = webkit_dom_document_get_links(document); local
170 g_assert(collection);
171 gulong length = webkit_dom_html_collection_get_length(collection);
179 WebKitDOMNode *node = webkit_dom_html_collection_item(collection, i);
188 g_object_unref(collection);
263 WebKitDOMHTMLCollection *collection = webkit_dom_document_get_links(document); local
264 g_assert(collection);
265 g_object_weak_ref(G_OBJECT(collection), (GWeakNotify)weak_notify, &count);
274 g_object_unref(collection);
288 collection
[all...]
/macosx-10.9.5/pyobjc-42/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.9.5/pyobjc-42/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...]

Completed in 235 milliseconds

12345