Home | History | Annotate | Download | only in fpdfsdk

Lines Matching refs:sa

85     std::vector<CPDFSDK_Annot*>* sa,
87 CPDFSDK_Annot* pLeftTopAnnot = sa->at(idx);
90 sa->erase(sa->begin() + idx);
94 void CBA_AnnotIterator::AddSelectedToAnnots(std::vector<CPDFSDK_Annot*>* sa,
97 m_Annots.push_back(sa->at(aSelect->at(i)));
100 sa->erase(sa->begin() + aSelect->at(i));
110 std::vector<CPDFSDK_Annot*> sa;
111 CollectAnnots(&sa);
112 std::sort(sa.begin(), sa.end(), CompareByLeftAscending);
114 while (!sa.empty()) {
117 for (int i = sa.size() - 1; i >= 0; i--) {
118 CFX_FloatRect rcAnnot = GetAnnotRect(sa[i]);
127 CFX_FloatRect rcLeftTop = AddToAnnotsList(&sa, nLeftTopIndex);
130 for (size_t i = 0; i < sa.size(); ++i) {
131 CFX_FloatRect rcAnnot = GetAnnotRect(sa[i]);
136 AddSelectedToAnnots(&sa, &aSelect);
142 std::vector<CPDFSDK_Annot*> sa;
143 CollectAnnots(&sa);
144 std::sort(sa.begin(), sa.end(), CompareByTopDescending);
146 while (!sa.empty()) {
149 for (int i = sa.size() - 1; i >= 0; --i) {
150 CFX_FloatRect rcAnnot = GetAnnotRect(sa[i]);
162 CFX_FloatRect rcLeftTop = AddToAnnotsList(&sa, nLeftTopIndex);
165 for (size_t i = 0; i < sa.size(); ++i) {
166 CFX_FloatRect rcAnnot = GetAnnotRect(sa[i]);
171 AddSelectedToAnnots(&sa, &aSelect);