Searched defs:idVector (Results 1 - 3 of 3) sorted by relevance

/external/webkit/Source/WebCore/html/
H A DHTMLFormCollection.cpp202 Vector<Element*>* idVector = info()->idCache.get(idAttrVal.impl()); local
203 if (!idVector) {
204 idVector = new Vector<Element*>;
205 info()->idCache.add(idAttrVal.impl(), idVector);
207 idVector->append(element);
229 Vector<Element*>* idVector = info()->idCache.get(idAttrVal.impl()); local
230 if (!idVector) {
231 idVector = new Vector<Element*>;
232 info()->idCache.add(idAttrVal.impl(), idVector);
234 idVector
[all...]
H A DHTMLCollection.cpp326 Vector<Element*>* idVector = m_info->idCache.get(idAttrVal.impl()); local
327 if (!idVector) {
328 idVector = new Vector<Element*>;
329 m_info->idCache.add(idAttrVal.impl(), idVector);
331 idVector->append(e);
/external/webkit/Source/WebCore/accessibility/
H A DAccessibilityRenderObject.cpp1225 Vector<String> idVector; local
1226 idList.split(' ', idVector);
1228 unsigned size = idVector.size();
1230 String idName = idVector[i];

Completed in 307 milliseconds