HomeSort by relevance Sort by last modified time
    Searched full:android_string (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/tools/grit/grit/tool/
android2grd.py 279 def CreateTclibMessage(self, android_string):
282 Interprets whitespace, quotes, and escaped characters in the android_string
295 nodes = android_string.childNodes
336 def __FormatAndroidString(self, android_string, inside_placeholder=False):
337 r"""Returns android_string formatted for a .grd file.
347 for c in android_string:
367 print 'Warning: unbalanced quotes in string: %s' % android_string
370 print 'Warning: trailing backslash in string: %s' % android_string
487 def IsTranslatable(self, android_string):
492 if android_string.hasAttribute('translatable')
    [all...]
  /external/chromium_org/ui/base/clipboard/
clipboard_android.cc 144 std::string android_string = ConvertJavaStringToUTF8(java_string_text); local
145 if (!android_string.empty() &&
146 (it == map_.end() || it->second != android_string)) {
150 map_[kPlainTextFormat] = android_string;
167 std::string android_string = ConvertJavaStringToUTF8(java_string_html); local
168 if (!android_string.empty()) {
169 map_[kHTMLFormat] = android_string;

Completed in 213 milliseconds