HomeSort by relevance Sort by last modified time
    Searched defs:text (Results 226 - 250 of 1907) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/ttsdemo/
ttsdemo.js 7 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/
tts_utterance_request.h 18 std::string text; member in struct:TtsUtteranceRequest
  /external/chromium_org/chrome/test/remoting/
me2me_browsertest.cc 92 // Write some text into the temp file.
93 std::string text = "Abigail"; local
94 std::string command = "echo -n " + text + " > " +
106 EXPECT_EQ(text, content);
  /external/chromium_org/chrome_frame/turndown_prompt/
turndown_prompt_window.cc 44 // Subclass the "Learn more." text to make it behave like a link. Clicks are
52 // Substitute the proper text given the current IE version.
53 CWindow text = instance->GetDlgItem(IDC_TD_PROMPT_MESSAGE); local
56 text.SetWindowText(prompt_text.c_str());
  /external/chromium_org/content/renderer/android/
content_detector.h 17 // 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/
stack_frame.cc 42 // Create a stack frame from the passed text. The text must follow one of two
52 std::string text = base::UTF16ToUTF8(frame_text); local
58 if (!re2::RE2::FullMatch(text,
61 !re2::RE2::FullMatch(text,
  /external/chromium_org/gpu/config/
gpu_test_expectations_parser_unittest.cc 37 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/media/base/
text_cue.h 16 // 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/sql/
sqlite_features_unittest.cc 22 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/
CSSPageRule.cpp 31 #include "wtf/text/StringBuilder.h"
56 StringBuilder text; local
57 text.appendLiteral("@page");
62 text.append(' ');
63 text.append(pageSpecification);
66 return text.toString();
  /external/chromium_org/third_party/WebKit/Source/core/html/forms/
TypeAhead.cpp 107 String text = m_dataSource->optionAtIndex(index); local
108 if (stripLeadingWhiteSpace(text).foldCase().startsWith(prefixWithCaseFolded))
  /external/chromium_org/third_party/WebKit/Source/core/html/ime/
Composition.cpp 63 String Composition::text() const function in class:WebCore::Composition
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderListMarker.h 42 const String& text() const { return m_text; } function in class:WebCore::FINAL
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
ApplicationCacheItemsView.js 118 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;
  /external/chromium_org/third_party/WebKit/Source/devtools/scripts/jsdoc-validator/src/org/chromium/devtools/jsdoc/
ScriptText.java 5 public final String text; field in class:ScriptText
7 public ScriptText(String text) {
8 this.text = text;
21 int lineEnd = text.indexOf('\n', offset);
23 lineEnd = text.length();
25 return text.substring(lineStart, lineEnd);
29 if (offset > text.length()) {
32 return text.lastIndexOf('\n', offset) + 1;
  /external/chromium_org/third_party/WebKit/Source/modules/websockets/
WebSocketPerMessageDeflateTest.cpp 35 #include "wtf/text/StringHash.h"
92 WebSocketFrame::OpCode text = WebSocketFrame::OpCodeText; local
106 WebSocketFrame frame(text, &payload[0], payload.size(), WebSocketFrame::Final);
112 WebSocketFrame::OpCode opcode = !i ? text : WebSocketFrame::OpCodeContinuation;
125 WebSocketFrame::OpCode opcode = !i ? text : WebSocketFrame::OpCodeContinuation;
234 WebSocketFrame::OpCode text = WebSocketFrame::OpCodeText; local
236 WebSocketFrame f1(text, "Hello", 5);
322 WebSocketFrame::OpCode text = WebSocketFrame::OpCodeText; local
323 WebSocketFrame f1(text, "\xf2\x48", 2, WebSocketFrame::Compress);
325 WebSocketFrame f3(text, "\xcd\xc9\xc9\x07\x00", 5, WebSocketFrame::Final)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/
WebOptionElement.cpp 60 WebString WebOptionElement::text() const function in class:blink::WebOptionElement
62 return constUnwrap<HTMLOptionElement>()->text();
  /external/chromium_org/third_party/WebKit/public/web/
WebConsoleMessage.h 48 WebString text; member in struct:blink::WebConsoleMessage
52 WebConsoleMessage(Level level, const WebString& text)
54 , text(text) { }
  /external/chromium_org/third_party/angle/src/compiler/
Diagnostics.cpp 60 const std::string& text)
62 writeInfo(severity(id), loc, message(id), text, ""); local
  /external/chromium_org/third_party/icu/source/common/
ruleiter.h 39 * Text being iterated.
41 const UnicodeString& text; member in class:RuleCharacterIterator
92 * Constructs an iterator over the given text, starting at the given
94 * @param text the text to be iterated
102 RuleCharacterIterator(const UnicodeString& text, const SymbolTable* sym,
  /external/chromium_org/third_party/icu/source/common/unicode/
normlzr.h 39 * - a Normalizer object is an iterator that takes any kind of text and
50 * The input text is not normalized all at once, but incrementally where needed
52 * This allows to pass in a large text but spend only a small amount of time
53 * normalizing a small part of that text.
54 * However, if the entire text is normalized, then the iterator will be
55 * slower than normalizing the entire text at once and iterating over the result.
57 * original text that is close to where the normalized characters come from.
63 * Normalizer allows to start normalizing from anywhere in the input text by
65 * Without calling any of these, the iterator will start at the beginning of the text.
74 * the getIndex(). Note that if the text at the current positio
749 CharacterIterator *text; member in class:Normalizer
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/p2p/base/
parsing.h 49 std::string text; member in struct:cricket::ParseError
59 void SetText(const std::string& text) {
60 this->text = text;
66 std::string text; member in struct:cricket::WriteError
68 void SetText(const std::string& text) {
69 this->text = text;
74 bool BadParse(const std::string& text, ParseError* err);
77 bool BadWrite(const std::string& text, WriteError* error)
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/tgsi/
tgsi_transform.c 240 const char *text = local
247 return tgsi_text_translate( text,
  /external/chromium_org/third_party/mesa/src/src/glsl/glcpp/
glcpp.c 47 char *text = NULL; local
55 text = reralloc_size (ctx, text, text_size);
56 if (text == NULL) {
61 bytes = fread (text + total_read, 1, CHUNK, fp);
69 text[total_read] = '\0';
71 return text;
77 char *text; local
90 text = load_text_fp (ctx, fp);
94 return text;
    [all...]
  /external/chromium_org/third_party/openssl/openssl/apps/
pkeyparam.c 73 int text = 0, noout = 0; local
118 else if (strcmp(*args,"-text") == 0)
119 text=1;
134 BIO_printf(bio_err, "-text print parameters as text\n");
189 if (text)

Completed in 2704 milliseconds

1 2 3 4 5 6 7 8 91011>>