Home
last modified time | relevance | path

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

/external/webkit/WebCore/xml/
DXPathFunctions.cpp268 Vector<UChar> idList; // A whitespace-separated list of IDs in evaluate() local
274 idList.append(str.characters(), str.length()); in evaluate()
275 idList.append(' '); in evaluate()
279 idList.append(str.characters(), str.length()); in evaluate()
287 size_t length = idList.size(); in evaluate()
289 while (startPos < length && isWhitespace(idList[startPos])) in evaluate()
296 while (endPos < length && !isWhitespace(idList[endPos])) in evaluate()
301 Node* node = contextDocument->getElementById(String(&idList[startPos], endPos - startPos)); in evaluate()
/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/webkit/WebCore/page/
DAccessibilityRenderObject.cpp764 String idList = s; in ariaAccessiblityName() local
765 idList.replace('\n', ' '); in ariaAccessiblityName()
767 idList.split(' ', idVector); in ariaAccessiblityName()
798 String idList = getAttribute(aria_labeledbyAttr).string(); in ariaLabeledByAttribute() local
799 if (idList.isEmpty()) { in ariaLabeledByAttribute()
800 idList = getAttribute(aria_labelledbyAttr).string(); in ariaLabeledByAttribute()
801 if (idList.isEmpty()) in ariaLabeledByAttribute()
805 return ariaAccessiblityName(idList); in ariaLabeledByAttribute()
888 String idList = getAttribute(aria_describedbyAttr).string(); in ariaDescribedByAttribute() local
889 if (idList.isEmpty()) in ariaDescribedByAttribute()
[all …]
/external/opencore/fileformats/mp4/parser/src/
Dmpeg4file.cpp483 uint32* idList = (uint32 *)oscl_malloc(sizeof(uint32) * numMediaTracks); in Mpeg4File() local
484 _pmovieAtom->getTrackIDList(idList, numMediaTracks); in Mpeg4File()
489 … int32 retVal = _pmovieAtom->getOffsetByTime(idList[i], 0, &offsetList[i]); in Mpeg4File()
532 oscl_free(idList); in Mpeg4File()