Searched refs:text (Results 1 - 25 of 6287) 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/oj-libjdwp/make/src/classes/build/tools/jdwpgen/
H A DCommentNode.java33 String text; field in class:CommentNode
35 CommentNode(String text) { argument
36 this.text = text;
39 String text() { method in class:CommentNode
40 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/subsampling-scale-image-view/sample/src/main/java/com/davemorrissey/labs/subscaleview/test/
H A DPage.java5 private final int text; field in class:Page
9 public Page(int subtitle, int text) { argument
11 this.text = text;
15 return 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;
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/javadoc/description/
H A DJavadocSnippet.java25 * A piece of text inside a Javadoc description.
31 private String text; field in class:JavadocSnippet
33 public JavadocSnippet(String text) { argument
34 if (text == null) {
37 this.text = text;
42 return this.text;
52 return text.equals(that.text);
58 return text
[all...]
/external/python/cpython3/Lib/test/
H A Dtest_textwrap.py35 def check_wrap(self, text, width, expect, **kwargs):
36 result = wrap(text, width, **kwargs)
39 def check_split(self, text, expect):
40 result = self.wrapper._split(text)
54 text = "Hello there, how are you this fine day? I'm glad to hear it!"
56 self.check_wrap(text, 12,
63 self.check_wrap(text, 42,
66 self.check_wrap(text, 80, [text])
81 text
480 text = "Hello there, how are you this fine day? I'm glad to hear it!" variable in class:MaxLinesTestCase
[all...]

Completed in 675 milliseconds

1234567891011>>