Lines Matching refs:aProgrammaticName

163 UString ScTestAddIn::getDisplayFunctionName(const UString& aProgrammaticName)  in getDisplayFunctionName()  argument
169 if ( aProgrammaticName == L"countParams" ) aRet = L"ParamAnzahl"; in getDisplayFunctionName()
170 else if ( aProgrammaticName == L"addOne" ) aRet = L"PlusEins"; in getDisplayFunctionName()
171 else if ( aProgrammaticName == L"repeatStr" ) aRet = L"WiederholeString"; in getDisplayFunctionName()
172 else if ( aProgrammaticName == L"getDateString" ) aRet = L"Datumsstring"; in getDisplayFunctionName()
173 else if ( aProgrammaticName == L"getColorValue" ) aRet = L"Farbwert"; in getDisplayFunctionName()
174 else if ( aProgrammaticName == L"transpose" ) aRet = L"Transponieren"; in getDisplayFunctionName()
175 else if ( aProgrammaticName == L"transposeInt" ) aRet = L"IntegerTransponieren"; in getDisplayFunctionName()
176 else if ( aProgrammaticName == L"repeatMultiple" )aRet = L"Mehrfach"; in getDisplayFunctionName()
177 else if ( aProgrammaticName == L"getStrOrVal" ) aRet = L"StringOderWert"; in getDisplayFunctionName()
178 else if ( aProgrammaticName == L"callAsync" ) aRet = L"Asynchron"; in getDisplayFunctionName()
182 UString ScTestAddIn::getFunctionDescription(const UString& aProgrammaticName) in getFunctionDescription() argument
188 if ( aProgrammaticName == L"countParams" ) aRet = L"Gibt die Anzahl der Parameter zurueck."; in getFunctionDescription()
189 else if ( aProgrammaticName == L"addOne" ) aRet = L"Addiert 1 zur uebergebenen Zahl."; in getFunctionDescription()
190 else if ( aProgrammaticName == L"repeatStr" ) aRet = L"Wiederholt eine Zeichenkette."; in getFunctionDescription()
191 …else if ( aProgrammaticName == L"getDateString" ) aRet = L"Wandelt ein Datum in eine Zeichenkette.… in getFunctionDescription()
192 …else if ( aProgrammaticName == L"getColorValue" ) aRet = L"Gibt den Farbwert eines Zellbereichs zu… in getFunctionDescription()
193 else if ( aProgrammaticName == L"transpose" ) aRet = L"Transponiert eine Matrix."; in getFunctionDescription()
194 …else if ( aProgrammaticName == L"transposeInt" ) aRet = L"Transponiert eine Matrix mit Ganzzahlen… in getFunctionDescription()
195 else if ( aProgrammaticName == L"repeatMultiple" )aRet = L"Wiederholt mehrere Bestandteile."; in getFunctionDescription()
196 …else if ( aProgrammaticName == L"getStrOrVal" ) aRet = L"Gibt einen String oder einen Wert zurue… in getFunctionDescription()
197 else if ( aProgrammaticName == L"callAsync" ) aRet = L"Test fuer asynchrone Funktion."; in getFunctionDescription()