Lines Matching refs:pCurrent
898 for(field_params_t::const_iterator pCurrent = m_pInParams->begin(); in Import() local
899 pCurrent != m_pInParams->end(); in Import()
900 ++pCurrent) in Import()
902 if(pCurrent->first.equalsAscii(ODF_FORMDROPDOWN_RESULT)) in Import()
905 vOutParams[pCurrent->first] = makeAny(pCurrent->second.toInt32()); in Import()
907 else if(pCurrent->first.equalsAscii(ODF_FORMCHECKBOX_RESULT)) in Import()
910 vOutParams[pCurrent->first] = makeAny(pCurrent->second.toBoolean()); in Import()
912 else if(pCurrent->first.equalsAscii(ODF_FORMDROPDOWN_LISTENTRY)) in Import()
915 vListEntries.push_back(pCurrent->second); in Import()
918 vOutParams[pCurrent->first] = makeAny(pCurrent->second); in Import()
926 for(::std::map<OUString, Any>::const_iterator pCurrent = vOutParams.begin(); in Import()
927 pCurrent != vOutParams.end(); in Import()
928 ++pCurrent) in Import()
932 m_xOutParams->insertByName(pCurrent->first, pCurrent->second); in Import()