Searched refs:idList (Results 1 - 2 of 2) sorted by relevance

/macosx-10.10/WebCore-7600.1.25/xml/
H A DXPathFunctions.cpp319 StringBuilder idList; // A whitespace-separated list of IDs local
322 idList.append(a.toString());
325 idList.append(stringValue(node.get()));
326 idList.append(' ');
335 unsigned length = idList.length();
337 while (startPos < length && isWhitespace(idList[startPos]))
344 while (endPos < length && !isWhitespace(idList[endPos]))
349 Node* node = contextScope.getElementById(atomicSubstring(idList, startPos, endPos - startPos));
/macosx-10.10/WebCore-7600.1.25/accessibility/
H A DAccessibilityObject.cpp2459 String idList = getAttribute(attribute).string(); local
2460 if (idList.isEmpty())
2463 idList.replace('\n', ' ');
2465 idList.split(' ', idVector);

Completed in 180 milliseconds