Searched refs:text (Results 226 - 250 of 5442) sorted by relevance

1234567891011>>

/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/
H A DDoubleObjectPropertyEditor.java18 import java.text.MessageFormat;
65 protected boolean setEditorText(Property property, String text) throws Exception { argument
66 text = text.trim();
68 if (text.length() == 0) {
73 if (text.equals("null")) {
80 value = Double.valueOf(text);
85 MessageFormat.format(ModelMessages.DoubleObjectPropertyEditor_notValidDouble, text));
H A DIntegerObjectPropertyEditor.java18 import java.text.MessageFormat;
65 protected boolean setEditorText(Property property, String text) throws Exception { argument
66 text = text.trim();
68 if (text.length() == 0) {
73 if (text.equals("null")) {
80 value = Integer.valueOf(text);
85 MessageFormat.format(ModelMessages.IntegerObjectPropertyEditor_notValidInt, text));
H A DLongObjectPropertyEditor.java18 import java.text.MessageFormat;
65 protected boolean setEditorText(Property property, String text) throws Exception { argument
66 text = text.trim();
68 if (text.length() == 0) {
73 if (text.equals("null")) {
80 value = Long.valueOf(text);
85 MessageFormat.format(ModelMessages.LongObjectPropertyEditor_notValidLong, text));
H A DShortObjectPropertyEditor.java18 import java.text.MessageFormat;
65 protected boolean setEditorText(Property property, String text) throws Exception { argument
66 text = text.trim();
68 if (text.length() == 0) {
73 if (text.equals("null")) {
80 value = Short.valueOf(text);
85 MessageFormat.format(ModelMessages.ShortObjectPropertyEditor_notValidShort, text));
/external/emma/core/java12/com/vladium/emma/report/html/doc/
H A DTextContent.java20 public TextContent (final String text) argument
22 m_text = text;
/external/llvm/test/MC/ELF/
H A Dcomdat-reloc.s3 .text
10 .section .text.world,"axG",@progbits,world,comdat
22 // CHECK-NEXT: Name: .text.world
27 // CHECK-NEXT: Name: .rela.text.world
/external/nist-sip/java/javax/sip/header/
H A DReasonHeader.java3 import java.text.ParseException;
16 void setText(String text) throws ParseException; argument
/external/owasp/sanitizer/src/main/org/owasp/html/
H A DHtmlStreamEventReceiver.java49 public void text(String text); argument
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowLinkMovementMethod.java3 import android.text.method.LinkMovementMethod;
4 import android.text.method.MovementMethod;
/external/srec/portable/include/
H A DLCHAR.h39 * @param text Text to trim
42 PORTABLE_API ESR_ReturnCode lstrtrim(LCHAR* text);
45 * Inserts text into a string.
59 * @param text String to process
64 PORTABLE_API ESR_ReturnCode lstrreplace(LCHAR* text, const LCHAR source, const LCHAR target);
69 * @param text String to parse
72 * @return ESR_INVALID_ARGUMENT is text is null or does not represent a number
74 PORTABLE_API ESR_ReturnCode lstrtoi(const LCHAR* text, int* result, int base);
79 * @param text String to parse
82 * @return ESR_INVALID_ARGUMENT is text i
[all...]
/external/chromium_org/third_party/skia/tools/
H A Dskhello.cpp22 DEFINE_string2(text, t, "Hello", "The string to write.");
24 static void doDraw(SkCanvas* canvas, const SkPaint& paint, const char text[]) { argument
29 canvas->drawText(text, strlen(text),
34 static bool do_surface(int w, int h, const char path[], const char text[], argument
37 doDraw(surface->getCanvas(), paint, text);
48 static bool do_document(int w, int h, const char path[], const char text[], argument
54 doDraw(doc->beginPage(width, height, NULL), paint, text);
67 SkString text("Hello");
73 text
[all...]
/external/harfbuzz_ng/test/shaping/
H A Drecord-test.sh11 text=`./hb-unicode-encode "$unicodes"`
12 glyphs=`echo "$text" | $hb_shape "$fontfile"`
18 --text="$text"
25 glyphs_subset=`echo "$text" | $hb_shape "$dir/font.ttf.subset"`
31 echo "$text" | $hb_view "$dir/font.ttf" --output-format=png --output-file="$dir/orig.png"
32 echo "$text" | $hb_view "$dir/font.ttf.subset" --output-format=png --output-file="$dir/subset.png"
/external/skia/tools/
H A Dskhello.cpp22 DEFINE_string2(text, t, "Hello", "The string to write.");
24 static void doDraw(SkCanvas* canvas, const SkPaint& paint, const char text[]) { argument
29 canvas->drawText(text, strlen(text),
34 static bool do_surface(int w, int h, const char path[], const char text[], argument
37 doDraw(surface->getCanvas(), paint, text);
48 static bool do_document(int w, int h, const char path[], const char text[], argument
54 doDraw(doc->beginPage(width, height, NULL), paint, text);
67 SkString text("Hello");
73 text
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.jface.text_3.6.1.r361_v20100825-0800.jar ... verifyKeyListener public void setEventConsumer (org.eclipse.jface.text.IEventConsumer) org.eclipse.jface.text. ...
/external/apache-harmony/beans/src/test/support/java/org/apache/harmony/beans/tests/support/
H A DSerializableBean.java28 private String text = null; field in class:SerializableBean
39 public SerializableBean(String text) { argument
40 this.text = text;
44 return this.text;
/external/chromium_org/third_party/icu/source/i18n/
H A Dregextxt.cpp22 c = UTEXT_NEXT32(context->text);
25 c = UTEXT_PREVIOUS32(context->text);
26 UTEXT_NEXT32(context->text);
28 utext_moveIndex32(context->text, offset - context->lastOffset - 1);
29 c = UTEXT_NEXT32(context->text);
/external/chromium_org/third_party/protobuf/src/google/protobuf/stubs/
H A Dstrutil_unittest.cc58 // Verify that the endptr is set correctly even if not all text was parsed.
59 const char* text = "1.5f"; local
61 EXPECT_EQ(1.5, NoLocaleStrtod(text, &endptr));
62 EXPECT_EQ(3, endptr - text);
73 EXPECT_EQ(1.5, NoLocaleStrtod(text, &endptr));
74 EXPECT_EQ(3, endptr - text);
/external/chromium_org/third_party/skia/src/views/animated/
H A DSkStaticTextView.cpp84 size_t SkStaticTextView::getText(SkString* text) const
86 if (text)
87 *text = fText;
91 size_t SkStaticTextView::getText(char text[]) const
93 if (text)
94 memcpy(text, fText.c_str(), fText.size());
98 void SkStaticTextView::setText(const SkString& text) argument
100 this->setText(text.c_str(), text.size());
103 void SkStaticTextView::setText(const char text[]) argument
110 setText(const char text[], size_t len) argument
176 const char* text = dom.findAttr(node, "text"); local
[all...]
/external/chromium_org/url/
H A Durl_file.h58 // Returns true if the start_offset in the given text looks like it begins a
66 inline bool DoesBeginUNCPath(const CHAR* text, argument
75 return text[start_offset] == '\\' && text[start_offset + 1] == '\\';
76 return IsURLSlash(text[start_offset]) && IsURLSlash(text[start_offset + 1]);
/external/icu/icu4c/source/i18n/
H A Dregextxt.cpp22 c = UTEXT_NEXT32(context->text);
25 c = UTEXT_PREVIOUS32(context->text);
26 UTEXT_NEXT32(context->text);
28 utext_moveIndex32(context->text, offset - context->lastOffset - 1);
29 c = UTEXT_NEXT32(context->text);
/external/linux-tools-perf/perf-3.12.0/tools/lib/traceevent/
H A Devent-utils.h71 static inline int has_text(const char *text) argument
73 if (!text)
76 while (*text) {
77 if (!isspace(*text))
79 text++;
/external/protobuf/src/google/protobuf/stubs/
H A Dstrutil_unittest.cc58 // Verify that the endptr is set correctly even if not all text was parsed.
59 const char* text = "1.5f"; local
61 EXPECT_EQ(1.5, NoLocaleStrtod(text, &endptr));
62 EXPECT_EQ(3, endptr - text);
73 EXPECT_EQ(1.5, NoLocaleStrtod(text, &endptr));
74 EXPECT_EQ(3, endptr - text);
/external/skia/src/views/animated/
H A DSkStaticTextView.cpp84 size_t SkStaticTextView::getText(SkString* text) const
86 if (text)
87 *text = fText;
91 size_t SkStaticTextView::getText(char text[]) const
93 if (text)
94 memcpy(text, fText.c_str(), fText.size());
98 void SkStaticTextView::setText(const SkString& text) argument
100 this->setText(text.c_str(), text.size());
103 void SkStaticTextView::setText(const char text[]) argument
110 setText(const char text[], size_t len) argument
176 const char* text = dom.findAttr(node, "text"); local
[all...]
/external/chromium_org/ui/android/java/src/org/chromium/ui/base/
H A DClipboard.java23 // Necessary for coercing clipboard contents to text if they require
53 * {@link android.text.ClipboardManager#getText()} by invoking
81 * Gets the HTML text of top item on the primary clip on the Android clipboard.
83 * @return a Java string with the html text if any, or null if there is no html
84 * text or no entries on the primary clip.
99 * {@link android.text.ClipboardManager#setText(CharSequence)}, setting the
100 * clipboard's current primary clip to a plain-text clip that consists of
104 * @param text will become the content of the clipboard's primary clip
106 public void setText(final String label, final String text) { argument
107 setPrimaryClipNoException(ClipData.newPlainText(label, text));
119 setText(final String text) argument
132 setHTMLText(final String html, final String label, final String text) argument
147 setHTMLText(final String html, final String text) argument
[all...]
/external/smack/src/org/jivesoftware/smackx/
H A DXHTMLText.java26 * An XHTMLText represents formatted text. This class also helps to build valid
33 private StringBuilder text = new StringBuilder(30); field in class:XHTMLText
64 text.append(sb.toString());
72 text.append("</a>");
88 text.append(sb.toString());
96 text.append("</blockquote>");
118 text.append(sb.toString());
134 text.append("<br/>");
142 text.append("<cite>");
146 * Appends a tag that indicates text tha
[all...]

Completed in 591 milliseconds

1234567891011>>