Lines Matching refs:aCurrentSelection
2865 Sequence< NamedValue > aCurrentSelection; in select() local
2866 if ( (_aSelection >>= aCurrentSelection) && aCurrentSelection.getLength() ) in select()
2869 const NamedValue* pIter = aCurrentSelection.getConstArray(); in select()
2870 const NamedValue* pEnd = pIter + aCurrentSelection.getLength(); in select()
2980 Sequence< NamedDatabaseObject > aCurrentSelection; in getSelection() local
2984 getContainer()->describeCurrentSelectionForType( eType, aCurrentSelection ); in getSelection()
2985 if ( aCurrentSelection.getLength() == 0 ) in getSelection()
2988 aCurrentSelection.realloc(1); in getSelection()
2989 aCurrentSelection[0].Name = getDatabaseName(); in getSelection()
2992 case E_TABLE: aCurrentSelection[0].Type = DatabaseObjectContainer::TABLES; break; in getSelection()
2993 case E_QUERY: aCurrentSelection[0].Type = DatabaseObjectContainer::QUERIES; break; in getSelection()
2994 case E_FORM: aCurrentSelection[0].Type = DatabaseObjectContainer::FORMS; break; in getSelection()
2995 case E_REPORT: aCurrentSelection[0].Type = DatabaseObjectContainer::REPORTS; break; in getSelection()
3002 return makeAny( aCurrentSelection ); in getSelection()