Home | History | Annotate | Download | only in core

Lines Matching full:uri

87     /** Return the optional URI string associated with this pixelref. May be
92 /** Copy a URI string to this pixelref, or clear the URI if the uri is null
94 void setURI(const char uri[]) {
95 fURI.set(uri);
98 /** Copy a URI string to this pixelref
100 void setURI(const char uri[], size_t len) {
101 fURI.set(uri, len);
104 /** Assign a URI string to this pixelref.
106 void setURI(const SkString& uri) { fURI = uri; }