Lines Matching full:street
49 \brief The Address QML type represents a specific location as a street address.
64 address properties such as \l street, \l city and and so on, but can also
74 street: "53 Brandl St"
118 setStreet(address.street()); in setAddress()
136 properties such as \l street, \l city and so on may cause the contents of \c text to
293 \qmlproperty string QtPositioning::Address::street
295 This property holds the street of the address but
300 QString QDeclarativeGeoAddress::street() const in street() function in QDeclarativeGeoAddress
302 return m_address.street(); in street()
305 void QDeclarativeGeoAddress::setStreet(const QString &street) in setStreet() argument
307 if (m_address.street() == street) in setStreet()
310 m_address.setStreet(street); in setStreet()