/external/apache-http/src/org/apache/commons/codec/language/ |
Soundex.java | 205 * @param ch 209 * Thrown if <code>ch</code> is not mapped. 211 private char map(char ch) { 212 int index = ch - 'A'; 214 throw new IllegalArgumentException("The character is not mapped: " + ch);
|
/external/bluetooth/bluez/cups/ |
sdp.c | 110 uint8_t ch = sdp_get_proto_port(protos, RFCOMM_UUID); local 111 if (ch > 0) { 112 *channel = ch;
|
/external/icu4c/layout/ |
HangulLayoutEngine.cpp | 151 static le_int32 getCharClass(LEUnicode ch, LEUnicode &lead, LEUnicode &vowel, LEUnicode &trail) 157 if (ch >= LJMO_FIRST && ch <= LJMO_LAST) { 158 lead = ch; 162 if (ch >= VJMO_FIRST && ch <= VJMO_LAST) { 163 vowel = ch; 167 if (ch > TJMO_FIRST && ch <= TJMO_LAST) { 168 trail = ch; [all...] |
/external/icu4c/samples/layout/ |
GDIFontInstance.h | 91 virtual LEGlyphID mapCharToGlyph(LEUnicode32 ch) const; 131 inline LEGlyphID GDIFontInstance::mapCharToGlyph(LEUnicode32 ch) const 133 return fMapper->unicodeToGlyph(ch);
|
GnomeFontInstance.h | 86 virtual LEGlyphID mapCharToGlyph(LEUnicode32 ch) const; 141 inline LEGlyphID GnomeFontInstance::mapCharToGlyph(LEUnicode32 ch) const 143 return fMapper->unicodeToGlyph(ch);
|
ScriptCompositeFontInstance.cpp | 87 LEGlyphID ScriptCompositeFontInstance::mapCharToGlyph(LEUnicode32 ch) const 91 le_int32 script = uscript_getScript(ch, &error); 99 LEGlyphID glyph = scriptFont->mapCharToGlyph(ch);
|
/external/icu4c/test/letest/ |
PortableFontInstance.h | 95 virtual LEGlyphID mapCharToGlyph(LEUnicode32 ch, const LECharMapper *mapper, le_bool filterZeroWidth) const; 99 virtual LEGlyphID mapCharToGlyph(LEUnicode32 ch, const LECharMapper *mapper) const; 101 virtual LEGlyphID mapCharToGlyph(LEUnicode32 ch) const;
|
/external/speex/libspeex/ |
speex_callbacks.c | 129 unsigned char ch; local 130 ch = speex_bits_unpack_unsigned(bits, 8); 131 _speex_putc(ch, data); 132 /*printf("speex_std_char_handler ch=%x\n", ch);*/
|
/external/tagsoup/src/org/ccil/cowan/tagsoup/ |
Schema.java | 133 Integer ch = (Integer)theEntities.get(name); local 134 if (ch == null) return 0; 135 return ch.intValue();
|
/frameworks/base/media/libdrm/mobile1/src/objmng/ |
drm_decoder.c | 25 static int8_t get_alphabet_index(int8_t ch) 29 if ('=' == ch) 32 tmp = (uint8_t *)strchr((const char *)base64_alphabet, ch);
|
/dalvik/libcore/xml/src/main/java/org/apache/xml/serializer/ |
SerializerTrace.java | 129 * @param ch The char array from the SAX event. 133 public void fireGenerateEvent(int eventType, char ch[], int start, int length);
|
/external/icu4c/test/intltest/ |
canittst.h | 49 void characterTest(UnicodeString &s, UChar32 ch, CanonicalIterator &it);
|
fldset.cpp | 68 static UnicodeString *split(const UnicodeString &src, UChar ch, int32_t &splits) 73 while((offset = src.indexOf(ch, offset + 1)) >= 0) { 83 while((end = src.indexOf(ch, start)) >= 0) { 116 char ch[256]; local 119 u_UCharsToChars(u, ch, len); 120 ch[len] = 0; /* include terminating \0 */ 121 it_errln(UnicodeString("Parse Failed: Field ") + UnicodeString(ch) + UnicodeString(", err ") + UnicodeString(u_errorName(status))); 129 char ch[256]; local 132 u_UCharsToChars(u, ch, len); 133 ch[len] = 0; /* include terminating \0 * [all...] |
/external/skia/include/xml/ |
SkXMLParser.h | 51 void setNoun(const char* ch) { fNoun.set(ch); } 52 void setNoun(const char* ch, size_t len) { fNoun.set(ch, len); }
|
/external/webkit/WebCore/html/ |
HTMLTableColElement.h | 54 String ch() const;
|
HTMLTableRowElement.h | 60 String ch() const;
|
HTMLTableSectionElement.h | 52 String ch() const;
|
/frameworks/base/tools/aapt/ |
printapk.cpp | 109 const char16_t* ch = strings->stringAt(stringIndex, &len); 110 String8 s(String16(ch, len)); 118 const char16_t* ch = res.getBasePackageName(bpIndex); 119 String8 s = String8(String16(ch));
|
/external/grub/stage2/ |
fsys_minix.c | 312 char ch; local 442 for (rest = dirname; (ch = *rest) && !isspace (ch) && ch != '/'; 469 *rest = ch; 488 *rest = ch; 513 if (print_possibilities && ch != '/' 526 while (!dp->inode || (str_chk || (print_possibilities && ch != '/'))); 529 *(dirname = rest) = ch;
|
/external/jpeg/ |
rdjpgcom.c | 224 int ch; local 235 ch = read_1_byte(); 241 if (ch == '\r') { 243 } else if (ch == '\n') { 246 } else if (ch == '\\') { 248 } else if (isprint(ch)) { 249 putc(ch, stdout); 251 printf("\\%03o", ch); 253 lastch = ch;
|
/external/webkit/JavaScriptCore/wrec/ |
CharacterClassConstructor.cpp | 38 void CharacterClassConstructor::addSorted(Vector<UChar>& matches, UChar ch) 47 int val = matches[pos+index] - ch; 59 matches.append(ch); 61 matches.insert(pos, ch); 111 void CharacterClassConstructor::put(UChar ch) 129 UChar hi = ch; 187 } else if (ch == '-') 193 m_charBuffer = ch; 198 m_charBuffer = ch;
|
/frameworks/base/cmds/runtime/ |
SignalHandler.cpp | 69 ChildHandler ch; local 71 ch = mOwner.mChildHandlers.valueAt(i); 83 if (ch.handler) { 84 ch.handler(entry.info.si_pid, ch.userData); 155 const ChildHandler& ch(self->mChildHandlers.valueAt(i)); 156 if (tag == 0 || ch.tag == tag) { 157 const pid_t pid = ch.childPid; 158 LOGI("Killing child %d (tag %d)\n", pid, ch.tag);
|
/frameworks/base/core/java/android/pim/vcard/ |
VCardParser_V30.java | 331 char ch = text.charAt(i); local 332 if (ch == '\\' && i < length - 1) { 340 builder.append(ch); 347 protected String maybeUnescapeCharacter(char ch) { 348 return unescapeCharacter(ch); 351 public static String unescapeCharacter(char ch) { 352 if (ch == 'n' || ch == 'N') { 355 return String.valueOf(ch);
|
/prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/lib/gcc/arm-eabi/4.4.0/plugin/include/config/ |
elfos.h | 401 register unsigned ch; \ 405 for (; (ch = *_limited_str); _limited_str++) \ 409 switch (escape = ESCAPES[ch]) \ 412 putc (ch, (FILE)); \ 415 fprintf ((FILE), "\\%03o", ch); \ 478 register unsigned ch; \ 483 switch (escape = ESCAPES[ch = *_ascii_bytes]) \ 486 putc (ch, (FILE)); \ 490 fprintf ((FILE), "\\%03o", ch); \
|
/packages/apps/IM/libwbxml/src/ |
wbxml_parser.cpp | 518 uint32_t ch = readMbuint32(); local 520 if (ch <= 0x7f) { 521 str += (char)ch; 522 } else if (ch <= 0x7ff) { 523 str += (char)((ch >> 6) | 0xc0); 524 str += (char)((ch & 0x3f) | 0x80); 525 } else if (ch <= 0xffff) { 526 str += (char)((ch >> 12) | 0xe0); 527 str += (char)(((ch >> 6) & 0x3f) | 0x80); 528 str += (char)((ch & 0x3f) | 0x80) [all...] |