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

  /external/skia/emoji/
GmojiMaker.cpp 61 vector<int> unichars; local
90 unichars.push_back(pua);
97 const int base = unichars[0];
104 for (int i = 0; i < unichars.size(); i++) {
108 printf("0x%03X", unichars[i] - base);
109 if (i == unichars.size() - 1) { // last one entirely
120 printf("#define GMOJI_PUA_MIN 0x%X\n", unichars[0]);
121 printf("#define GMOJI_PUA_MAX 0x%X\n", unichars[unichars.size()-1]);
123 printf("// GMOJI_PUA_COUNT should be %d\n", unichars.size())
    [all...]
  /external/skia/legacy/emoji/
GmojiMaker.cpp 61 vector<int> unichars; local
90 unichars.push_back(pua);
97 const int base = unichars[0];
104 for (int i = 0; i < unichars.size(); i++) {
108 printf("0x%03X", unichars[i] - base);
109 if (i == unichars.size() - 1) { // last one entirely
120 printf("#define GMOJI_PUA_MIN 0x%X\n", unichars[0]);
121 printf("#define GMOJI_PUA_MAX 0x%X\n", unichars[unichars.size()-1]);
123 printf("// GMOJI_PUA_COUNT should be %d\n", unichars.size())
    [all...]
  /external/icu4c/test/cintltst/
cintltst.h 59 * @param unichars UChars (null terminated) to be converted
60 * @return new char* to the unichars in host format
63 U_CFUNC char *austrdup(const UChar* unichars);
68 * @param unichars UChars to be converted
70 * @return new char* to the unichars in host format
72 U_CFUNC char *aescstrdup(const UChar* unichars, int32_t length);
cintltst.c 486 char *austrdup(const UChar* unichars)
491 length = u_strlen ( unichars );
498 u_austrcpy ( newString, unichars );
503 char *aescstrdup(const UChar* unichars,int32_t length){
519 length = u_strlen( unichars);
525 ucnv_fromUnicode(conv,&target,targetLimit, &unichars, (UChar*)(unichars+length),NULL,TRUE,&errorCode);
usrchtst.c 134 static char *toCharString(const UChar* unichars)
139 int length = u_strlen(unichars);
142 UChar ch = unichars[count];
    [all...]
  /external/webkit/Source/WebCore/platform/win/
BString.cpp 102 const UniChar* uniChars = CFStringGetCharactersPtr(cfstr);
103 if (uniChars) {
104 m_bstr = SysAllocStringLen((LPCWSTR)uniChars, CFStringGetLength(cfstr));
  /external/skia/src/core/
SkGlyph.h 106 kSubShift = 24, // must be large enough for glyphs and unichars
  /dalvik/vm/
UtfString.cpp 260 StringObject* dvmCreateStringFromUnicode(const u2* unichars, int len)
263 assert(len == 0 || unichars != NULL);
271 if (len > 0) memcpy(chars->contents, unichars, len * sizeof(u2));
UtfString.h 118 StringObject* dvmCreateStringFromUnicode(const u2* unichars, int len);
  /external/webkit/Source/WebKit/win/
MarshallingHelpers.cpp 95 const UniChar* uniChars = CFStringGetCharactersPtr(str);
96 if (uniChars)
97 return SysAllocStringLen((LPCTSTR)uniChars, CFStringGetLength(str));
WebPreferences.cpp 305 const UniChar* uniChars = CFStringGetCharactersPtr(str);
306 if (uniChars)
307 return SysAllocStringLen((LPCTSTR)uniChars, length);
    [all...]
  /external/webkit/Source/JavaScriptGlue/
JSUtils.cpp 287 const UniChar* uniChars = (const UniChar*)ustr.characters();
290 if (uniChars[size] < '0' || uniChars[size] > '9') {
  /external/webkit/Source/WebKit/android/plugins/
ANPPaintInterface.cpp 150 /** Return the number of unichars specifed by the text.
android_npapi.h 588 /** Return the number of unichars specifed by the text.
    [all...]
  /external/skia/legacy/include/core/
SkScalerContext.h 120 kSubShift = 24, // must be large enough for glyphs and unichars
SkPaint.h 789 /** Convert the glyph array into Unichars. Unconvertable glyphs are mapped
    [all...]
  /external/skia/include/core/
SkPaint.h 784 /** Convert the glyph array into Unichars. Unconvertable glyphs are mapped
    [all...]
  /external/icu4c/test/intltest/
ustrtest.cpp 274 UChar uniChars[] = { 0x74, 0x68, 0x69, 0x73, 0x20, 0x69, 0x73,
305 if (test2.compare(uniChars) != 0 || test3.compare(uniChars) <= 0 || test4.compare(uniChars) >= 0)
313 if (test1.compare(uniChars, 4) <= 0 || test1.compare(uniChars, 4) <= 0)
    [all...]
  /external/grub/stage2/
jfs.h 304 * For legacy filesystems, name contains 13 unichars -- no index field
  /external/qemu/telephony/
gsm.c 736 * number of unichars really written
  /frameworks/base/graphics/java/android/graphics/
Paint.java     [all...]

Completed in 1292 milliseconds