Lines Matching refs:fLength
38 fLength = 0; in operator =()
52 fValue = (char *)uprv_malloc(other.fLength + 1); in operator =()
57 fLength = other.fLength; in operator =()
58 uprv_strncpy(fValue, other.fValue, fLength + 1); in operator =()
64 fLength(src.fLength), in StringProp()
79 fLength = src.fLength; in operator =()
98 fLength = value.length(); in set()
99 fValue = (char *)uprv_malloc(fLength + 1); in set()
101 fLength = 0; in set()
105 uprv_strncpy(fValue, value.data(), fLength); in set()
106 fValue[fLength] = 0; in set()