/libcore/luni/src/main/java/org/apache/xml/serializer/ |
ExtendedContentHandler.java | 86 * @param chars the character data 89 public void characters(String chars) throws SAXException;
|
Encodings.java | 164 char[] chars = new char[mx]; local 173 chars[i] = ch; 180 upper = String.valueOf(chars);
|
/libcore/luni/src/main/native/ |
java_net_InetAddress.cpp | 233 ScopedUtfChars chars(env, javaString); 234 if (chars.c_str() == NULL) { 237 size_t byteCount = chars.size(); 240 strcpy(ipString, chars.c_str());
|
NativeBidi.cpp | 85 ScopedCharArrayRO chars(env, text); 86 if (chars.get() == NULL) { 90 ubidi_setPara(data->uBiDi(), chars.get(), length, paraLevel, data->embeddingLevels(), &err);
|
/libcore/luni/src/test/java/tests/api/java/nio/charset/ |
Charset_AbstractTest.java | 46 static final char[] chars = new char[codes.length]; // Is filled with field in class:Charset_AbstractTest 53 char[] chars = new char[codes.length]; local 54 for (int i = 0; i < codes.length; i++) chars[i] = (char) codes[i]; 55 return chars; 114 System.out.println("Encodable Chars dumped for Test Class " + getClass().getName()); 115 fail("Encodable Chars dumped for Test Class " + getClass().getName());
|
/external/icu4c/layoutex/layout/ |
ParagraphLayout.h | 358 * @param chars is an array of the characters in the paragraph 389 ParagraphLayout(const LEUnicode chars[], le_int32 count, 414 * @param chars is an array of the characters in the paragraph 424 static le_bool isComplex(const LEUnicode chars[], le_int32 count, const FontRuns *fontRuns); 430 * @param chars is an array of the characters in the paragraph 438 static le_bool isComplex(const LEUnicode chars[], le_int32 count);
|
/external/webkit/WebKit/android/benchmark/ |
Intercept.cpp | 94 const char* chars = str.data(); local 97 char c = chars[i]; 101 in.append(chars[i]);
|
/libcore/luni/src/main/java/java/nio/ |
CharBuffer.java | 23 * A buffer of chars. 205 * The remaining chars will be moved to the head of the buffer, 216 * Compare the remaining chars of this buffer to another char 217 * buffer's remaining chars. 265 * char buffers are equal if and only if their remaining chars are exactly 304 * Reads chars from the current position into the specified char array and 305 * increases the position by the number of chars read. 321 * Reads chars from the current position into the specified char array, 323 * number of chars read. 331 * The number of chars to read, must be no less than zero and n 770 char[] chars = new char[remaining]; local [all...] |
/libcore/luni/src/test/java/tests/api/java/io/ |
DataOutputStreamTest.java | 252 char[] chars = new char[unihw.length()]; local 254 for (i = 0; i < a; i++) chars[i] = dis.readChar(); 255 assertEquals("Test 1: Incorrect chars written or read;", 256 unihw, new String(chars, 0, i)
|
/packages/apps/Email/src/org/apache/james/mime4j/ |
BodyDescriptor.java | 167 char[] chars = rest.toCharArray();
local 181 for (int i = 0; i < chars.length; i++) {
182 char c = chars[i];
|
/prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/rpcsvc/ |
rex.h | 49 char chars[4]; member in struct:sgttyb 118 char chars[6]; member in struct:tchars 124 char chars[6]; member in struct:ltchars
|
/external/chromium/third_party/icu/source/tools/tzcode/ |
localtime.c | 118 char chars[BIGGEST(BIGGEST(TZ_MAX_CHARS + 1, sizeof gmt), member in struct:state 281 &sp->chars[ttisp->tt_abbrind]; 302 &sp->chars[ttisp->tt_abbrind]; 309 if (strchr(TZ_ABBR_CHAR_SET, sp->chars[i]) == NULL) 310 sp->chars[i] = TZ_ABBR_ERR_CHAR; 316 register char * cp = &sp->chars[ttisp->tt_abbrind]; 414 sp->charcnt + /* chars */ 444 sp->chars[i] = *p++; 445 sp->chars[i] = '\0'; /* ensure '\0' at end */ 537 sp->chars[sp->charcnt++] [all...] |
/external/icu4c/tools/tzcode/ |
localtime.c | 118 char chars[BIGGEST(BIGGEST(TZ_MAX_CHARS + 1, sizeof gmt), member in struct:state 281 &sp->chars[ttisp->tt_abbrind]; 302 &sp->chars[ttisp->tt_abbrind]; 309 if (strchr(TZ_ABBR_CHAR_SET, sp->chars[i]) == NULL) 310 sp->chars[i] = TZ_ABBR_ERR_CHAR; 316 register char * cp = &sp->chars[ttisp->tt_abbrind]; 414 sp->charcnt + /* chars */ 444 sp->chars[i] = *p++; 445 sp->chars[i] = '\0'; /* ensure '\0' at end */ 537 sp->chars[sp->charcnt++] [all...] |
/external/bison/src/ |
parse-gram.c | 284 char *chars; member in union:YYSTYPE [all...] |
/external/chromium/third_party/icu/source/test/letest/ |
cletest.c | 48 LEUnicode chars[] = { local 131 glyphCount = le_layoutChars(engine, chars, -1, 6, 20, TRUE, 0.0, 0.0, &status); 134 log_err("Calling layoutChars(chars, -1, 6, 20, TRUE, 0.0, 0.0, status) did not fail w/ LE_ILLEGAL_ARGUMENT_ERROR.\n"); 138 glyphCount = le_layoutChars(engine, chars, 8, -1, 20, TRUE, 0.0, 0.0, &status); 141 log_err("Calling layoutChars(chars, 8, -1, 20, TRUE, 0.0, 0.0, status) did not fail w/ LE_ILLEGAL_ARGUMENT_ERROR.\n"); 145 glyphCount = le_layoutChars(engine, chars, 8, 6, -1, TRUE, 0.0, 0.0, &status); 148 log_err("Calling layoutChars((chars, 8, 6, -1, TRUE, 0.0, 0.0, status) did not fail w/ LE_ILLEGAL_ARGUMENT_ERROR.\n"); 152 glyphCount = le_layoutChars(engine, chars, 8, 6, 10, TRUE, 0.0, 0.0, &status); 155 log_err("Calling layoutChars(chars, 8, 6, 10, TRUE, 0.0, 0.0, status) did not fail w/ LE_ILLEGAL_ARGUMENT_ERROR.\n"); 159 glyphCount = le_layoutChars(engine, chars, 8, 6, 20, TRUE, 0.0, 0.0, &status) 218 LEUnicode chars[] = { local 522 LEUnicode chars[] = { local [all...] |
/external/icu4c/test/letest/ |
cletest.c | 48 LEUnicode chars[] = { local 131 glyphCount = le_layoutChars(engine, chars, -1, 6, 20, TRUE, 0.0, 0.0, &status); 134 log_err("Calling layoutChars(chars, -1, 6, 20, TRUE, 0.0, 0.0, status) did not fail w/ LE_ILLEGAL_ARGUMENT_ERROR.\n"); 138 glyphCount = le_layoutChars(engine, chars, 8, -1, 20, TRUE, 0.0, 0.0, &status); 141 log_err("Calling layoutChars(chars, 8, -1, 20, TRUE, 0.0, 0.0, status) did not fail w/ LE_ILLEGAL_ARGUMENT_ERROR.\n"); 145 glyphCount = le_layoutChars(engine, chars, 8, 6, -1, TRUE, 0.0, 0.0, &status); 148 log_err("Calling layoutChars((chars, 8, 6, -1, TRUE, 0.0, 0.0, status) did not fail w/ LE_ILLEGAL_ARGUMENT_ERROR.\n"); 152 glyphCount = le_layoutChars(engine, chars, 8, 6, 10, TRUE, 0.0, 0.0, &status); 155 log_err("Calling layoutChars(chars, 8, 6, 10, TRUE, 0.0, 0.0, status) did not fail w/ LE_ILLEGAL_ARGUMENT_ERROR.\n"); 159 glyphCount = le_layoutChars(engine, chars, 8, 6, 20, TRUE, 0.0, 0.0, &status) 218 LEUnicode chars[] = { local 522 LEUnicode chars[] = { local [all...] |
/external/srec/srec/crec/ |
srec_context.c | 343 Interface->chars = (char*) CALLOC_CLR(Interface->max_chars, sizeof(char), "srec.graph.wordmap.chars"); 344 Interface->next_chars = Interface->chars; 430 if (((*wmap)->chars)) FREE((*wmap)->chars); 555 wmap->max_chars = (wmap->next_chars - wmap->chars); 623 char* old_wmap_chars = wmap->chars; 624 int offset = wmap->next_base_chars - wmap->chars; 625 char* tmp_chars = NEW_ARRAY(char, offset, L("srec.g2g.graph.wordmap.chars")); 627 passert ( 0 && L("failed to reset the memory for wordmap.chars ") ); [all...] |
/bionic/libc/tzcode/ |
localtime.c | 177 char chars[BIGGEST(BIGGEST(TZ_MAX_CHARS + 1, sizeof gmt), member in struct:state 341 &sp->chars[ttisp->tt_abbrind]; 362 &sp->chars[ttisp->tt_abbrind]; 369 if (strchr(TZ_ABBR_CHAR_SET, sp->chars[i]) == NULL) 370 sp->chars[i] = TZ_ABBR_ERR_CHAR; 376 register char * cp = &sp->chars[ttisp->tt_abbrind]; 534 sp->charcnt + /* chars */ 564 sp->chars[i] = *p++; 565 sp->chars[i] = '\0'; /* ensure '\0' at end */ 657 sp->chars[sp->charcnt++] [all...] |
/external/chromium/third_party/icu/source/test/cintltst/ |
ucsdetst.c | 161 static const UChar chars[] = { local 167 int32_t beLength = 0, leLength = 0, cLength = ARRAY_SIZE(chars); 168 char *beBytes = extractBytes(chars, cLength, "UTF-16BE", &beLength); 169 char *leBytes = extractBytes(chars, cLength, "UTF-16LE", &leLength); 430 static const UChar chars[] = { local 471 int32_t bLength = 0, brLength = 0, cLength = ARRAY_SIZE(chars), crLength = ARRAY_SIZE(chars_reverse); 473 char *bytes = extractBytes(chars, cLength, "IBM424", &bLength); 516 static const UChar chars[] = { local 549 int32_t bLength = 0, brLength = 0, cLength = ARRAY_SIZE(chars), crLength = ARRAY_SIZE(chars_reverse); 551 char *bytes = extractBytes(chars, cLength, "IBM420", &bLength) [all...] |
/external/icu4c/test/cintltst/ |
ucsdetst.c | 163 static const UChar chars[] = { local 169 int32_t beLength = 0, leLength = 0, cLength = ARRAY_SIZE(chars); 170 char *beBytes = extractBytes(chars, cLength, "UTF-16BE", &beLength); 171 char *leBytes = extractBytes(chars, cLength, "UTF-16LE", &leLength); 432 static const UChar chars[] = { local 473 int32_t bLength = 0, brLength = 0, cLength = ARRAY_SIZE(chars), crLength = ARRAY_SIZE(chars_reverse); 475 char *bytes = extractBytes(chars, cLength, "IBM424", &bLength); 518 static const UChar chars[] = { local 551 int32_t bLength = 0, brLength = 0, cLength = ARRAY_SIZE(chars), crLength = ARRAY_SIZE(chars_reverse); 553 char *bytes = extractBytes(chars, cLength, "IBM420", &bLength) [all...] |
/external/bluetooth/glib/tests/ |
testglib.c | 408 char chars[62]; local 415 chars[i] = '0' + j; 416 g_tree_insert (tree, &chars[i], &chars[i]); 420 chars[i] = 'A' + j; 421 g_tree_insert (tree, &chars[i], &chars[i]); 425 chars[i] = 'a' + j; 426 g_tree_insert (tree, &chars[i], &chars[i]) 906 char *name_used, chars[62]; local [all...] |
/packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/ |
OpenWnnEN.java | 206 * @param chars A array of character 208 private void insertCharToComposingText(char[] chars) { 209 StrSegment seg = new StrSegment(chars); 211 if (chars[0] == SPACE[0] || chars[0] == '\u0009') { 480 commitText(new String(ev.chars)); 483 insertCharToComposingText(ev.chars); [all...] |
/external/chromium/third_party/icu/public/common/unicode/ |
uniset.h | [all...] |
/external/icu4c/layout/ |
HangulLayoutEngine.cpp | 209 le_int32 HangulOpenTypeLayoutEngine::characterProcessing(const LEUnicode chars[], le_int32 offset, le_int32 count, le_int32 max, le_bool rightToLeft, 216 if (chars == NULL || offset < 0 || count < 0 || max < 0 || offset >= max || offset + count > max) { 251 int32_t chClass = getCharClass(chars[i], lead, vowel, trail);
|
/external/nist-sip/java/gov/nist/core/ |
GenericObjectList.java | 107 char[] chars = new char[indentation]; local 108 java.util.Arrays.fill(chars, ' '); 109 return new String(chars);
|