/external/chromium_org/third_party/sqlite/src/test/ |
D | ptrchng.test | 70 SELECT pointer_change(y, 'text', 'noop', 'text16') FROM t1 WHERE x=1 75 SELECT pointer_change(y, 'blob', 'noop', 'text16') FROM t1 WHERE x=1 80 SELECT pointer_change(y, 'text16', 'noop', 'blob') FROM t1 WHERE x=1 85 SELECT pointer_change(y, 'text16', 'noop', 'text') FROM t1 WHERE x=1 102 SELECT pointer_change(y, 'text', 'noop', 'text16') FROM t1 WHERE x=3 107 SELECT pointer_change(y, 'blob', 'noop', 'text16') FROM t1 WHERE x=3 112 SELECT pointer_change(y, 'text16', 'noop', 'blob') FROM t1 WHERE x=3 117 SELECT pointer_change(y, 'text16', 'noop', 'text') FROM t1 WHERE x=3 138 SELECT pointer_change(y, 'text', 'noop', 'text16') FROM t1 WHERE x=2 143 SELECT pointer_change(y, 'blob', 'noop', 'text16') FROM t1 WHERE x=2 [all …]
|
D | malloc4.test | 121 set ::text16 [sqlite3_column_text16 $::STMT 0] 122 set ::text16 [encoding convertfrom unicode $::text16] 123 set ::text16 [string range $::text16 0 end-1] 125 expr {$mf==0 || $::text16 == ""} 130 expr {$mf==0 || $::text8_2 == "" || ($::text16 == "" && $::text8 != "")}
|
/external/chromium_org/ui/gfx/ |
D | canvas_unittest.cc | 25 base::string16 text16 = base::UTF8ToUTF16(text); in SizeStringInt() local 28 (text16.find('\n') != base::string16::npos) ? Canvas::MULTI_LINE : 0; in SizeStringInt() 29 Canvas::SizeStringInt(text16, font_list_, &width, &height, line_height, in SizeStringInt()
|
D | canvas_unittest_mac.mm | 45 base::string16 text16 = base::UTF8ToUTF16(text); 47 float mac_width = GetStringNativeWidth(text16, font_list); 53 text16, font_list, &canvas_width, &canvas_height, 0, 0);
|
/external/chromium_org/third_party/skia/tests/ |
D | UnicodeTest.cpp | 46 uint16_t text16[sizeof(text8)]; in test_textencodings() local 54 text32[i] = text16[i] = text8[i]; in test_textencodings() 67 int count16 = paint.textToGlyphs(text16, len16, glyphs16); in test_textencodings()
|
/external/skia/tests/ |
D | UnicodeTest.cpp | 46 uint16_t text16[sizeof(text8)]; in test_textencodings() local 54 text32[i] = text16[i] = text8[i]; in test_textencodings() 67 int count16 = paint.textToGlyphs(text16, len16, glyphs16); in test_textencodings()
|
/external/chromium_org/content/browser/renderer_host/ |
D | ime_adapter_android.cc | 205 base::string16 text16 = ConvertJavaStringToUTF16(env, text_str); in SetComposingText() local 217 0, text16.length(), SK_ColorBLACK, false, SK_ColorTRANSPARENT)); in SetComposingText() 226 new_cursor_pos = text16.length() + new_cursor_pos - 1; in SetComposingText() 228 rwhi->ImeSetComposition(text16, underlines, new_cursor_pos, new_cursor_pos); in SetComposingText() 236 base::string16 text16 = ConvertJavaStringToUTF16(env, text_str); in CommitText() local 237 rwhi->ImeConfirmComposition(text16, gfx::Range::InvalidRange(), false); in CommitText()
|
/external/chromium_org/chrome/browser/chromeos/drive/ |
D | search_metadata.cc | 337 base::string16 text16 = base::UTF8ToUTF16(text); in FindAndHighlight() local 340 if (!query->Search(text16, &match_start, &match_length)) in FindAndHighlight() 343 base::string16 pre = text16.substr(0, match_start); in FindAndHighlight() 344 base::string16 match = text16.substr(match_start, match_length); in FindAndHighlight() 345 base::string16 post = text16.substr(match_start + match_length); in FindAndHighlight()
|
/external/chromium_org/chrome/test/chromedriver/ |
D | keycode_text_conversion_mac.mm | 67 base::string16 text16; 68 text16.push_back(character); 69 *text = base::UTF16ToUTF8(text16);
|
/external/regex-re2/ |
D | ucs2.diff | 424 - // to being a pointer into text16 (equivalent text but in UCS-2). 425 - static void AdjustUTF8ToUCS2(const StringPiece& text8, const StringPiece& text16, 439 - spbegin = text16.begin() + sizeof(uint16)*nrune; 441 - spend = text16.begin() + sizeof(uint16)*nrune; 457 - // Rewrites *sp from begin a pointer into text16 (UCS-2) 459 - static void AdjustUCS2ToUTF8(const StringPiece& text16, const StringPiece& text8, 472 - if (nrune == (sp->begin() - text16.begin())/2) 474 - if (nrune == (sp->end() - text16.begin())/2) 484 - << CEscape(text16) << " " 485 - << (int)(sp->begin() - text16.begin()) << " " [all …]
|
/external/chromium_org/third_party/re2/ |
D | ucs2.diff | 424 - // to being a pointer into text16 (equivalent text but in UCS-2). 425 - static void AdjustUTF8ToUCS2(const StringPiece& text8, const StringPiece& text16, 439 - spbegin = text16.begin() + sizeof(uint16)*nrune; 441 - spend = text16.begin() + sizeof(uint16)*nrune; 457 - // Rewrites *sp from begin a pointer into text16 (UCS-2) 459 - static void AdjustUCS2ToUTF8(const StringPiece& text16, const StringPiece& text8, 472 - if (nrune == (sp->begin() - text16.begin())/2) 474 - if (nrune == (sp->end() - text16.begin())/2) 484 - << CEscape(text16) << " " 485 - << (int)(sp->begin() - text16.begin()) << " " [all …]
|
/external/chromium_org/content/renderer/pepper/ |
D | event_conversion.cc | 393 base::string16 text16 = base::UTF8ToUTF16(event.character_text); in BuildCharEvent() local 397 for (size_t i = 0; i < std::min(text_length_cap, text16.size()); ++i) in BuildCharEvent() 398 key_event->text[i] = text16[i]; in BuildCharEvent()
|
/external/skia/src/core/ |
D | SkPaint.cpp | 576 const uint16_t* text16 = (const uint16_t*)text; in textToGlyphs() local 578 while (text16 < stop16) { in textToGlyphs() 579 *gptr++ = cache->unicharToGlyph(SkUTF16_NextUnichar(&text16)); in textToGlyphs()
|
/external/chromium_org/third_party/skia/src/core/ |
D | SkPaint.cpp | 544 const uint16_t* text16 = (const uint16_t*)text; in textToGlyphs() local 546 while (text16 < stop16) { in textToGlyphs() 547 *gptr++ = cache->unicharToGlyph(SkUTF16_NextUnichar(&text16)); in textToGlyphs()
|