Home
last modified time | relevance | path

Searched refs:text (Results 1 – 9 of 9) sorted by relevance

/bootable/recovery/minui/
Dresources.cpp232 png_textp text; in res_create_multi_display_surface() local
234 if (png_get_text(png_ptr, png_handler.info_ptr(), &text, &num_text)) { in res_create_multi_display_surface()
236 if (text[i].key && strcmp(text[i].key, "Frames") == 0 && text[i].text) { in res_create_multi_display_surface()
237 *frames = atoi(text[i].text); in res_create_multi_display_surface()
238 } else if (text[i].key && strcmp(text[i].key, "FPS") == 0 && text[i].text) { in res_create_multi_display_surface()
239 *fps = atoi(text[i].text); in res_create_multi_display_surface()
/bootable/recovery/tools/image_generator/
DImageGenerator.java19 import com.ibm.icu.text.BreakIterator;
41 import java.text.AttributedString;
179 LineInfo(AttributedString text, int width) { in LineInfo() argument
180 mLineContent = text; in LineInfo()
203 public void addLine(String text, int width, Font textFont, Font fallbackFont) { in addLine() argument
204 AttributedString attributedText = new AttributedString(text); in addLine()
211 if (text.contains(ANDROID_STRING) in addLine()
213 int index = text.indexOf(ANDROID_STRING); in addLine()
221 if (text.indexOf(punctuation) != -1 && !textFont.canDisplay(punctuation)) { in addLine()
223 while ((index = text.indexOf(punctuation, index)) != -1) { in addLine()
[all …]
DREADME.md4 This program uses java.awt.Graphics2D to generate the background text files used
13 1. `imageWidth`: The number of pixels per line; and the text strings will be
15 2. `textName`: The description of the text string, e.g. "recovery_erasing",
25 [tools/recovery_l10n/res/](../recovery_l10n/res/values). For each background text, the tool renders
29 background text. The locale header string is generated by `Locale.forLanguageTag`. And sample
/bootable/recovery/tools/recovery_l10n/
DREADME.md1 # Steps to regenerate background text images under res-*dpi/images/
9 * For example, we can use Nexus 5 to generate the text images under
24 adb root && adb pull /data/data/com.android.recovery_l10n/files/text-out.png
28 * "pngcrush -c 0 ..." converts "text-out.png" into a 1-channel image,
33 * If you're using other png compression tools, make sure the final text
36 pngcrush -c 0 text-out.png $OUTPUT_PNG
/bootable/recovery/recovery_ui/
Dwear_ui.cpp63 const auto& text = GetCurrentText(); in draw_background_locked() local
64 int text_x = (ScreenWidth() - gr_get_width(text)) / 2; in draw_background_locked()
65 int text_y = GetProgressBaseline() - gr_get_height(text) - 10; in draw_background_locked()
67 gr_texticon(text_x, text_y, text); in draw_background_locked()
/bootable/recovery/fonts/
DOFL.txt59 included either as stand-alone text files, human-readable headers or
60 in the appropriate machine-readable metadata fields within text or
/bootable/libbootloader/libxbc/
DCOPYING107 (d) If the Work includes a "NOTICE" text file as part of its
112 of the following places: within a NOTICE text file distributed
120 or as an addendum to the NOTICE text from the Work, provided
184 the brackets!) The text should be enclosed in the appropriate
/bootable/recovery/
DNOTICE119 (d) If the Work includes a "NOTICE" text file as part of its
124 of the following places: within a NOTICE text file distributed
132 or as an addendum to the NOTICE text from the Work, provided
/bootable/recovery/tools/recovery_l10n/src/com/android/recovery_l10n/
DMain.java149 mText = (TextView) findViewById(R.id.text); in onCreate()