HomeSort by relevance Sort by last modified time
    Searched refs:idList (Results 1 - 3 of 3) sorted by null

  /external/webkit/WebCore/xml/
XPathFunctions.cpp 321 Vector<UChar> idList; // A whitespace-separated list of IDs
327 idList.append(str.characters(), str.length());
328 idList.append(' ');
332 idList.append(str.characters(), str.length());
340 size_t length = idList.size();
342 while (startPos < length && isWhitespace(idList[startPos]))
349 while (endPos < length && !isWhitespace(idList[endPos]))
354 Node* node = contextDocument->getElementById(String(&idList[startPos], endPos - startPos));
  /external/srec/tools/grxmlcompile/
vocab.cpp 232 std::vector<int> idList; // Create storage
252 idList.push_back(id);
254 m_ModelIDs.push_back(idList);
  /external/webkit/WebCore/accessibility/
AccessibilityRenderObject.cpp 986 String idList = getAttribute(attribute).string();
987 if (idList.isEmpty())
990 idList.replace('\n', ' ');
992 idList.split(' ', idVector);
    [all...]

Completed in 202 milliseconds