Lines Matching refs:fLength
38 fLength = 0; in operator =()
52 fUsage = (char *)uprv_malloc(other.fLength + 1); in operator =()
57 fLength = other.fLength; in operator =()
58 uprv_strncpy(fUsage, other.fUsage, fLength + 1); in operator =()
63 Usage::Usage(Usage &&src) U_NOEXCEPT : fUsage(src.fUsage), fLength(src.fLength), fError(src.fError)… in Usage()
77 fLength = src.fLength; in operator =()
96 fLength = value.length(); in set()
97 fUsage = (char *)uprv_malloc(fLength + 1); in set()
99 fLength = 0; in set()
103 uprv_strncpy(fUsage, value.data(), fLength); in set()
104 fUsage[fLength] = 0; in set()