HomeSort by relevance Sort by last modified time
    Searched refs:textString (Results 1 - 22 of 22) sorted by null

  /external/lzma/CPP/Common/
StdOutStream.cpp 94 char textString[32];
95 ConvertInt64ToString(number, textString);
96 return operator<<(textString);
101 char textString[32];
102 ConvertUInt64ToString(number, textString);
103 return operator<<(textString);
  /frameworks/opt/telephony/src/java/com/google/android/mms/pdu/
EncodedStringValue.java 116 * @param textString the Text-string value
119 public void setTextString(byte[] textString) {
120 if(null == textString) {
124 mData = new byte[textString.length];
125 System.arraycopy(textString, 0, mData, 0, textString.length);
158 * @param textString the textString to append
162 public void appendTextString(byte[] textString) {
163 if(null == textString) {
    [all...]
PduComposer.java 328 byte[] textString = enStr.getTextString();
329 if (null == textString) {
342 appendTextString(textString);
497 byte[] textString = mPduHeader.getTextString(field);
498 if (null == textString) {
503 appendTextString(textString);
    [all...]
PduParser.java     [all...]
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/host/chrome/
tts.js 40 cvox.ChromeTts.prototype.speak = function(textString, queueMode, properties) {
45 goog.base(this, 'speak', textString, queueMode, properties);
48 this.createMessageForProperties_(textString, queueMode, properties));
109 * @param {string} textString The string of text to be spoken.
117 function(textString, queueMode, properties) {
120 'text': textString,
tts_background.js 22 * @param {string} textString The string of text to be spoken.
25 cvox.Utterance = function(textString, properties) {
26 this.textString = textString;
215 textString, queueMode, properties) {
216 goog.base(this, 'speak', textString, queueMode, properties);
227 var splitTextString = textString.replace(/([-\n\r.,!?;])(\s)/g, '$1$2|');
249 textString = this.preprocess(textString, properties);
253 textString = this.getNumberAsDigits_(textString)
    [all...]
  /external/lzma/CPP/7zip/UI/Console/
List.cpp 151 static void PrintString(EAdjustment adjustment, int width, const UString &textString)
153 const int numSpaces = width - textString.Length();
168 g_StdOut << textString;
361 wchar_t textString[32] = { 0 };
363 ConvertUInt64ToString(*value, textString);
364 PrintString(adjustment, width, textString);
382 wchar_t textString[32];
383 ConvertUInt64ToString(numFiles, textString);
384 UString temp = textString;
388 ConvertUInt64ToString(numDirs, textString);
    [all...]
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/chromevox/injected/
console_tts.js 30 cvox.ConsoleTts.prototype.speak = function(textString, queueMode, properties) {
43 logStr += ' "' + textString + '"';
api.js 208 * @param {string} textString The string of text to be spoken.
212 cvox.Api.speak = function(textString, queueMode, properties) {
218 implementation_.speak(textString, queueMode, properties);
222 'args': [textString, queueMode, properties]
api_implementation.js 135 * @param {string} textString The string of text to be spoken.
140 callbackId, textString, queueMode, properties) {
146 cvox.ChromeVox.tts.speak(textString, queueMode, properties);
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/common/
composite_tts.js 44 function(textString, queueMode, properties) {
46 engine.speak(textString, queueMode, properties);
  /packages/apps/UnifiedEmail/src/com/android/mail/utils/
HtmlUtils.java 102 String textString = mTextConverter.getObject();
103 if (textString.length() > mTextConverterIndex) {
104 mBuilder.append(textString.substring(mTextConverterIndex));
105 mTextConverterIndex = textString.length();
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/host/interface/
tts_interface.js 40 * @param {string} textString The string of text to be spoken.
47 function(textString, queueMode, properties) { };
abstract_tts.js 114 cvox.AbstractTts.prototype.speak = function(textString, queueMode, properties) {
  /packages/apps/UnifiedEmail/src/com/android/mail/compose/
QuotedTextView.java 360 String textString = htmlText.toString();
361 return textString.indexOf(sQuoteBegin);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/templates/
TemplateMetadata.java 312 String textString = getAttributeOrNull(icon, ATTR_TEXT);
313 if (textString != null) {
314 mIconState.text = textString;
  /external/chromium_org/third_party/WebKit/Source/core/page/
PageSerializer.cpp 292 String textString = cssText.toString();
293 CString text = textEncoding.normalizeAndEncode(textString, WTF::EntitiesForUnencodables);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
dwrite.h     [all...]
  /external/pdfium/core/src/fxge/Microsoft SDK/include/
DWrite.h     [all...]
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/chromevox/background/
options.js 557 * @param {string} textString The string of text to be spoken.
561 cvox.OptionsPage.speak = function(textString, queueMode, properties) {
  /packages/apps/Email/provider_src/com/android/email/provider/
DBHelper.java     [all...]
  /external/chromium_org/chrome/third_party/chromevox/
chromeVoxChromeBackgroundScript.js     [all...]

Completed in 1482 milliseconds