Searched defs:chars (Results 176 - 200 of 315) sorted by relevance

1234567891011>>

/external/icu/icu4c/source/common/
H A Ducnv_io.cpp1115 const char *chars; member in struct:TempAliasTable
1131 const char *chars=tempTable->chars; local
1133 return (int32_t)uprv_strcmp(tempTable->stripForCompare(strippedLeft, chars+2*((const TempRow *)left)->strIndex),
1134 tempTable->stripForCompare(strippedRight, chars+2*((const TempRow *)right)->strIndex));
1247 tempTable.chars=(const char *)(outTable+offsets[stringTableIndex]); /* sort by outCharset */
H A Duniset_props.cpp384 RuleCharacterIterator chars(pattern, symbols, pos);
385 applyPattern(chars, symbols, rebuiltPat, USET_IGNORE_SPACE, NULL, status);
387 if (chars.inVariable()) {
388 // syntaxError(chars, "Extra chars in variable value");
430 * @param chars iterator over the pattern characters. Upon return
441 void UnicodeSet::applyPattern(RuleCharacterIterator& chars, argument
451 // Recognized special forms for chars, sets: c-c s-s s&s
474 while (mode != 2 && !chars.atEnd()) {
488 if (resemblesPropertyPattern(chars, opt
1153 resemblesPropertyPattern(RuleCharacterIterator& chars, int32_t iterOpts) argument
1279 applyPropertyPattern(RuleCharacterIterator& chars, UnicodeString& rebuiltPat, UErrorCode& ec) argument
[all...]
H A Ducnv.cpp479 char chars[UCNV_ERROR_BUFFER_LENGTH]; local
489 length8 = ucnv_fromUChars(clone, chars, (int32_t)sizeof(chars), s, length, err);
502 subChars = (uint8_t *)chars;
549 if (subChars == (uint8_t *)chars) {
/external/icu/icu4c/source/i18n/
H A Ddtptngen_impl.h141 int8_t chars[UDATPG_FIELD_COUNT]; member in class:SkeletonFields
146 return (uprv_memcmp(chars, other.chars, sizeof(chars)) == 0
/external/icu/icu4c/source/layoutex/
H A DParagraphLayout.cpp313 ParagraphLayout::ParagraphLayout(const LEUnicode chars[], le_int32 count, argument
320 : fChars(chars), fCharCount(count),
617 le_bool ParagraphLayout::isComplex(const LEUnicode chars[], le_int32 count) argument
621 UScriptRun *sr = uscript_openRun(chars, count, &scriptStatus);
/external/icu/icu4c/source/test/intltest/
H A Dnumberformat2test.cpp1437 static UChar chars[500]; local
1438 for (int32_t i = 0; i < UPRV_LENGTHOF(chars); ++i) {
1439 chars[i] = (UChar) (i + 1);
1443 first.addLiteral(chars, 0, 200);
1444 first.addLiteral(chars, 200, 300);
1446 first.addLiteral(chars, 0, 256);
1449 second.addLiteral(chars, 0, 300);
1450 second.addLiteral(chars, 300, 200);
1452 second.addLiteral(chars, 0, 150);
1453 second.addLiteral(chars, 15
1480 static UChar chars[] = {0x44, 0x6F, 0x6E, 0x27, 0x74}; local
[all...]
H A Dustrtest.cpp274 char chars[] = "this is a test"; local
307 if (test2.compare(chars) != 0 || test3.compare(chars) <= 0 || test4.compare(chars) >= 0)
/external/icu/icu4c/source/test/letest/
H A Dletest.cpp155 LEUnicode chars[] = { local
162 glyphCount = engine->layoutChars(chars, -1, 6, 20, TRUE, 0.0, 0.0, status);
165 log_err("Calling layoutChars(chars, -1, 6, 20, TRUE, 0.0, 0.0, status) did not fail w/ LE_ILLEGAL_ARGUMENT_ERROR.\n");
169 glyphCount = engine->layoutChars(chars, 8, -1, 20, TRUE, 0.0, 0.0, status);
172 log_err("Calling layoutChars(chars, 8, -1, 20, TRUE, 0.0, 0.0, status) did not fail w/ LE_ILLEGAL_ARGUMENT_ERROR.\n");
176 glyphCount = engine->layoutChars(chars, 8, 6, -1, TRUE, 0.0, 0.0, status);
179 log_err("Calling layoutChars((chars, 8, 6, -1, TRUE, 0.0, 0.0, status) did not fail w/ LE_ILLEGAL_ARGUMENT_ERROR.\n");
183 glyphCount = engine->layoutChars(chars, 8, 6, 10, TRUE, 0.0, 0.0, status);
186 log_err("Calling layoutChars(chars, 8, 6, 10, TRUE, 0.0, 0.0, status) did not fail w/ LE_ILLEGAL_ARGUMENT_ERROR.\n");
192 glyphCount = engine->layoutChars(chars,
250 LEUnicode chars[] = { local
763 LEUnicode chars[] = { local
[all...]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DNormalizer.java1310 * @return Length of output (number of chars) when successful or
2514 chars=dest;
2529 chars[offset]=c;
2543 chars[offset++]=s.charAt(sStart++);
2551 private final char[] chars; field in class:Normalizer.CharsAppendable
H A DSpoofChecker.java410 * Check that an identifier contains only characters from a single script (plus chars from the common and inherited
472 // for this Spoof Checker. Defaults to all chars.
659 // Add the script chars for this locale to the accumulating set
660 // of allowed chars.
674 // chars.
732 * @param chars
739 public Builder setAllowedChars(UnicodeSet chars) { argument
740 fAllowedCharsSet.set(chars);
839 // Capture Group 2: the replacement chars
/external/libvterm/include/
H A Dvterm.h103 const uint32_t *chars; member in struct:__anon12970
220 uint32_t chars[VTERM_MAX_CHARS_PER_CELL]; member in struct:__anon12975
266 size_t vterm_screen_get_chars(const VTermScreen *screen, uint32_t *chars, size_t len, const VTermRect rect);
/external/libvterm/src/
H A Dscreen.c35 uint32_t chars[VTERM_MAX_CHARS_PER_CELL]; member in struct:__anon12986
91 new_cell->chars[0] = 0;
181 for(i = 0; i < VTERM_MAX_CHARS_PER_CELL && info->chars[i]; i++) {
182 cell->chars[i] = info->chars[i];
186 cell->chars[i] = 0;
189 getcell(screen, pos.row, pos.col + col)->chars[0] = (uint32_t)-1;
278 cell->chars[0] = 0;
699 if(cell->chars[0] == 0)
702 else if(cell->chars[
725 vterm_screen_get_chars(const VTermScreen *screen, uint32_t *chars, size_t len, const VTermRect rect) argument
[all...]
H A Dstate.c20 static void putglyph(VTermState *state, const uint32_t chars[], int width, VTermPos pos) argument
23 .chars = chars,
34 fprintf(stderr, "libvterm: Unhandled putglyph U+%04x at (%d,%d)\n", chars[0], pos.col, pos.row);
234 printf("DEBUG: COMBINING SPLIT GLYPH of chars {");
240 /* Find where we need to append these combining chars */
279 uint32_t chars[glyph_ends - glyph_starts + 1]; local
282 chars[i - glyph_starts] = codepoints[i];
286 chars[glyph_ends - glyph_starts] = 0;
291 printf("DEBUG: COMBINED GLYPH of %d chars {", glyph_end
[all...]
/external/pdfium/core/fxcrt/
H A Dfx_bidi.cpp235 void BidiLine(std::vector<CFX_Char>* chars, size_t iCount) { argument
236 ASSERT(iCount <= chars->size());
240 Classify(chars, iCount, false);
241 ResolveExplicit(chars, iCount);
242 ResolveWeak(chars, iCount);
243 ResolveNeutrals(chars, iCount);
244 ResolveImplicit(chars, iCount);
245 Classify(chars, iCount, true);
246 ResolveWhitespace(chars, iCount);
247 Reorder(chars, iCoun
272 ReverseString(std::vector<CFX_Char>* chars, size_t iStart, size_t iCount) argument
281 SetDeferredRun(std::vector<CFX_Char>* chars, bool bClass, size_t iStart, size_t iCount, int32_t iValue) argument
301 Classify(std::vector<CFX_Char>* chars, size_t iCount, bool bWS) argument
320 ResolveExplicit(std::vector<CFX_Char>* chars, size_t iCount) argument
325 ResolveWeak(std::vector<CFX_Char>* chars, size_t iCount) argument
393 ResolveNeutrals(std::vector<CFX_Char>* chars, size_t iCount) argument
443 ResolveImplicit(std::vector<CFX_Char>* chars, size_t iCount) argument
456 ResolveWhitespace(std::vector<CFX_Char>* chars, size_t iCount) argument
496 ReorderLevel(std::vector<CFX_Char>* chars, size_t iCount, int32_t iBaseLevel, size_t iStart, bool bReverse) argument
615 FX_BidiLine(std::vector<CFX_Char>* chars, size_t iCount) argument
[all...]
/external/pdfium/xfa/fgas/layout/
H A Dcfx_txtbreak.cpp294 std::vector<CFX_Char>& chars = m_pCurLine->m_LineChars; local
302 pTC = &chars[i];
309 FX_BidiLine(&chars, iBidiNum + 1);
321 pTC = &chars[i];
386 pTC = &chars[0];
/external/python/cpython3/Modules/
H A D_json.c125 ascii_escape_unichar(Py_UCS4 c, unsigned char *output, Py_ssize_t chars) argument
130 output[chars++] = '\\';
132 case '\\': output[chars++] = c; break;
133 case '"': output[chars++] = c; break;
134 case '\b': output[chars++] = 'b'; break;
135 case '\f': output[chars++] = 'f'; break;
136 case '\n': output[chars++] = 'n'; break;
137 case '\r': output[chars++] = 'r'; break;
138 case '\t': output[chars++] = 't'; break;
143 output[chars
167 Py_ssize_t chars; local
233 Py_ssize_t chars; local
[all...]
/external/skia/src/ports/
H A DSkFontMgr_android_parser.cpp83 XML_CharacterDataHandler chars; member in struct:TagHandler
200 /*chars*/nullptr,
243 /*chars*/[](void* data, const char* s, int len) {
296 /*chars*/nullptr,
362 /*chars*/nullptr,
377 /*chars*/nullptr,
438 /*chars*/[](void* data, const char* s, int len) {
454 /*chars*/nullptr,
464 /*chars*/[](void* data, const char* s, int len) {
481 /*chars*/nullpt
[all...]
/external/skqp/src/ports/
H A DSkFontMgr_android_parser.cpp83 XML_CharacterDataHandler chars; member in struct:TagHandler
200 /*chars*/nullptr,
243 /*chars*/[](void* data, const char* s, int len) {
296 /*chars*/nullptr,
362 /*chars*/nullptr,
377 /*chars*/nullptr,
438 /*chars*/[](void* data, const char* s, int len) {
454 /*chars*/nullptr,
464 /*chars*/[](void* data, const char* s, int len) {
481 /*chars*/nullpt
[all...]
/external/v8/src/heap/
H A Dheap-inl.h193 bool inline Heap::IsOneByte(Vector<const char> str, int chars) { argument
195 return chars == str.length();
200 bool inline Heap::IsOneByte(String* str, int chars) { argument
206 Vector<const char> str, int chars, uint32_t hash_field) {
207 if (IsOneByte(str, chars)) {
211 return AllocateInternalizedStringImpl<false>(str, chars, hash_field);
216 AllocationResult Heap::AllocateInternalizedStringImpl(T t, int chars, argument
218 if (IsOneByte(t, chars)) {
219 return AllocateInternalizedStringImpl<true>(t, chars, hash_field);
221 return AllocateInternalizedStringImpl<false>(t, chars, hash_fiel
205 AllocateInternalizedStringFromUtf8( Vector<const char> str, int chars, uint32_t hash_field) argument
[all...]
/external/v8/src/parsing/
H A Dscanner.cc886 // Most tokens should not have literal_chars or even raw_literal chars.
889 // - TEMPLATE_*: need both literal + raw literal chars.
1487 Vector<const uint8_t> chars = next_.literal_chars->one_byte_literal(); local
1489 KeywordOrIdentifierToken(chars.start(), chars.length());
1540 Vector<const uint8_t> chars = next_.literal_chars->one_byte_literal(); local
1542 KeywordOrIdentifierToken(chars.start(), chars.length());
1575 Vector<const uint8_t> chars = next_.literal_chars->one_byte_literal(); local
1577 KeywordOrIdentifierToken(chars
[all...]
/external/v8/src/
H A Dutils.h464 size_t chars) {
465 memcpy(dest, src, chars);
482 size_t chars);
494 size_t chars) {
495 memcpy(dest, src, chars);
626 // Compare 8bit/16bit chars to 8bit/16bit chars.
629 size_t chars) {
630 const lchar* limit = lhs + chars;
634 return memcmp(lhs, rhs, chars);
463 MemCopyUint8Wrapper(uint8_t* dest, const uint8_t* src, size_t chars) argument
493 MemCopyUint8Wrapper(uint8_t* dest, const uint8_t* src, size_t chars) argument
628 CompareCharsUnsigned(const lchar* lhs, const rchar* rhs, size_t chars) argument
646 CompareChars(const lchar* lhs, const rchar* rhs, size_t chars) argument
[all...]
/external/apache-xml/src/main/java/org/apache/xml/serializer/
H A DToStream.java73 * single chars or surrogate pairs of high/low chars form
1047 * @param chars non-null reference to character array.
1048 * @param len length of chars.
1061 char[] chars,
1386 * @param chars The characters from the XML document.
1396 public void characters(final char chars[], final int start, final int length) argument
1423 cdata(chars, start, length);
1433 charactersRaw(chars, start, length);
1437 super.fireCharEvent(chars, star
1057 accumDefaultEntity( java.io.Writer writer, char ch, int i, char[] chars, int len, boolean fromTextNode, boolean escLF) argument
1640 processLineFeed(final char[] chars, int i, int lastProcessed, final Writer writer) argument
1655 writeOutCleanChars(final char[] chars, int i, int lastProcessed) argument
1706 processDirty( char[] chars, int end, int i, char ch, int lastDirty, boolean fromTextNode) argument
1783 accumDefaultEscape( Writer writer, char ch, int i, char[] chars, int len, boolean fromTextNode, boolean escLF) argument
[all...]
/external/freetype/src/pfr/
H A Dpfrtypes.h239 PFR_Char chars; member in struct:PFR_PhyFontRec_
/external/icu/android_icu4j/src/main/java/android/icu/text/
H A DDateTimePatternGenerator.java780 * and returns a string using canonical pattern chars
2280 private byte[] chars = new byte[TYPE_LIMIT]; field in class:DateTimePatternGenerator.SkeletonFields
2286 Arrays.fill(chars, DEFAULT_CHAR);
2291 chars[field] = other.chars[field];
2296 chars[field] = DEFAULT_CHAR;
2301 return (char) chars[field];
2321 chars[field] = (byte) ch;
2367 char ch = (char) chars[field];
2382 int charDiff = chars[
[all...]
H A DUnicodeSet.java465 * and chars to UnicodeSets
481 * and chars to UnicodeSets
2353 RuleCharacterIterator chars =
2355 applyPattern(chars, symbols, rebuiltPat, options);
2356 if (chars.inVariable()) {
2357 syntaxError(chars, "Extra chars in variable value");
2394 * @param chars iterator over the pattern characters. Upon return
2405 private void applyPattern(RuleCharacterIterator chars, SymbolTable symbols, argument
2410 // Recognized special forms for chars, set
2793 syntaxError(RuleCharacterIterator chars, String msg) argument
3533 resemblesPropertyPattern(RuleCharacterIterator chars, int iterOpts) argument
3646 applyPropertyPattern(RuleCharacterIterator chars, Appendable rebuiltPat, SymbolTable symbols) argument
[all...]

Completed in 812 milliseconds

1234567891011>>