Searched defs:full (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/core/java/android/content/res/
H A DStringBlock.java319 private static String subtag(String full, String attribute) { argument
320 int start = full.indexOf(attribute);
326 int end = full.indexOf(';', start);
329 return full.substring(start);
331 return full.substring(start, end);
/frameworks/base/core/java/android/view/
H A DHardwareRenderer.java144 * @param full If true, destroys all associated resources.
146 abstract void destroy(boolean full); argument
707 void destroy(boolean full) { argument
708 if (full && mCanvas != null) {
1015 void destroy(boolean full) { argument
1017 super.destroy(full);
1019 if (full && mGlCanvas != null) {
/frameworks/base/core/java/android/text/
H A DLayout.java519 * it does not cause the text to reflow to use the full new width.
894 * @param full whether to include trailing whitespace
897 private float getLineExtent(int line, boolean full) { argument
899 int end = full ? getLineEnd(line) : getLineVisibleEnd(line);
927 * leading margin. If full is false, excludes trailing whitespace.
930 * @param full whether to include trailing whitespace
933 private float getLineExtent(int line, TabStops tabStops, boolean full) { argument
935 int end = full ? getLineEnd(line) : getLineVisibleEnd(line);

Completed in 113 milliseconds