Searched refs:text (Results 151 - 175 of 3881) sorted by relevance

1234567891011>>

/external/chromium/chrome/browser/ui/find_bar/
H A Dfind_bar_state.h26 void set_last_prepopulate_text(const string16& text) { argument
27 last_prepopulate_text_ = text;
30 // Retrieves the last prepopulate text for a given Profile. If the profile is
31 // incognito and has an empty prepopulate text, falls back to the
32 // prepopulate text from the normal profile.
/external/chromium/net/base/
H A Descape_icu.cc14 bool EscapeQueryParamValue(const string16& text, const char* codepage, argument
19 if (!base::UTF16ToCodepage(text, codepage,
/external/clang/include/clang/Edit/
H A DEditsReceiver.h25 virtual void insert(SourceLocation loc, StringRef text) = 0;
26 virtual void replace(CharSourceRange range, StringRef text) = 0;
/external/compiler-rt/lib/arm/
H A Drestore_vfp_d8_d15_regs.S22 .text
H A Dsave_vfp_d8_d15_regs.S22 .text
/external/doclava/src/com/google/doclava/
H A DCodeTagInfo.java27 public CodeTagInfo(String text, SourcePositionInfo sp) { argument
28 // TODO: the correct behavior is to escape the text,
30 //super("@code", "@code", encode(text), sp);
31 super("@code", "@code", text, sp);
H A DLiteralTagInfo.java27 public LiteralTagInfo(String text, SourcePositionInfo sp) { argument
28 super("Text", "Text", encode(text), sp);
/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/grub/stage2/
H A Dpxeloader.S21 .text
/external/nist-sip/java/javax/sip/header/
H A DReasonHeader.java3 import java.text.ParseException;
16 void setText(String text) throws ParseException; 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/webkit/Source/WebCore/dom/
H A DBeforeProcessEvent.idl31 attribute DOMString text;
H A DOptionElement.cpp73 String text; local
77 text = data.label();
78 if (text.isEmpty())
79 text = collectOptionInnerText(element);
80 return normalizeText(document, text);
85 String text; local
89 text += n->nodeValue();
97 return text;
102 String text = document->displayStringModifiedByEncoding(src); local
105 text
[all...]
/external/webkit/Source/WebCore/platform/text/mac/
H A DStringImplMac.mm22 #include <wtf/text/StringImpl.h>
/external/webkit/Source/WebKit/chromium/public/
H A DWebTextRun.h44 : text(t)
55 WebString text; member in struct:WebKit::WebTextRun
60 // The resulting WebCore::TextRun will refer to the text in this
61 // struct, so "this" must outlive the WebCore text run.
/external/webkit/Source/WebKit/mac/Misc/
H A DWebLocalizableStringsInternal.mm29 #import <wtf/text/WTFString.h>
/external/webkit/Tools/Scripts/webkitpy/layout_tests/
H A Dupdate_webgl_conformance_tests_unittest.py45 def assert_unchanged(self, text):
46 self.assertEqual(text, webgl.translate_khronos_test(text))
60 text = "<html></html>"
62 self.assert_translate(single_line_header + text, text)
63 self.assert_translate(multi_line_header + text, text)
/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/googleurl/src/
H A Durl_file.h83 // Returns true if the start_offset in the given text looks like it begins a
91 inline bool DoesBeginUNCPath(const CHAR* text, argument
100 return text[start_offset] == '\\' && text[start_offset + 1] == '\\';
101 return IsURLSlash(text[start_offset]) && IsURLSlash(text[start_offset + 1]);
/external/icu4c/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);

Completed in 3183 milliseconds

1234567891011>>