HomeSort by relevance Sort by last modified time
    Searched refs:texts (Results 1 - 25 of 82) sorted by null

1 2 3 4

  /development/samples/ApiDemos/src/com/example/android/apis/appwidget/
ExampleBroadcastReceiver.java 45 ArrayList<String> texts = new ArrayList<String>(); local
47 ExampleAppWidgetConfigure.loadAllTitlePrefs(context, appWidgetIds, texts);
51 ExampleAppWidgetProvider.updateAppWidget(context, gm, appWidgetIds.get(i), texts.get(i));
ExampleAppWidgetConfigure.java 129 ArrayList<String> texts) {
  /external/icu/icu4j/main/tests/charset/src/com/ibm/icu/dev/test/charset/
TestSelection.java 90 for (int i = 0; i < texts.length; i++) {
91 List<String> result = sel.selectForString(texts[i]);
92 verifyResultUTF16(texts[i], testEncodings, result, excluded, CharsetICU.ROUNDTRIP_SET);
145 private String[] texts = { field in class:TestSelection
    [all...]
  /frameworks/base/packages/SystemUI/tests/src/com/android/keyguard/
KeyguardClockAccessibilityDelegateTest.java 105 private boolean isAscii(List<CharSequence> texts) {
106 return texts.stream().allMatch(this::isAscii);
109 private boolean isEmpty(List<CharSequence> texts) {
110 return texts.stream().allMatch(TextUtils::isEmpty);
  /frameworks/opt/datetimepicker/src/com/android/datetimepicker/time/
RadialTextsView.java 82 public void initialize(Resources res, String[] texts, String[] innerTexts,
99 mTexts = texts;
222 // Draw the texts in the pre-calculated positions.
268 private void drawTexts(Canvas canvas, float textSize, Typeface typeface, String[] texts,
272 canvas.drawText(texts[0], textGridWidths[3], textGridHeights[0], mPaint);
273 canvas.drawText(texts[1], textGridWidths[4], textGridHeights[1], mPaint);
274 canvas.drawText(texts[2], textGridWidths[5], textGridHeights[2], mPaint);
275 canvas.drawText(texts[3], textGridWidths[6], textGridHeights[3], mPaint);
276 canvas.drawText(texts[4], textGridWidths[5], textGridHeights[4], mPaint);
277 canvas.drawText(texts[5], textGridWidths[4], textGridHeights[5], mPaint)
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
cmd.py 389 texts = []
396 texts.append(x)
397 while texts and not texts[-1]:
398 del texts[-1]
399 for col in range(len(texts)):
400 texts[col] = texts[col].ljust(colwidths[col])
401 self.stdout.write("%s\n"%str(" ".join(texts)))
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
cmd.py 392 texts = []
399 texts.append(x)
400 while texts and not texts[-1]:
401 del texts[-1]
402 for col in range(len(texts)):
403 texts[col] = texts[col].ljust(colwidths[col])
404 self.stdout.write("%s\n"%str(" ".join(texts)))
  /external/python/cpython2/Lib/
cmd.py 392 texts = []
399 texts.append(x)
400 while texts and not texts[-1]:
401 del texts[-1]
402 for col in range(len(texts)):
403 texts[col] = texts[col].ljust(colwidths[col])
404 self.stdout.write("%s\n"%str(" ".join(texts)))
  /prebuilts/gdb/darwin-x86/lib/python2.7/
cmd.py 392 texts = []
399 texts.append(x)
400 while texts and not texts[-1]:
401 del texts[-1]
402 for col in range(len(texts)):
403 texts[col] = texts[col].ljust(colwidths[col])
404 self.stdout.write("%s\n"%str(" ".join(texts)))
  /prebuilts/gdb/linux-x86/lib/python2.7/
cmd.py 392 texts = []
399 texts.append(x)
400 while texts and not texts[-1]:
401 del texts[-1]
402 for col in range(len(texts)):
403 texts[col] = texts[col].ljust(colwidths[col])
404 self.stdout.write("%s\n"%str(" ".join(texts)))
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
cmd.py 392 texts = []
399 texts.append(x)
400 while texts and not texts[-1]:
401 del texts[-1]
402 for col in range(len(texts)):
403 texts[col] = texts[col].ljust(colwidths[col])
404 self.stdout.write("%s\n"%str(" ".join(texts)))
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
cmd.py 392 texts = []
399 texts.append(x)
400 while texts and not texts[-1]:
401 del texts[-1]
402 for col in range(len(texts)):
403 texts[col] = texts[col].ljust(colwidths[col])
404 self.stdout.write("%s\n"%str(" ".join(texts)))
  /cts/apps/CameraITS/tests/scene5/
test_lens_shading_and_color_uniformity.py 108 texts = ["r/g: %.2f" % center_r_g,
110 draw_legend(img_legend_ufmt, texts,
189 texts = ["r/g: %.2f" % block["block_r_g"],
192 draw_legend(img_legend_ufmt, texts,
229 def draw_legend(img, texts, text_org, font_scale, text_offset, legend_color,
235 texts: list of legends. Each element in the list is a line of legend.
243 for text in texts:
  /frameworks/base/core/tests/coretests/src/android/text/
StaticLayoutLineBreakingTest.java 347 String[] texts = new String[] { "0123", "012 456", "012 456 89 123", "012 45678 012",
352 for (String text : texts) {
372 String[] texts = new String[] { "0123", "012 456", "012 456 89 123", "012 45678 012",
378 for (String text : texts) {
423 String[] texts = new String[] { "", "X", " ", "XX", " X", "XXX" }; local
425 for (String text: texts) {
StaticLayoutDirectionsTest.java 55 private static String[] texts = { field in class:StaticLayoutDirectionsTest
121 for (int i = 0; i < texts.length; ++i) {
122 b.setText(pseudoBidiToReal(texts[i]));
  /packages/apps/Nfc/src/com/android/nfc/
BeamShareActivity.java 53 * it tries to parse texts and URLs to store them in a simple
195 final ArrayList<CharSequence> texts = intent.getCharSequenceArrayListExtra( local
203 } else if (texts != null && texts.size() > 0) {
206 tryText(texts.get(0).toString());
  /frameworks/ex/common/java/com/android/common/contacts/
DataUsageStatUpdater.java 80 public boolean updateWithRfc822Address(Collection<CharSequence> texts){
81 if (texts == null) {
85 for (CharSequence text : texts) {
  /frameworks/base/core/tests/coretests/src/android/widget/
RemoteViewsTest.java 257 private RemoteViews createViewChained(int depth, String... texts) {
269 // Add texts
270 for (String text : texts) {
278 private void verifyViewTree(View v1, View v2, String... texts) {
279 ArrayList<String> expectedTexts = new ArrayList<>(Arrays.asList(texts));
281 // Verify that all expected texts were found
291 // Verify that the text was one of the expected texts and remove it from the list
  /libcore/luni/src/test/java/libcore/xml/
NormalizeTest.java 554 private Document createDocumentWithAdjacentTexts(String... texts) throws Exception {
559 for (String text : texts) {
569 private void assertChildren(Element element, String... texts) {
582 assertEquals(Arrays.asList(texts), actual);
  /external/lisa/libs/utils/analysis/
residency_analysis.py 227 patches, texts, autotexts = axes.pie(df.loc[cgroup], labels=df.columns, autopct='%.2f', colors=colors)
234 plt.setp(texts, fontproperties=proptease)
  /external/curl/src/
mkhelp.pl 156 texts by NOT passing -c to the mkhelp.pl tool. */
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/
MessageRegressionTest.java 506 String texts[] = {"pattern", "pat", "1234"}; local
508 for (int i = 0; i < texts.length; i++) {
510 Object[] objs = mf.parse(texts[i], pp);
511 log(" text for parsing: \"" + texts[i] + "\"");
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
MessageRegressionTest.java 505 String texts[] = {"pattern", "pat", "1234"}; local
507 for (int i = 0; i < texts.length; i++) {
509 Object[] objs = mf.parse(texts[i], pp);
510 log(" text for parsing: \"" + texts[i] + "\"");
    [all...]
  /bionic/libc/kernel/uapi/sound/
asoc.h 254 char texts[SND_SOC_TPLG_NUM_TEXTS][SNDRV_CTL_ELEM_ID_NAME_MAXLEN]; member in struct:snd_soc_tplg_enum_control
  /external/kernel-headers/original/uapi/sound/
asoc.h 390 char texts[SND_SOC_TPLG_NUM_TEXTS][SNDRV_CTL_ELEM_ID_NAME_MAXLEN]; member in struct:snd_soc_tplg_enum_control

Completed in 3694 milliseconds

1 2 3 4