Searched defs:text (Results 101 - 125 of 1804) sorted by relevance

1234567891011>>

/external/apache-harmony/beans/src/test/support/java/org/apache/harmony/beans/tests/support/
H A DStandardBean.java29 private String text = "none"; field in class:StandardBean
36 public StandardBean(String text) { argument
37 this.text = text;
41 return text;
44 public void setText(String text) { argument
45 this.text = text;
/external/apache-http/src/org/apache/commons/codec/net/
H A DRFC1522Codec.java31 * describes techniques to allow the encoding of non-ASCII text in
53 * Applies an RFC 1522 compliant encoding scheme to the given string of text with the
58 * @param text a string to encode
70 protected String encodeText(final String text, final String charset) argument
73 if (text == null) {
82 byte [] rawdata = doEncoding(text.getBytes(charset));
89 * Applies an RFC 1522 compliant decoding scheme to the given string of text. This method
93 * @param text a string to decode
100 protected String decodeText(final String text) argument
103 if (text
[all...]
/external/chromium_org/ash/shell/
H A Dlock_view.cc46 base::string16 text = base::ASCIIToUTF16("LOCKED!"); variable
47 int string_width = gfx::GetStringWidth(text, font_list_);
48 canvas->DrawStringRect(text, font_list_, SK_ColorRED,
/external/chromium_org/chrome/browser/autocomplete/
H A Dautocomplete_classifier.cc40 const base::string16& text,
49 text, base::string16::npos, base::string16(), GURL(),
39 Classify( const base::string16& text, bool prefer_keyword, bool allow_exact_keyword_match, metrics::OmniboxEventProto::PageClassification page_classification, AutocompleteMatch* match, GURL* alternate_nav_url) argument
/external/chromium_org/chrome/browser/chromeos/ui/
H A Didle_app_name_notification_view_unittest.cc112 // Check that the shown text for a correct application is correct.
117 base::string16 text = message->GetShownTextForTest(); local
120 EXPECT_EQ(name, text.substr(0, name.length()));
128 base::string16 text = message->GetShownTextForTest(); local
131 EXPECT_EQ(error, text);
/external/chromium_org/chrome/browser/omnibox/
H A Domnibox_log.cc8 const base::string16& text,
20 : text(text),
7 OmniboxLog( const base::string16& text, bool just_deleted_text, metrics::OmniboxInputType::Type input_type, bool is_popup_open, size_t selected_index, bool is_paste_and_go, SessionID::id_type tab_id, metrics::OmniboxEventProto::PageClassification current_page_classification, base::TimeDelta elapsed_time_since_user_first_modified_omnibox, size_t completed_length, base::TimeDelta elapsed_time_since_last_change_to_default_match, const AutocompleteResult& result) argument
H A Domnibox_log.h23 const base::string16& text,
38 // The user's input text in the omnibox.
39 base::string16 text; member in struct:OmniboxLog
41 // Whether the user deleted text immediately before selecting an omnibox
67 // The amount of time since the user first began modifying the text
68 // in the omnibox. If at some point after modifying the text, the
/external/chromium_org/chrome/browser/spellchecker/
H A Dspelling_service_client.h31 // text there. This class creates a JSON-RPC request, sends the request to the
50 // void MyTextCheck(BrowserContext* context, const base::string16& text) {
52 // client_->RequestTextCheck(context, 0, text,
65 // * SPELLCHECK: Spellchecking text (used by Google Docs).
74 const base::string16& /* text */,
81 // Sends a text-check request to the Spelling service. When we send a request
83 // does not mean the service finishes checking text successfully.) We will
84 // call |callback| when we receive a text-check response from the service.
87 const base::string16& text,
101 base::string16 text);
109 base::string16 text; member in struct:SpellingServiceClient::TextCheckCallbackData
[all...]
/external/chromium_org/chrome/browser/ui/find_bar/
H A Dfind_bar_state_factory.cc21 base::string16 text = state->last_prepopulate_text(); local
23 if (text.empty() && p->IsOffTheRecord()) {
26 text = state->last_prepopulate_text();
29 return text;
/external/chromium_org/chrome/browser/ui/views/
H A Dcrypto_module_password_dialog_view_unittest.cc22 void Capture(const std::string& text) { argument
23 text_ = text;
48 EXPECT_EQ(empty, dialog_->password_entry_->text());
/external/chromium_org/chrome/browser/ui/views/location_bar/
H A Dlocation_icon_view.cc25 base::string16 text; local
27 ui::CLIPBOARD_TYPE_SELECTION, &text);
28 text = OmniboxView::SanitizeTextForPaste(text);
31 if (model->CanPasteAndGo(text))
32 model->PasteAndGo(text);
/external/chromium_org/chrome/browser/ui/webui/password_manager_internals/
H A Dpassword_manager_internals_ui.cc70 const std::string& text) {
73 std::string no_quotes(text);
69 LogSavePasswordProgress( const std::string& text) argument
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/ttsdemo/
H A Dttsdemo.js7 var text; variable
18 text = document.getElementById('srctext');
73 text.setSelectionRange(0, event.charIndex);
106 speak(text.value, options, true);
/external/chromium_org/chrome/common/
H A Dicon_with_badge_image_source.cc16 const std::string& text,
23 text_(text),
12 IconWithBadgeImageSource( const gfx::ImageSkia& icon, const gfx::Size& icon_size, const gfx::Size& spacing, const std::string& text, const SkColor& text_color, const SkColor& background_color, extensions::ActionInfo::Type action_type) argument
H A Dtts_utterance_request.h18 std::string text; member in struct:TtsUtteranceRequest
/external/chromium_org/chrome/renderer/spellchecker/
H A Dcustom_dictionary_engine.cc44 const base::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 base::string16& text, int misspelling_start, int misspelling_len) argument
/external/chromium_org/chrome/test/android/javatests/src/org/chromium/chrome/test/util/
H A DTranslateUtil.java8 import android.text.SpannableString;
9 import android.text.style.ClickableSpan;
34 TextView text = (TextView) view.findViewById(R.id.infobar_message);
36 SpannableString spannable = (SpannableString) text.getText();
43 // Find the approximate coordinates of the first link of the first line of text so we can
48 float nChars = text.getLayout().getLineVisibleEnd(0);
51 float sizePerChar = text.getLayout().getLineWidth(0) / nChars;
52 float xPos = text.getPaddingLeft() + (sizePerChar * x);
53 float yPos = text.getHeight() / (float) 2;
55 TestTouchUtils.singleClickView(test.getInstrumentation(), text, (in
61 verifyInfoBarText(InfoBar infoBar, String text) argument
[all...]
/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.cc14 ui::KeyboardCode key_code, int modifiers, std::string* text,
28 // |ToUnicode| converts some non-text key codes like F1 to various
31 *text = std::string();
33 base::WideToUTF8(chars, code, text);
13 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/remoting/
H A Dme2me_browsertest.cc75 // Write some text in the box and press enter
76 std::string text = "Abigail"; local
77 SimulateStringInput(text);
90 // Check that the text we got is correct
93 "testResult.keypressText == '" + text + "'"));
/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/components/omnibox/
H A Danswers_cache.cc11 AnswersQueryData::AnswersQueryData(const base::string16& text, argument
13 : full_query_text(text), query_type(type) {
25 // If the query text starts with trimmed input, this is valid prefetch data.
/external/chromium_org/components/password_manager/core/browser/
H A Dlog_router.cc19 void LogRouter::ProcessLog(const std::string& text) { argument
23 accumulated_logs_.append(text);
25 LogReceiver, receivers_, LogSavePasswordProgress(text));
H A Dpassword_manager_client.cc29 void PasswordManagerClient::LogSavePasswordProgress(const std::string& text) { argument

Completed in 7845 milliseconds

1234567891011>>