Lines Matching defs:value
86 std::string GetAnonyString(const std::string &value)
92 size_t strLen = value.length();
98 result += value[0];
100 result += value[strLen - 1];
103 result.append(value, 0, int32PlainTextLength);
105 result.append(value, strLen - int32PlainTextLength, int32PlainTextLength);
111 std::string GetInterruptString(const std::string &value)
116 size_t strlen = value.length();
118 res = value;
120 res = value.substr(0, strlen / stringHalfLength);
134 DHLOGI("get system parameter (dscreen.partial.refresh.enable) success, param value = %{public}s", tempValue);