Lines Matching full:maxchars
75 * The returned string is truncated to maxChars characters.
76 * If maxChars is negative, the returned string is not truncated.
78 public static String asString(Instance inst, int maxChars) {
104 if (0 <= maxChars && maxChars < count) {
105 count = maxChars;
280 * If maxChars is non-negative, the returned location is truncated to
281 * maxChars in length.
283 public static String getDexCacheLocation(Instance inst, int maxChars) {
287 return asString(location, maxChars);