Searched refs:text (Results 76 - 100 of 6287) sorted by relevance

1234567891011>>

/external/robolectric-shadows/resources/src/main/java/org/robolectric/res/
H A DStringResources.java24 * @param text Text to escape.
25 * @return Escaped text.
28 static String escape(String text) { argument
30 if (text.length() > 1 && text.charAt(0) == '"' && text.charAt(text.length() - 1) == '"') {
31 text = text.substring(1, text
[all...]
/external/icu/android_icu4j/src/main/java/android/icu/text/
H A DStringCharacterIterator.java12 // NOTE: This class is identical to java.text.StringCharacterIterator
18 package android.icu.text;
19 import java.text.CharacterIterator;
30 * @deprecated ICU 2.4. Use java.text.StringCharacterIterator instead.
37 private String text; field in class:StringCharacterIterator
45 * @deprecated ICU 2.4. Use java.text.StringCharacterIterator instead.
48 public StringCharacterIterator(String text) argument
50 this(text, 0);
56 * @param text The String to be iterated over
58 * @deprecated ICU 2.4. Use java.text
61 StringCharacterIterator(String text, int pos) argument
77 StringCharacterIterator(String text, int begin, int end, int pos) argument
106 setText(String text) argument
[all...]
H A DUnicodeReplacer.java14 package android.icu.text;
19 * text. The replacement is done via the Replaceable API so as to
26 * Replace characters in 'text' from 'start' to 'limit' with the
27 * output text of this object. Update the 'cursor' parameter to
29 * replacement text.
31 * @param text the text to be matched
32 * @param start inclusive start index of text to be replaced
33 * @param limit exclusive end index of text to be replaced;
39 * @return the number of 16-bit code units in the text replacin
42 replace(Replaceable text, int start, int limit, int[] cursor) argument
[all...]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DStringCharacterIterator.java11 // NOTE: This class is identical to java.text.StringCharacterIterator
17 package com.ibm.icu.text;
18 import java.text.CharacterIterator;
29 * @deprecated ICU 2.4. Use java.text.StringCharacterIterator instead.
35 private String text; field in class:StringCharacterIterator
43 * @deprecated ICU 2.4. Use java.text.StringCharacterIterator instead.
46 public StringCharacterIterator(String text) argument
48 this(text, 0);
54 * @param text The String to be iterated over
56 * @deprecated ICU 2.4. Use java.text
59 StringCharacterIterator(String text, int pos) argument
75 StringCharacterIterator(String text, int begin, int end, int pos) argument
104 setText(String text) argument
[all...]
H A DUnicodeReplacer.java13 package com.ibm.icu.text;
18 * text. The replacement is done via the Replaceable API so as to
25 * Replace characters in 'text' from 'start' to 'limit' with the
26 * output text of this object. Update the 'cursor' parameter to
28 * replacement text.
30 * @param text the text to be matched
31 * @param start inclusive start index of text to be replaced
32 * @param limit exclusive end index of text to be replaced;
38 * @return the number of 16-bit code units in the text replacin
41 replace(Replaceable text, int start, int limit, int[] cursor) argument
[all...]
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/node/
H A DToken.java8 private String text; field in class:Token
14 return this.text;
17 public void setText(@SuppressWarnings("hiding") String text) argument
19 this.text = text;
45 return this.text + " ";
/external/llvm/test/MC/ELF/
H A Delf_directive_previous.s6 .text
7 # CHECK: .text
13 # CHECK: .text
H A Ddebug-line2.s27 .text
H A Drelax-crash.s7 .text
H A Dsection-unique.s4 .section .text,"ax",@progbits,unique, 4294967293
9 .section .text,"ax",@progbits,unique, 4294967294
16 // CHECK: .section .text,"ax",@progbits,unique,4294967293
19 // CHECK: .section .text,"ax",@progbits,unique,4294967294
29 // OBJ: Section: .text (0x3)
38 // OBJ: Section: .text (0x4)
/external/mesa3d/src/mesa/drivers/dri/common/
H A Dxmlpool.h83 #define DRI_CONF_DESC(lang,text) \
84 "<description lang=\""#lang"\" text=\""text"\"/>\n"
87 #define DRI_CONF_DESC_BEGIN(lang,text) \
88 "<description lang=\""#lang"\" text=\""text"\">\n"
95 #define DRI_CONF_ENUM(value,text) \
96 "<enum value=\""#value"\" text=\""text"\"/>\n"
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue73/
H A DPost.java21 private String text; field in class:Post
26 public Post(String title, String text) { argument
29 this.text = text;
37 return text;
60 return "Post " + title + " " + text;
/external/swiftshader/third_party/LLVM/test/MC/ELF/
H A Delf_directive_previous.s6 .text
7 # CHECK: .text
13 # CHECK: .text
/external/ppp/pppd/plugins/pppoatm/
H A Dtext2qos.c25 int __t2q_get_rate(const char **text,int up) argument
33 if (!strncmp(*text,"max",3)) {
34 *text += 3;
37 rate = strtoul(*text,&end,10);
75 *text = end;
80 static int params(const char **text,struct atm_trafprm *a, argument
86 if (*(*text)++ != ':') return -1;
88 if (!**text) return -1;
89 switch (fetch(text,"max_pcr=","pcr=","min_pcr=","max_sdu=","sdu=",
92 if ((value = __t2q_get_rate(text,
125 text2qos(const char *text,struct atm_qos *qos,int flags) argument
[all...]
/external/python/cpython3/Lib/idlelib/idle_test/
H A Dtest_replace.py27 cls.text = Text(cls.root)
28 cls.text.undo_block_start = Mock()
29 cls.text.undo_block_stop = Mock()
30 cls.dialog.text = cls.text
35 del cls.text, cls.dialog, cls.engine
40 self.text.insert('insert', 'This is a sample sTring')
52 self.text.delete('1.0', 'end')
61 text = self.text
[all...]
H A Dtest_autoexpand.py10 # AutoExpand.__init__ only needs .text
11 def __init__(self, text):
12 self.text = text
21 cls.text = Text(cls.tk)
23 cls.text = Text()
24 cls.auto_expand = AutoExpand(Dummy_Editwin(cls.text))
29 del cls.text, cls.auto_expand
35 self.text.delete('1.0', 'end')
38 text
[all...]
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue40/
H A DDogFoodBeanTest.java30 String text = yaml.dump(input);
31 // System.out.println(text);
33 text);
34 DogFoodBean output = (DogFoodBean) yaml.load(text);
42 String text = yaml.dump(input);
43 // System.out.println(text);
44 assertEquals("!!org.yaml.snakeyaml.issues.issue40.DogFoodBean {decimal: 5.123}\n", text);
45 DogFoodBean output = (DogFoodBean) yaml.load(text);
53 String text = yaml.dumpAsMap(input);
54 // System.out.println(text);
[all...]
/external/python/cpython2/Lib/idlelib/idle_test/
H A Dtest_autoexpand.py10 # AutoExpand.__init__ only needs .text
11 def __init__(self, text):
12 self.text = text
21 cls.text = Text(cls.tk)
23 cls.text = Text()
24 cls.auto_expand = AutoExpand(Dummy_Editwin(cls.text))
28 del cls.text, cls.auto_expand
34 self.text.delete('1.0', 'end')
37 text
[all...]
/external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/util/
H A DFontUtils.java36 * Get the smallest rect that ecompasses the text to be drawn using paint.
37 * @param text
41 public static Rect getPackedStringDimensions(String text, Paint paint) { argument
43 paint.getTextBounds(text, 0, text.length(), size);
49 * characters that can be drawn regardless of whether or not they exist in text.
50 * This ensures a more uniform appearance for things that have dynamic text.
51 * @param text
55 public static Rect getStringDimensions(String text, Paint paint) { argument
57 if(text
[all...]
/external/eigen/failtest/
H A Dfailtest_sanity_check.cpp2 This is just some text that won't compile as a C++ file, as a basic sanity check for failtest.
/external/eigen/scripts/
H A Drelicense.py46 def update(text):
47 if text.find(lgpl3_header) == -1:
48 return text, False
49 return text.replace(lgpl3_header, mpl2_header), True
59 text = fo.read()
62 text, updated = update(text)
65 fo.write(text)
/external/libvpx/libvpx/tools/
H A Dwrap-commit-msg.py10 """Wraps paragraphs of text, preserving manual formatting
21 doesn't look at all like a block of text inline.
36 def wrap(text):
37 if text:
38 return textwrap.fill(text, break_long_words=False) + '\n'
43 text = ""
51 text += line
53 output += wrap(text)
54 text=""
56 output += wrap(text)
[all...]
/external/llvm/test/MC/MachO/
H A Dpushsection.s3 .text
H A Dzerofill-1.s3 .text
/external/llvm/test/tools/llvm-size/X86/
H A Dignore-sections.s5 .text
19 // SYSV-NEXT: .text 4 0
27 // BSD: text data bss dec hex filename

Completed in 724 milliseconds

1234567891011>>