Searched refs:text (Results 201 - 225 of 3166) sorted by relevance

1234567891011>>

/external/apache-harmony/text/src/test/java/org/apache/harmony/text/tests/java/text/
H A DSupport_DecimalFormat.java18 package org.apache.harmony.text.tests.java.text;
20 import java.text.DecimalFormat;
21 import java.text.NumberFormat;
46 String text = "$10,000,000.76";
48 t_FormatWithField(0, format, number, text, NumberFormat.Field.CURRENCY,
50 t_FormatWithField(1, format, number, text, NumberFormat.Field.INTEGER,
52 t_FormatWithField(2, format, number, text,
54 t_FormatWithField(3, format, number, text,
56 t_FormatWithField(4, format, number, text, NumberForma
[all...]
/external/jsilver/src/com/google/clearsilver/jsilver/adaptor/
H A DResourceLoaderAdaptor.java70 final StringBuffer text = new StringBuffer();
71 text.append("No file '");
72 text.append(name);
73 text.append("' ");
75 text.append("with no load paths");
77 text.append("inside directory '");
78 text.append(loadPaths.get(0));
79 text.append("'");
81 text.append("inside directories ( ");
83 text
[all...]
/external/webkit/Source/JavaScriptCore/tests/mozilla/js1_5/Object/
H A Dregress-90596-001.js186 * Strips out any whitespace from the text -
188 function compactThis(text)
193 for (var i=0; i<text.length; i++)
195 charCode = text.charCodeAt(i);
198 ret += text.charAt(i);
225 * strips off parens at beginning and end of text -
227 function stripParens(text)
230 var arr = text.match(/^\((.*)\)$/);
235 return text;
240 * strips off braces at beginning and end of text
[all...]
H A Dregress-90596-002.js186 * Strips out any whitespace from the text -
188 function compactThis(text)
193 for (var i=0; i<text.length; i++)
195 charCode = text.charCodeAt(i);
198 ret += text.charAt(i);
225 * strips off parens at beginning and end of text -
227 function stripParens(text)
230 var arr = text.match(/^\((.*)\)$/);
235 return text;
240 * strips off braces at beginning and end of text
[all...]
/external/antlr/src/org/antlr/runtime/
H A DTokenRewriteStream.java63 * input.insertAfter(t, "text to put after t");}
64 * input.insertAfter(u, "text after u");}
75 * tokens.insertAfter("pass1", t, "text to put after t");}
76 * tokens.insertAfter("pass2", u, "text after u");}
95 protected Object text; field in class:TokenRewriteStream.RewriteOperation
101 protected RewriteOperation(int index, Object text) { argument
103 this.text = text;
116 ":\""+text+"\">";
121 public InsertBeforeOp(int index, Object text) { argument
138 ReplaceOp(int from, int to, Object text) argument
211 insertAfter(Token t, Object text) argument
215 insertAfter(int index, Object text) argument
219 insertAfter(String programName, Token t, Object text) argument
223 insertAfter(String programName, int index, Object text) argument
228 insertBefore(Token t, Object text) argument
232 insertBefore(int index, Object text) argument
236 insertBefore(String programName, Token t, Object text) argument
240 insertBefore(String programName, int index, Object text) argument
247 replace(int index, Object text) argument
251 replace(int from, int to, Object text) argument
255 replace(Token indexT, Object text) argument
259 replace(Token from, Token to, Object text) argument
263 replace(String programName, int from, int to, Object text) argument
273 replace(String programName, Token from, Token to, Object text) argument
[all...]
/external/chromium/base/i18n/
H A Dicu_encoding_detection.cc14 bool DetectEncoding(const std::string& text, std::string* encoding) { argument
15 if (IsStringASCII(text)) {
22 ucsdet_setText(detector, text.data(), static_cast<int32_t>(text.length()),
37 bool DetectAllEncodings(const std::string& text, argument
41 ucsdet_setText(detector, text.data(), static_cast<int32_t>(text.length()),
54 // all encodings that properly decode |text|, so we'll append more encodings
75 // decode the text. Drop all encodings with lower confidence level.
/external/llvm/docs/
H A Dllvm.css14 table { text-align: center; border: 2px solid black;
21 text-align: center; vertical-align: middle; }
31 text-align: center;
38 h1, .doc_title, .title { text-align: left; font-size: 25pt }
40 h2, .doc_section { text-align: center; font-size: 22pt;
44 text-align: left; font-size: 12pt;
53 .doc_author { text-align: left; font-weight: bold; padding-left: 20pt }
54 .doc_text { text-align: left; padding-left: 20pt; padding-right: 10pt }
56 .doc_footer { text-align: left; padding: 0 0 0 0 }
60 .doc_table { text
[all...]
/external/bluetooth/glib/tests/
H A Dbookmarkfile-test.c14 #define TEST_MIME "text/plain"
70 gchar *text; local
79 text = g_bookmark_file_get_title (bookmark, NULL, &error);
81 g_assert_cmpstr (text, ==, "a file");
82 g_free (text);
84 text = g_bookmark_file_get_description (bookmark, NULL, &error);
86 g_assert_cmpstr (text, ==, "a bookmark file");
87 g_free (text);
94 text = g_bookmark_file_get_title (bookmark, TEST_URI_0, &error);
96 g_assert_cmpstr (text,
[all...]
/external/webkit/Source/WebCore/css/
H A DCSSPrimitiveValue.cpp41 #include <wtf/text/StringBuffer.h>
300 // as well as enforcing the implicit "smart minimum." In addition the CSS property text-size-adjust is used to
301 // prevent text from zooming at all. Therefore we will not apply the zoom here if we are computing font-size.
626 String text; local
633 text = formatNumber(m_value.num);
636 text = formatNumber(m_value.num) + "%";
639 text = formatNumber(m_value.num) + "em";
642 text = formatNumber(m_value.num) + "ex";
645 text = formatNumber(m_value.num) + "rem";
648 text
[all...]
/external/chromium/base/
H A Dstack_container_unittest.cc100 StackVector<wchar_t, 16> text; local
101 text->push_back(L'A');
102 text->push_back(L'B');
103 text->push_back(L'C');
104 text->push_back(L'D');
105 text->push_back(L'E');
106 text->push_back(L'F');
107 text->push_back(0);
109 const wchar_t* buffer = &text[1];
/external/chromium/chrome/browser/autofill/
H A Dcontact_info.h26 virtual void GetPossibleFieldTypes(const string16& text,
47 // Returns true if |text| is the first name.
48 bool IsFirstName(const string16& text) const;
50 // Returns true if |text| is the middle name.
51 bool IsMiddleName(const string16& text) const;
53 // Returns true if |text| is the last name.
54 bool IsLastName(const string16& text) const;
56 // Returns true if |text| is the middle initial.
57 bool IsMiddleInitial(const string16& text) const;
59 // Returns true if |text| i
[all...]
/external/icu4c/common/
H A Druleiter.cpp24 text(theText),
32 return buf == 0 && pos.getIndex() == text.length();
47 UnicodeString name = sym->parseReference(text, pos, text.length());
118 text.extract(pos.getIndex(), maxLookAhead, result);
130 text.extract(0, b, result);
131 return result.append((UChar) 0x7C).append(text, b, 0x7FFFFFFF); // Insert '|' at index
140 return (i < text.length()) ? text.char32At(i) : (UChar32)DONE;
152 if (pos.getIndex() > text
[all...]
/external/v8/test/mjsunit/
H A Dunicode-test.js9050 function get_most_popular(text) {
9054 for (i = 0; i < text.length; i++) {
9055 letter = text.charAt(i);
9110 var text = languages[idx];
9111 assertTrue(latin_lc_re.test(text), "latin_lc" + i);
9112 assertTrue(latin_lc_re2.test(text), "latin_lc" + i);
9113 assertTrue(number_re.test(text), "number " + i);
9114 var most_popular = get_most_popular(text);
9133 var munged = text.replace(char_class, "foo");
/external/chromium/chrome/browser/bookmarks/
H A Dbookmark_folder_editor_controller.cc61 bool BookmarkFolderEditorController::IsValid(const std::wstring& text) { argument
62 return !text.empty();
65 void BookmarkFolderEditorController::InputAccepted(const std::wstring& text) { argument
67 model_->AddFolder(node_, index_, WideToUTF16Hack(text));
69 model_->SetTitle(node_, WideToUTF16Hack(text));
/external/skia/include/core/
H A DSkString.h71 explicit SkString(const char text[]);
72 SkString(const char text[], size_t len);
82 bool equals(const char text[]) const;
83 bool equals(const char text[], size_t len) const;
102 SkString& operator=(const char text[]);
110 void set(const char text[]);
111 void set(const char text[], size_t len);
116 void insert(size_t offset, const char text[]);
117 void insert(size_t offset, const char text[], size_t len);
125 void append(const char text[]) { thi argument
126 append(const char text[], size_t len) argument
134 prepend(const char text[]) argument
135 prepend(const char text[], size_t len) argument
149 operator +=(const char text[]) argument
[all...]
/external/webkit/LayoutTests/dom/xhtml/level3/core/
H A Dcanonicalform02.js99 var text;
120 text = doc.createTextNode("suçon");
121 retval = pElem.appendChild(text);
126 text = pElem.firstChild;
128 textValue = text.nodeValue;
H A Dcheckcharacternormalization01.js99 var text;
114 text = doc.createTextNode("suçon");
115 retval = pElem.appendChild(text);
120 text = pElem.firstChild;
122 textValue = text.nodeValue;
H A Dcheckcharacternormalization03.js99 var text;
120 text = doc.createTextNode("suçon");
121 retval = pElem.appendChild(text);
126 text = pElem.firstChild;
128 textValue = text.nodeValue;
H A Dnormalizecharacters01.js99 var text;
114 text = doc.createTextNode("suçon");
115 retval = pElem.appendChild(text);
120 text = pElem.firstChild;
122 textValue = text.nodeValue;
H A Dnormalizecharacters02.js99 var text;
120 text = doc.createTextNode("suçon");
121 retval = pElem.appendChild(text);
126 text = pElem.firstChild;
128 textValue = text.nodeValue;
H A Dnormalizecharacters03.js99 var text;
114 text = doc.createTextNode("suçon");
115 retval = pElem.appendChild(text);
120 text = pElem.firstChild;
122 textValue = text.nodeValue;
H A Dnormalizecharacters04.js99 var text;
120 text = doc.createTextNode("suçon");
121 retval = pElem.appendChild(text);
126 text = pElem.firstChild;
128 textValue = text.nodeValue;
H A Dnormalizecharacters05.js99 var text;
114 text = doc.createTextNode("suçon");
115 retval = pElem.appendChild(text);
120 text = pElem.firstChild;
122 textValue = text.nodeValue;
H A Dnormalizecharacters06.js99 var text;
120 text = doc.createTextNode("suçon");
121 retval = pElem.appendChild(text);
126 text = pElem.firstChild;
128 textValue = text.nodeValue;
H A Dnormalizecharacters07.js81 Normalize a text node with normalize-characters set to false, check that
99 var text;
114 text = doc.createTextNode("suçon");
115 retval = pElem.appendChild(text);
120 text = pElem.lastChild;
122 textValue = text.nodeValue;

Completed in 2076 milliseconds

1234567891011>>