Changeset 1799 in webkit for trunk/JavaScriptCore/kjs/ustring.h
- Timestamp:
- Aug 12, 2002, 1:14:02 PM (23 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/ustring.h
r1791 r1799 216 216 int rc; 217 217 static Rep null; 218 static Rep empty; 218 219 }; 219 220 … … 226 227 * Constructs a string from the single character c. 227 228 */ 228 UString(char c);229 explicit UString(char c); 229 230 /** 230 231 * Constructs a string from a classical zero determined char string. … … 316 317 */ 317 318 UString &operator=(const char *c); 318 /**319 * Assignment operator.320 */321 319 UString &operator=(const UString &); 322 320 /** … … 376 374 */ 377 375 int find(const UString &f, int pos = 0) const; 376 int find(UChar, int pos = 0) const; 378 377 /** 379 378 * @return Position of first occurence of f searching backwards from … … 382 381 */ 383 382 int rfind(const UString &f, int pos) const; 383 int rfind(UChar, int pos) const; 384 384 /** 385 385 * @return The sub string starting at position pos and length len.
Note:
See TracChangeset
for help on using the changeset viewer.