Searched refs:text (Results 1 - 25 of 5010) sorted by relevance

1234567891011>>

/external/mockito/src/main/java/org/mockito/internal/matchers/text/
H A DFormattedText.java5 package org.mockito.internal.matchers.text;
8 * Contains text that has already been formatted
13 private final String text; field in class:FormattedText
15 public FormattedText(String text) { argument
16 this.text = text;
20 return text;
/external/llvm/test/tools/llvm-objdump/Inputs/
H A Dout-of-section-sym.s5 // .text : { _ftext = . ; *(.text) }
13 .text
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/tester/android/text/
H A DTestClipboardManager.java1 package com.xtremelabs.robolectric.tester.android.text;
3 import android.text.ClipboardManager;
8 private CharSequence text; field in class:TestClipboardManager
10 public void setText(CharSequence text) { argument
11 this.text = text;
15 return text;
19 return text != null && text.length() > 0;
/external/llvm/test/MC/AArch64/
H A Derror-location-ldr-pseudo.s3 .text
/external/llvm/test/MC/ELF/
H A Dalign-text.s3 // Test that the .text directive doesn't cause alignment.
6 .text
10 // CHECK: Name: .text
H A Dpr19430.s5 .text
12 // CHECK-NEXT: 0x20 R_X86_64_PC32 .text 0x3E8
H A Dsection-unique-err1.s5 .section .text,"ax",@progbits,unique, "abc"
H A Dsection-unique-err2.s5 .section .text,"ax",@progbits,unique, -1
H A Dsection-unique-err3.s5 .section .text,"ax",@progbits,unique, 4294967295
H A Dsection-unique-err4.s5 .section .text,"ax",@progbits,unique 1
/external/llvm/test/MC/MachO/
H A Dprevious.s3 .text
H A Dsection-flags.s3 .text
/external/swiftshader/third_party/LLVM/test/MC/ELF/
H A Dalign-text.s3 // Test that the .text directive doesn't cause alignment.
6 .text
9 // CHECK: (('sh_name', 0x00000001) # '.text'
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/strftime/
H A D2-1.c27 char text[256]; local
31 strftime(text, sizeof(text), nl_langinfo(D_T_FMT), local_t);
32 printf("STRING IS: %s\n\n", text);
37 * result = strftime(text, sizeof(text), "%Ec", local_t);
38 * printf("Ec Bytes %i %s ", result, text);
47 result = strftime(text, sizeof(text), "%EC", local_t);
48 printf("EC Bytes %i %s ", result, text);
[all...]
H A D1-1.c26 char text[256]; local
30 strftime(text, sizeof(text), nl_langinfo(D_T_FMT), local_t);
31 printf("STRING IS: %s\n\n", text);
35 result = strftime(text, sizeof(text), "%a", local_t);
36 printf("a Bytes %i %s ", result, text);
44 result = strftime(text, sizeof(text), "%A", local_t);
45 printf("A Bytes %i %s ", result, text);
[all...]
/external/swiftshader/third_party/LLVM/test/MC/MachO/
H A Dreloc-pcrel-offset.s12 .text
H A Dsection-flags.s10 .text
/external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/
H A Dscanresultsitem.cpp15 return text(sortCol).toInt() < other.text(sortCol).toInt();
17 return text(sortCol) < other.text(sortCol);
/external/apache-harmony/beans/src/test/support/java/org/apache/harmony/beans/tests/support/
H A DStandardBean.java29 private String text = "none"; field in class:StandardBean
36 public StandardBean(String text) { argument
37 this.text = text;
41 return text;
44 public void setText(String text) { argument
45 this.text = text;
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowClipboardManager.java3 import android.text.ClipboardManager;
9 private CharSequence text; field in class:ShadowClipboardManager
12 public void setText(CharSequence text) { argument
13 this.text = text;
18 return text;
23 return text != null && text.length() > 0;
/external/clang/test/SemaCXX/
H A Dgoto2.cpp5 int subfun(const char *text) { argument
6 const char *tmp = text;
10 void fun(const char* text) { argument
16 const char *end = text;
40 const char *text = "some text"; variable
43 const char *ptr = text;
H A Doverloaded-name.cpp22 const char* text(void);
24 f(text());
25 f(text); // expected-error {{reference to non-static member function must be called; did you mean to call it with no arguments?}}
26 f(text());
27 f(text); // expected-error {{reference to non-static member function must be called; did you mean to call it with no arguments?}}
/external/icu/android_icu4j/src/main/java/android/icu/text/
H A DDictionaryMatcher.java10 package android.icu.text;
12 import java.text.CharacterIterator;
20 * Find dictionary words that match the text.
22 * @param text A CharacterIterator representing the text. The iterator is
29 * @return The number of characters in text that were matched.
31 public abstract int matches(CharacterIterator text, int maxLength, int[] lengths, argument
34 public int matches(CharacterIterator text, int maxLength, int[] lengths, argument
36 return matches(text, maxLength, lengths, count, limit, null);
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DDictionaryMatcher.java9 package com.ibm.icu.text;
11 import java.text.CharacterIterator;
19 * Find dictionary words that match the text.
21 * @param text A CharacterIterator representing the text. The iterator is
28 * @return The number of characters in text that were matched.
30 public abstract int matches(CharacterIterator text, int maxLength, int[] lengths, argument
33 public int matches(CharacterIterator text, int maxLength, int[] lengths, argument
35 return matches(text, maxLength, lengths, count, limit, null);
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue55/
H A DPost.java20 private String text; field in class:Post
30 public Post(String title, String text) { argument
32 this.text = text;
40 return text;

Completed in 674 milliseconds

1234567891011>>