Home
last modified time | relevance | path

Searched refs:idList (Results 1 – 5 of 5) sorted by relevance

/external/webkit/Source/WebCore/xml/
DXPathFunctions.cpp321 Vector<UChar> idList; // A whitespace-separated list of IDs in evaluate() local
327 idList.append(str.characters(), str.length()); in evaluate()
328 idList.append(' '); in evaluate()
332 idList.append(str.characters(), str.length()); in evaluate()
340 size_t length = idList.size(); in evaluate()
342 while (startPos < length && isWhitespace(idList[startPos])) in evaluate()
349 while (endPos < length && !isWhitespace(idList[endPos])) in evaluate()
354 Node* node = contextDocument->getElementById(String(&idList[startPos], endPos - startPos)); in evaluate()
/external/chromium/chrome/browser/resources/net_internals/
Ddataview.js405 var idList = sourceTypeToSourceIdList[e.source.type];
406 if (!idList) {
407 idList = [];
408 sourceTypeToSourceIdList[e.source.type] = idList;
410 idList.push(e.source.id);
/external/srec/tools/grxmlcompile/
Dvocab.cpp232 std::vector<int> idList; // Create storage in lookupModelIDs() local
252 idList.push_back(id); in lookupModelIDs()
254 m_ModelIDs.push_back(idList); in lookupModelIDs()
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
DTimeZoneTest.java220 List<String> idList = Arrays.asList(ids); in test_getAvailableIDs_I() local
222 idList.contains("Hongkong")); in test_getAvailableIDs_I()
/external/webkit/Source/WebCore/accessibility/
DAccessibilityRenderObject.cpp1220 String idList = getAttribute(attribute).string(); in elementsFromAttribute() local
1221 if (idList.isEmpty()) in elementsFromAttribute()
1224 idList.replace('\n', ' '); in elementsFromAttribute()
1226 idList.split(' ', idVector); in elementsFromAttribute()