Searched defs:text (Results 151 - 175 of 1867) sorted by relevance

1234567891011>>

/external/chromium_org/chrome/renderer/spellchecker/
H A Dcustom_dictionary_engine.cc44 const string16& text,
47 // The text to be checked is empty on OSX(async) right now.
52 size_t(misspelling_start + misspelling_len) <= text.length() &&
53 dictionary_.count(text.substr(misspelling_start, misspelling_len)) > 0;
43 SpellCheckWord( const string16& text, int misspelling_start, int misspelling_len) argument
/external/chromium_org/chrome/test/chromedriver/
H A Dalert_commands.cc71 std::string text; local
72 if (!params.GetString("text", &text))
73 return Status(kUnknownError, "missing or invalid 'text'");
78 session->prompt_text.reset(new std::string(text));
H A Dkeycode_text_conversion_win.cc15 ui::KeyboardCode key_code, int modifiers, std::string* text,
29 // |ToUnicode| converts some non-text key codes like F1 to various ASCII
32 *text = std::string();
34 WideToUTF8(chars, code, text);
14 ConvertKeyCodeToText( ui::KeyboardCode key_code, int modifiers, std::string* text, std::string* error_msg) argument
/external/chromium_org/chrome/test/chromedriver/chrome/
H A Djavascript_dialog_manager.cc31 const std::string* text) {
37 if (text)
38 params.SetString("promptText", *text);
30 HandleDialog(bool accept, const std::string* text) argument
/external/chromium_org/chrome/test/webdriver/
H A Dkeycode_text_conversion_win.cc28 // |ToUnicode| converts some non-text key codes like F1 to various ASCII
33 std::string text; local
34 WideToUTF8(chars, code, &text);
35 return text;
/external/chromium_org/chromeos/dbus/ibus/
H A Dibus_text_unittest.cc37 IBusText text; local
38 text.set_text(kSampleText);
39 text.set_annotation(kAnnotation);
40 text.set_description_title(kDescriptionTitle);
41 text.set_description_body(kDescriptionBody);
43 text.mutable_underline_attributes();
48 text.mutable_selection_attributes();
54 AppendIBusText(text, &writer);
60 EXPECT_EQ(kSampleText, expected_text.text());
80 EXPECT_EQ(kSampleText, ibus_text.text());
[all...]
/external/chromium_org/components/autofill/core/browser/
H A Dform_group.cc11 void FormGroup::GetMatchingTypes(const base::string16& text, argument
14 if (text.empty()) {
23 if (GetInfo(AutofillType(*type), app_locale) == text)
/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 string16& text) { argument
41 string16 address_16 = 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/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/net/socket/
H A Dbuffered_write_stream_socket_unittest.cc40 void TestWrite(const char* text) { argument
41 scoped_refptr<StringIOBuffer> buf(new StringIOBuffer(text));
/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/third_party/WebKit/Source/core/css/
H A DShadowValue.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/dom/
H A DCharacterData.h27 #include "wtf/text/WTFString.h"
54 CharacterData(TreeScope* treeScope, const String& text, ConstructionType type) argument
56 , m_data(!text.isNull() ? text : emptyString())
/external/chromium_org/third_party/WebKit/Source/core/editing/
H A DInsertIntoTextNodeCommand.cpp38 InsertIntoTextNodeCommand::InsertIntoTextNodeCommand(PassRefPtr<Text> node, unsigned offset, const String& text) argument
42 , m_text(text)
75 // Need to notify this before actually deleting the text
H A DInsertIntoTextNodeCommand.h37 static PassRefPtr<InsertIntoTextNodeCommand> create(PassRefPtr<Text> node, unsigned offset, const String& text) argument
39 return adoptRef(new InsertIntoTextNodeCommand(node, offset, text));
43 InsertIntoTextNodeCommand(PassRefPtr<Text> node, unsigned offset, const String& text);
H A DSplitTextNodeCommand.cpp38 SplitTextNodeCommand::SplitTextNodeCommand(PassRefPtr<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 RefPtr<BeforeTextInsertedEvent> evt = BeforeTextInsertedEvent::create(text);
68 newText = evt->text();
82 return event->text().length();
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DBaseButtonInputType.cpp69 RefPtr<Text> text = NonSelectableText::create(element()->document(), element()->valueWithDefault()); local
70 element()->userAgentShadowRoot()->appendChild(text);
/external/chromium_org/third_party/WebKit/Source/core/html/ime/
H A DComposition.h38 #include "wtf/text/WTFString.h"
47 String text() const { return m_text; } function in class:WebCore::Composition
48 void setText(const String& text) { m_text = text; } argument
/external/chromium_org/third_party/WebKit/Source/core/platform/network/
H A DMIMEHeader.cpp37 #include "wtf/text/CString.h"
38 #include "wtf/text/StringBuilder.h"
39 #include "wtf/text/StringConcatenate.h"
40 #include "wtf/text/StringHash.h"
116 MIMEHeader::Encoding MIMEHeader::parseContentTransferEncoding(const String& text) argument
118 String encoding = text.stripWhiteSpace().lower();
127 LOG_ERROR("Unknown encoding '%s' found in MIME header.", text.ascii().data());
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderListMarker.h42 const String& text() const { return m_text; } function in class:WebCore::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/core/rendering/svg/
H A DSVGTextMetrics.cpp64 TextRun SVGTextMetrics::constructTextRun(RenderSVGInlineText* text, unsigned position, unsigned length) argument
66 RenderStyle* style = text->style();
72 , 0 // padding, only relevant for justified text, not relevant for SVG
78 if (text->is8Bit())
79 run.setText(text->characters8() + position, length);
81 run.setText(text->characters16() + position, length);
85 run.setRenderingContext(SVGTextRunRenderingContext::create(text));
93 run.setCharactersLength(text->textLength() - position);
98 SVGTextMetrics SVGTextMetrics::measureCharacterRange(RenderSVGInlineText* text, unsigned position, unsigned length) argument
100 ASSERT(text);
104 SVGTextMetrics(RenderSVGInlineText* text, unsigned position, unsigned length, float width, const String& glyphName) argument
[all...]

Completed in 574 milliseconds

1234567891011>>