Home
last modified time | relevance | path

Searched refs:collection (Results 1 – 25 of 80) sorted by relevance

1234

/external/webkit/WebCore/bindings/js/
DJSHTMLCollectionCustom.cpp38 static JSValue getNamedItems(ExecState* exec, JSHTMLCollection* collection, const Identifier& prope… in getNamedItems() argument
41 collection->impl()->namedItems(propertyName, namedItems); in getNamedItems()
47 return toJS(exec, collection->globalObject(), namedItems[0].get()); in getNamedItems()
49 return new (exec) JSNamedNodesCollection(exec, collection->globalObject(), namedItems); in getNamedItems()
61 HTMLCollection* collection = jsCollection->impl(); in callHTMLCollection() local
71 return toJS(exec, jsCollection->globalObject(), collection->item(index)); in callHTMLCollection()
83 Node* node = collection->namedItem(pstr); in callHTMLCollection()
87 node = collection->nextNamedItem(pstr); in callHTMLCollection()
101 bool JSHTMLCollection::canGetItemsForName(ExecState*, HTMLCollection* collection, const Identifier&… in canGetItemsForName() argument
104 collection->namedItems(propertyName, namedItems); in canGetItemsForName()
[all …]
DJSHTMLDocumentCustom.cpp63 RefPtr<HTMLCollection> collection = document->documentNamedItems(name); in nameGetter() local
65 unsigned length = collection->length(); in nameGetter()
70 Node* node = collection->firstItem(); in nameGetter()
79 return toJS(exec, collection.get()); in nameGetter()
DJSHTMLAllCollection.h38 …<JSC::Structure> structure, JSDOMGlobalObject* globalObject, PassRefPtr<HTMLCollection> collection) in JSHTMLAllCollection() argument
39 : JSHTMLCollection(structure, globalObject, collection) in JSHTMLAllCollection()
DJSDOMWindowCustom.cpp125 RefPtr<HTMLCollection> collection = document->windowNamedItems(propertyName); in namedItemGetter() local
126 if (collection->length() == 1) in namedItemGetter()
127 return toJS(exec, collection->firstItem()); in namedItemGetter()
128 return toJS(exec, collection.get()); in namedItemGetter()
/external/webkit/WebCore/bindings/v8/
DV8Collection.h67 … Collection* collection = V8DOMWrapper::convertToNativeObject<Collection>(wrapperType, object); in getNamedPropertyOfCollection() local
69 return getV8Object<ItemType>(collection->namedItem(propertyName), implementationType); in getNamedPropertyOfCollection()
101 Collection* collection = V8DOMWrapper::convertDOMWrapperToNode<Collection>(info.Holder()); in nodeCollectionNamedPropertyGetter() local
103 void* implementation = collection->namedItem(propertyName); in nodeCollectionNamedPropertyGetter()
115 … Collection* collection = V8DOMWrapper::convertToNativeObject<Collection>(wrapperType, object); in getIndexedPropertyOfCollection() local
116 return getV8Object<ItemType>(collection->item(index), implementationType); in getIndexedPropertyOfCollection()
130 Collection* collection = V8DOMWrapper::convertDOMWrapperToNode<Collection>(info.Holder()); in nodeCollectionIndexedPropertyGetter() local
131 void* implementation = collection->item(index); in nodeCollectionIndexedPropertyGetter()
140 Collection* collection = V8DOMWrapper::convertDOMWrapperToNode<Collection>(info.Holder()); in nodeCollectionIndexedPropertyEnumerator() local
141 int length = collection->length(); in nodeCollectionIndexedPropertyEnumerator()
[all …]
/external/webkit/JavaScriptCore/wtf/
DHashMap.h273 void deleteAllPairSeconds(HashTableType& collection) in deleteAllPairSeconds() argument
276 iterator end = collection.end(); in deleteAllPairSeconds()
277 for (iterator it = collection.begin(); it != end; ++it) in deleteAllPairSeconds()
282 inline void deleteAllValues(const HashMap<T, U, V, W, X>& collection) in deleteAllValues() argument
284 deleteAllPairSeconds<typename HashMap<T, U, V, W, X>::MappedType>(collection); in deleteAllValues()
288 void deleteAllPairFirsts(HashTableType& collection) in deleteAllPairFirsts() argument
291 iterator end = collection.end(); in deleteAllPairFirsts()
292 for (iterator it = collection.begin(); it != end; ++it) in deleteAllPairFirsts()
297 inline void deleteAllKeys(const HashMap<T, U, V, W, X>& collection) in deleteAllKeys() argument
299 deleteAllPairFirsts<typename HashMap<T, U, V, W, X>::KeyType>(collection); in deleteAllKeys()
[all …]
DHashCountedSet.h175 …inline void copyToVector(const HashCountedSet<Value, HashFunctions, Traits>& collection, VectorTyp… in copyToVector() argument
179 vector.resize(collection.size()); in copyToVector()
181 iterator it = collection.begin(); in copyToVector()
182 iterator end = collection.end(); in copyToVector()
188 …inline void copyToVector(const HashCountedSet<Value, HashFunctions, Traits>& collection, Vector<Va… in copyToVector() argument
192 vector.resize(collection.size()); in copyToVector()
194 iterator it = collection.begin(); in copyToVector()
195 iterator end = collection.end(); in copyToVector()
DHashSet.h241 void deleteAllValues(HashTableType& collection) in deleteAllValues() argument
244 iterator end = collection.end(); in deleteAllValues()
245 for (iterator it = collection.begin(); it != end; ++it) in deleteAllValues()
250 inline void deleteAllValues(const HashSet<T, U, V>& collection) in deleteAllValues() argument
252 deleteAllValues<typename HashSet<T, U, V>::ValueType>(collection.m_impl); in deleteAllValues()
256 inline void copyToVector(const HashSet<T, U, V>& collection, W& vector) in copyToVector() argument
260 vector.resize(collection.size()); in copyToVector()
262 iterator it = collection.begin(); in copyToVector()
263 iterator end = collection.end(); in copyToVector()
DListHashSet.h598 void deleteAllValues(HashTableType& collection) in deleteAllValues() argument
601 iterator end = collection.end(); in deleteAllValues()
602 for (iterator it = collection.begin(); it != end; ++it) in deleteAllValues()
607 inline void deleteAllValues(const ListHashSet<T, U>& collection) in deleteAllValues() argument
609 deleteAllValues<true, typename ListHashSet<T, U>::ValueType>(collection.m_impl); in deleteAllValues()
DDeque.h324 void deleteAllValues(const Deque<T>& collection) in deleteAllValues() argument
327 iterator end = collection.end(); in deleteAllValues()
328 for (iterator it = collection.begin(); it != end; ++it) in deleteAllValues()
/external/webkit/WebCore/bindings/v8/custom/
DV8HTMLCollectionCustom.cpp41 static v8::Handle<v8::Value> getNamedItems(HTMLCollection* collection, AtomicString name) in getNamedItems() argument
44 collection->namedItems(name, namedItems); in getNamedItems()
56 static v8::Handle<v8::Value> getItem(HTMLCollection* collection, v8::Handle<v8::Value> argument) in getItem() argument
60 … v8::Handle<v8::Value> result = getNamedItems(collection, toWebCoreString(argument->ToString())); in getItem()
68 RefPtr<Node> result = collection->item(index->Uint32Value()); in getItem()
DV8HTMLOptionsCollectionCustom.cpp119 …HTMLOptionsCollection* collection = V8DOMWrapper::convertToNativeObject<HTMLOptionsCollection>(V8C… in INDEXED_PROPERTY_GETTER() local
121 RefPtr<Node> result = collection->item(index); in INDEXED_PROPERTY_GETTER()
131 …HTMLOptionsCollection* collection = V8DOMWrapper::convertToNativeObject<HTMLOptionsCollection>(V8C… in INDEXED_PROPERTY_SETTER() local
132 HTMLSelectElement* base = static_cast<HTMLSelectElement*>(collection->base()); in INDEXED_PROPERTY_SETTER()
DV8HTMLSelectElementCollectionCustom.cpp56 PassRefPtr<HTMLOptionsCollection> collection = select->options(); in NAMED_PROPERTY_GETTER() local
59 collection->namedItems(v8StringToAtomicWebCoreString(name), items); in NAMED_PROPERTY_GETTER()
DV8HTMLFormElementCustom.cpp79 NodeList* collection = new V8NamedNodesCollection(elements); in NAMED_PROPERTY_GETTER() local
80 return V8DOMWrapper::convertToV8Object(V8ClassIndex::NODELIST, collection); in NAMED_PROPERTY_GETTER()
/external/netcat/scripts/
DREADME1 A collection of example scripts that use netcat as a backend, each
/external/webkit/WebCore/bindings/objc/
DDOMInternal.mm45 …th zeroing weak pointers is the recommended way to build caches like this under garbage collection.
57 …th zeroing weak pointers is the recommended way to build caches like this under garbage collection.
DDOMHTML.mm185 Class kitClass(WebCore::HTMLCollection* collection)
187 if (collection->type() == WebCore::SelectOptions)
/external/webkit/WebKit/win/Interfaces/
DDOMHTML.idl149 HRESULT images([out, retval] IDOMHTMLCollection** collection);
154 HRESULT applets([out, retval] IDOMHTMLCollection** collection);
159 HRESULT links([out, retval] IDOMHTMLCollection** collection);
164 HRESULT forms([out, retval] IDOMHTMLCollection** collection);
169 HRESULT anchors([out, retval] IDOMHTMLCollection** collection);
/external/iptables/extensions/
Dlibipt_hashlimit.man35 How many miliseconds between garbage collection intervals
/external/webkit/V8Binding/v8/
DChangeLog201 Added stack traces collection to Error objects accessible through
713 collection. Entire object groups are now passed to V8 instead of
803 capacity before doing a garbage collection and fixed issue that
939 whenever a mark-sweep collection is started.
1077 Improved performance of garbage collection by moving the
1078 function that updates pointers during compacting collection
1091 Improved performance of garbage collection by changing the way
1093 full garbage collection and by changing the way we mark roots.
1147 collection and the code for allocating objects in paged
/external/webkit/WebCore/html/
DHTMLSelectElement.idl71 … // "The contained options can be directly accessed through the select element as a collection."
/external/webkit/V8Binding/v8/benchmarks/
DREADME.txt4 This is the V8 benchmark suite: A collection of pure JavaScript
/external/elfutils/
Delfutils.spec2 Summary: A collection of utilities and DSOs to handle compiled objects.
27 Elfutils is a collection of utilities, including ld (a linker),
/external/webkit/WebKit/win/
DDOMHTMLClasses.cpp273 /* [retval][out] */ IDOMHTMLCollection** collection) in forms() argument
275 *collection = 0; in forms()
280 *collection = DOMHTMLCollection::createInstance(htmlDoc->forms().get()); in forms()
/external/elfutils/config/
Delfutils.spec.in2 Summary: A collection of utilities and DSOs to handle compiled objects.
27 Elfutils is a collection of utilities, including ld (a linker),

1234