Lines Matching refs:rProp

605         const beans::Property& rProp = pProps[ n ];  in getPropertyValues()  local
607 if (rProp.Name.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM( "Title" ) ) ) { in getPropertyValues()
611 xRow->appendString( rProp, GnomeToOUString( m_info.name ) ); in getPropertyValues()
614 else if (rProp.Name.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM( "ContentType" ) ) ) in getPropertyValues()
615 xRow->appendString( rProp, getContentType () ); in getPropertyValues()
617 else if (rProp.Name.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM( "IsDocument" ) ) ) { in getPropertyValues()
619 xRow->appendBoolean( rProp, ( m_info.type == GNOME_VFS_FILE_TYPE_REGULAR || in getPropertyValues()
622 xRow->appendVoid( rProp ); in getPropertyValues()
624 else if (rProp.Name.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM( "IsFolder" ) ) ) { in getPropertyValues()
626 xRow->appendBoolean( rProp, ( m_info.type == GNOME_VFS_FILE_TYPE_DIRECTORY ) ); in getPropertyValues()
628 xRow->appendVoid( rProp ); in getPropertyValues()
630 else if (rProp.Name.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM( "IsReadOnly" ) ) ) { in getPropertyValues()
644 xRow->appendBoolean( rProp, read_only ); in getPropertyValues()
646 xRow->appendVoid( rProp ); in getPropertyValues()
649 else if (rProp.Name.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM( "Size" ) ) ) { in getPropertyValues()
651 xRow->appendLong( rProp, m_info.size ); in getPropertyValues()
653 xRow->appendVoid( rProp ); in getPropertyValues()
655 else if (rProp.Name.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM( "IsHidden" ) ) ) in getPropertyValues()
656 xRow->appendBoolean( rProp, ( m_info.name && m_info.name[0] == '.' ) ); in getPropertyValues()
658 else if (rProp.Name.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM( "IsVolume" ) ) || in getPropertyValues()
659 rProp.Name.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM( "IsCompactDisk" ) ) ) in getPropertyValues()
660 xRow->appendBoolean( rProp, sal_False ); in getPropertyValues()
662 else if (rProp.Name.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM( "DateCreated" ) ) ) { in getPropertyValues()
664 xRow->appendTimestamp( rProp, getDateFromUnix( m_info.ctime ) ); in getPropertyValues()
666 xRow->appendVoid( rProp ); in getPropertyValues()
669 else if (rProp.Name.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM( "DateModified" ) ) ) { in getPropertyValues()
671 xRow->appendTimestamp( rProp, getDateFromUnix( m_info.mtime ) ); in getPropertyValues()
673 xRow->appendVoid( rProp ); in getPropertyValues()
676 else if (rProp.Name.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM( "MediaType" ) ) ) { in getPropertyValues()
681 xRow->appendVoid( rProp ); in getPropertyValues()
682 … } else if (rProp.Name.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM( "CreatableContentsInfo" ) ) ) in getPropertyValues()
683 xRow->appendObject( rProp, uno::makeAny( queryCreatableContentsInfo( xEnv ) ) ); in getPropertyValues()
686 xRow->appendVoid( rProp ); in getPropertyValues()