Searched defs:text (Results 126 - 150 of 1804) sorted by relevance

1234567891011>>

/external/chromium_org/content/public/test/android/javatests/src/org/chromium/content/browser/test/util/
H A DKeyUtils.java61 public static void inputString(Instrumentation instrumentation, String text) { argument
62 instrumentation.sendStringSync(text);
/external/chromium_org/content/renderer/android/
H A Daddress_detector.cc17 // Maximum text length to be searched for address detection.
39 std::string AddressDetector::GetContentText(const base::string16& text) { argument
41 base::string16 address_16 = base::CollapseWhitespace(text, false);
H A Dcontent_detector.h17 // Base class for text-based content detectors.
24 const std::string& text,
30 std::string text; // Processed text of the content. member in struct:content::ContentDetector::Result
56 // Returns the maximum length of text to be extracted around the tapped
/external/chromium_org/extensions/common/
H A Dstack_frame_unittest.cc19 void AssertStackFrameValid(const std::string& text, argument
24 base::string16 utf16_text = base::UTF8ToUTF16(text);
27 ASSERT_TRUE(frame.get()) << "Failed to create frame from '" << text << "'";
34 void AssertStackFrameInvalid(const std::string& text) { argument
35 base::string16 utf16_text = base::UTF8ToUTF16(text);
37 ASSERT_FALSE(frame.get()) << "Errantly created frame from '" << text << "'";
/external/chromium_org/gpu/config/
H A Dgpu_test_expectations_parser_unittest.cc37 const std::string text = local
42 EXPECT_TRUE(parser.LoadTestExpectations(text));
49 const std::string text = local
53 EXPECT_TRUE(parser.LoadTestExpectations(text));
60 const std::string text = local
64 EXPECT_TRUE(parser.LoadTestExpectations(text));
71 const std::string text = local
75 EXPECT_TRUE(parser.LoadTestExpectations(text));
82 const std::string text = local
86 EXPECT_TRUE(parser.LoadTestExpectations(text));
93 const std::string text = local
111 const std::string text = local
120 const std::string text = local
137 const std::string text = local
146 const std::string text = local
155 const std::string text = local
164 const std::string text = local
173 const std::string text = local
182 const std::string text = local
191 const std::string text = local
200 const std::string text = local
210 const std::string text = local
220 const std::string text = local
232 const std::string text = local
[all...]
/external/chromium_org/ipc/
H A Dipc_test_channel_listener.cc15 const char* text) {
22 message->WriteString(std::string(text));
14 SendOneMessage(IPC::Sender* sender, const char* text) argument
/external/chromium_org/media/base/
H A Dtext_cue.h16 // A text buffer to carry the components of a text track cue.
24 const std::string& text);
31 const std::string& text() const { return text_; } function in class:media::TextCue
/external/chromium_org/mojo/services/public/cpp/input_events/lib/
H A Dmojo_extended_key_event_data.h18 uint16_t text,
23 uint16_t text() const { return text_; } function in class:mojo::MojoExtendedKeyEventData
/external/chromium_org/net/base/
H A Dnet_string_util_icu.cc16 bool ConvertToUtf8(const std::string& text, const char* charset, argument
29 size_t output_length = text.length() * 3 + 1;
32 text.data(), text.length(), &err);
43 bool ConvertToUtf8AndNormalize(const std::string& text, const char* charset, argument
45 return base::ConvertToUtf8AndNormalize(text, charset, output);
48 bool ConvertToUTF16(const std::string& text, const char* charset, argument
50 return base::CodepageToUTF16(text, charset,
54 bool ConvertToUTF16WithSubstitutions(const std::string& text, argument
57 return base::CodepageToUTF16(text, charse
[all...]
H A Dnet_string_util_icu_alternatives_android.cc18 // Attempts to convert |text| encoded in |charset| to a jstring (Java unicode
20 ScopedJavaLocalRef<jstring> ConvertToJstring(const std::string& text, argument
25 env->NewDirectByteBuffer(const_cast<char*>(text.data()), text.length()));
34 // Attempts to convert |text| encoded in |charset| to a jstring (Java unicode
38 const std::string& text, const char* charset) {
42 env->NewDirectByteBuffer(const_cast<char*>(text.data()), text.length()));
51 // Converts |text| encoded in |charset| to a jstring (Java unicode string).
54 const std::string& text, cons
37 ConvertToNormalizedJstring( const std::string& text, const char* charset) argument
53 ConvertToJstringWithSubstitutions( const std::string& text, const char* charset) argument
71 ConvertToUtf8(const std::string& text, const char* charset, std::string* output) argument
81 ConvertToUtf8AndNormalize(const std::string& text, const char* charset, std::string* output) argument
92 ConvertToUTF16(const std::string& text, const char* charset, base::string16* output) argument
102 ConvertToUTF16WithSubstitutions(const std::string& text, const char* charset, base::string16* output) argument
[all...]
/external/chromium_org/net/tools/balsa/
H A Dstring_piece_utils.h93 static bool StartsWithIgnoreCase(const base::StringPiece& text, argument
95 if (text.size() < starts_with.size())
97 return EqualIgnoreCase(text.substr(0, starts_with.size()), starts_with);
/external/chromium_org/ppapi/cpp/
H A Dtext_input_controller.cc50 void TextInputController::UpdateSurroundingText(const Var& text, argument
56 text.pp_var(),
/external/chromium_org/sql/
H A Dsqlite_features_unittest.cc22 const char* text = stmt ? stmt->GetSQLStatement() : NULL; local
23 *sql_text = text ? text : "no statement available";
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSShadowValue.cpp24 #include "wtf/text/StringBuilder.h"
25 #include "wtf/text/WTFString.h"
29 // Used for text-shadow and box-shadow
48 StringBuilder text; local
51 text.append(color->cssText());
53 if (!text.isEmpty())
54 text.append(' ');
55 text.append(x->cssText());
58 if (!text.isEmpty())
59 text
[all...]
/external/chromium_org/third_party/WebKit/Source/core/editing/
H A DInsertIntoTextNodeCommand.cpp37 InsertIntoTextNodeCommand::InsertIntoTextNodeCommand(PassRefPtrWillBeRawPtr<Text> node, unsigned offset, const String& text) argument
41 , m_text(text)
H A DInsertIntoTextNodeCommand.h37 static PassRefPtrWillBeRawPtr<InsertIntoTextNodeCommand> create(PassRefPtrWillBeRawPtr<Text> node, unsigned offset, const String& text) argument
39 return adoptRefWillBeNoop(new InsertIntoTextNodeCommand(node, offset, text));
45 InsertIntoTextNodeCommand(PassRefPtrWillBeRawPtr<Text> node, unsigned offset, const String& text);
H A DInsertTextCommand.h40 static PassRefPtrWillBeRawPtr<InsertTextCommand> create(Document& document, const String& text, bool selectInsertedText = false, argument
43 return adoptRefWillBeNoop(new InsertTextCommand(document, text, selectInsertedText, rebalanceType));
47 InsertTextCommand(Document&, const String& text, bool selectInsertedText, RebalanceType);
H A DSplitTextNodeCommand.cpp38 SplitTextNodeCommand::SplitTextNodeCommand(PassRefPtrWillBeRawPtr<Text> text, int offset) argument
39 : SimpleEditCommand(text->document())
40 , m_text2(text)
H A DTextInsertionBaseCommand.cpp57 String dispatchBeforeTextInsertedEvent(const String& text, const VisibleSelection& selectionForInsertion, bool insertionIsForUpdatingComposition) argument
60 return text;
62 String newText = text;
65 // Send BeforeTextInsertedEvent. The event handler will update text if necessary.
66 RefPtrWillBeRawPtr<BeforeTextInsertedEvent> evt = BeforeTextInsertedEvent::create(text);
68 newText = evt->text();
82 return event->text().length();
/external/chromium_org/third_party/WebKit/Source/core/fetch/
H A DTextResource.cpp37 String text = m_decoder->decode(m_data->data(), encodedSize()); local
38 text = text + m_decoder->flush();
40 return text;
/external/chromium_org/third_party/WebKit/Source/core/frame/csp/
H A DCSPDirective.h8 #include "wtf/text/WTFString.h"
24 const String& text() const { return m_text; } function in class:blink::CSPDirective
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLTitleElement.cpp33 #include "wtf/text/StringBuilder.h"
69 String HTMLTitleElement::text() const function in class:blink::HTMLTitleElement
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderListMarker.h44 const String& text() const { return m_text; } function in class:blink::FINAL
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
H A DContentData.cpp40 PassOwnPtr<ContentData> ContentData::create(const String& text) argument
42 return adoptPtr(new TextContentData(text));
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/resources/
H A DApplicationCacheItemsView.js118 statusInformation[applicationCache.UNCACHED] = { className: "red-ball", text: "UNCACHED" };
119 statusInformation[applicationCache.IDLE] = { className: "green-ball", text: "IDLE" };
120 statusInformation[applicationCache.CHECKING] = { className: "orange-ball", text: "CHECKING" };
121 statusInformation[applicationCache.DOWNLOADING] = { className: "orange-ball", text: "DOWNLOADING" };
122 statusInformation[applicationCache.UPDATEREADY] = { className: "green-ball", text: "UPDATEREADY" };
123 statusInformation[applicationCache.OBSOLETE] = { className: "red-ball", text: "OBSOLETE" };
128 this.statusMessage.textContent = info.text;

Completed in 1473 milliseconds

1234567891011>>