Lines Matching refs:xSubKey
225 …Reference<XRegistryKey> xSubKey = xKey->createKey(OUString( RTL_CONSTASCII_USTRINGPARAM("FirstSubK… in test_SimpleRegistry() local
226 xSubKey->setLongValue(123456789); in test_SimpleRegistry()
228 xSubKey = xKey->createKey(OUString( RTL_CONSTASCII_USTRINGPARAM("SecondSubKey") )); in test_SimpleRegistry()
229 xSubKey->setAsciiValue(OUString( RTL_CONSTASCII_USTRINGPARAM("ich bin ein acsii value") )); in test_SimpleRegistry()
231 xSubKey = xKey->createKey(OUString( RTL_CONSTASCII_USTRINGPARAM("ThirdSubKey") )); in test_SimpleRegistry()
232 xSubKey->setStringValue(OUString( RTL_CONSTASCII_USTRINGPARAM("ich bin ein unicode value") )); in test_SimpleRegistry()
234 xSubKey = xKey->createKey(OUString( RTL_CONSTASCII_USTRINGPARAM("FourthSubKey") )); in test_SimpleRegistry()
236 xSubKey->setBinaryValue(aSeq); in test_SimpleRegistry()
245 xSubKey = seqKeys.getArray()[i]; in test_SimpleRegistry()
249 TEST_ENSHURE( xSubKey->getLongValue() == 123456789, in test_SimpleRegistry()
254 …TEST_ENSHURE( xSubKey->getAsciiValue() == OUString( RTL_CONSTASCII_USTRINGPARAM("ich bin ein acsii… in test_SimpleRegistry()
259 …TEST_ENSHURE( xSubKey->getStringValue() == OUString( RTL_CONSTASCII_USTRINGPARAM("ich bin ein unic… in test_SimpleRegistry()
264 Sequence<sal_Int8> seqByte = xSubKey->getBinaryValue(); in test_SimpleRegistry()