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

1234567891011>>

/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/v8/test/mjsunit/regress/
H A Dregress-246.js30 assertTrue(/(?:text)/.test("text"));
31 assertEquals(["text"], /(?:text)/.exec("text"));
H A Dregress-is-contextual.js31 return text.charAt(index);
34 var text = "hi there"; variable
38 text = false;
/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/icu/android_icu4j/src/main/java/android/icu/text/
H A DTransformTransliterator.java7 package android.icu.text;
34 // protected void handleTransliterate(Replaceable text,
41 // char c = text.charAt(start);
54 // text.getChars(start, offsets.limit, buf, 0);
86 // text.replace(start, start + segLen, newStr);
H A DDictionaryMatcher.java8 package android.icu.text;
10 import java.text.CharacterIterator;
18 * Find dictionary words that match the text.
20 * @param text A CharacterIterator representing the text. The iterator is
27 * @return The number of characters in text that were matched.
29 public abstract int matches(CharacterIterator text, int maxLength, int[] lengths, argument
32 public int matches(CharacterIterator text, int maxLength, int[] lengths, argument
34 return matches(text, maxLength, lengths, count, limit, null);
/external/icu/icu4j/main/classes/translit/src/com/ibm/icu/text/
H A DTransformTransliterator.java6 package com.ibm.icu.text;
33 // protected void handleTransliterate(Replaceable text,
40 // char c = text.charAt(start);
53 // text.getChars(start, offsets.limit, buf, 0);
85 // text.replace(start, start + segLen, newStr);
/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/opencv3/3rdparty/openexr/Iex/
H A DIexMacros.h50 // A macro to throw exceptions whose text is assembled using stringstreams.
58 #define THROW(type, text) \
62 s << text; \
69 // Macros to add to or to replace the text of an exception.
70 // The new text is assembled using stringstreams.
74 // Append to end of an exception's text:
82 // Replace an exception's text:
91 #define APPEND_EXC(exc, text) \
95 s << text; \
100 #define REPLACE_EXC(exc, text) \
[all...]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DDictionaryMatcher.java7 package com.ibm.icu.text;
9 import java.text.CharacterIterator;
17 * Find dictionary words that match the text.
19 * @param text A CharacterIterator representing the text. The iterator is
26 * @return The number of characters in text that were matched.
28 public abstract int matches(CharacterIterator text, int maxLength, int[] lengths, argument
31 public int matches(CharacterIterator text, int maxLength, int[] lengths, argument
33 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;
/external/chromium-trace/catapult/telemetry/third_party/webpagereplay/third_party/dns/
H A Dipv4.py28 def inet_aton(text):
29 if text == '255.255.255.255':
32 return socket.inet_aton(text)

Completed in 2262 milliseconds

1234567891011>>