Home | History | Annotate | Download | only in accessibility

Lines Matching refs:objID

589     AXID objID = lastUsedID;
591 ++objID;
592 } while (!objID || HashTraits<AXID>::isDeletedValue(objID) || m_idsInUse.contains(objID));
594 lastUsedID = objID;
596 return objID;
602 AXID objID = obj->axObjectID();
603 if (objID) {
604 ASSERT(m_idsInUse.contains(objID));
605 return objID;
608 objID = platformGenerateAXID();
610 m_idsInUse.add(objID);
611 obj->setAXObjectID(objID);
613 return objID;
621 AXID objID = object->axObjectID();
622 if (!objID)
624 ASSERT(!HashTraits<AXID>::isDeletedValue(objID));
625 ASSERT(m_idsInUse.contains(objID));
627 m_idsInUse.remove(objID);