Home
last modified time | relevance | path

Searched refs:fChars (Results 1 – 11 of 11) sorted by relevance

/external/icu/icu4c/source/tools/genrb/
Dustr.c34 s->fChars = 0; in ustr_init()
43 s->fChars = 0; in ustr_initChars()
73 uprv_free(s->fChars); in ustr_deinit()
74 s->fChars = 0; in ustr_deinit()
92 if(src->fChars == NULL || dst->fChars == NULL){ in ustr_cpy()
95 uprv_memcpy(dst->fChars, src->fChars, sizeof(UChar) * src->fLength); in ustr_cpy()
97 dst->fChars[dst->fLength] = 0x0000; in ustr_cpy()
115 s->fChars[len] = 0x0000; in ustr_setlen()
141 uprv_memcpy(dst->fChars + dst->fLength, src->fChars, in ustr_ncat()
144 dst->fChars[dst->fLength] = 0x0000; in ustr_ncat()
[all …]
Dparse.cpp288 count = u_strlen(tokenValue->fChars); in getInvariantString()
289 if(!uprv_isInvariantUString(tokenValue->fChars, count)) { in getInvariantString()
303 u_UCharsToChars(tokenValue->fChars, result, count+1); in getInvariantString()
346 u_UCharsToChars(tokenValue->fChars, cs, tokenValue->fLength); in parseUCARules()
487 u_UCharsToChars(tokenValue->fChars, cs, tokenValue->fLength); in parseTransliterator()
560 u_UCharsToChars(tokenValue->fChars, cs, tokenValue->fLength); in parseDependency()
578 …result = string_open(state->bundle, tag, tokenValue->fChars, tokenValue->fLength, comment, status); in parseDependency()
580 … elem = string_open(state->bundle, NULL, tokenValue->fChars, tokenValue->fLength, comment, status); in parseDependency()
611 …result = string_open(state->bundle, tag, tokenValue->fChars, tokenValue->fLength, comment, status); in parseString()
643 … result = alias_open(state->bundle, tag, tokenValue->fChars, tokenValue->fLength, comment, status); in parseAlias()
[all …]
Dustr.h53 UChar *fChars; member
Dwrtxml.cpp438 count = getCount(src->fChars,src->fLength, UPC_NOTE, status); in printNoteElements()
444 noteLen = getAt(src->fChars,src->fLength, &note, capacity, i, UPC_NOTE, status); in printNoteElements()
504 src->fLength = removeCmtText(src->fChars, src->fLength, status); in printComments()
505 descLen = getDescription(src->fChars,src->fLength, &desc, capacity, status); in printComments()
506 transLen = getTranslate(src->fChars,src->fLength, &trans, capacity, status); in printComments()
/external/icu/icu4c/source/samples/layout/
Dparagraph.cpp78 fLineCount(0), fLinesMax(LINE_GROW), fLinesGrow(LINE_GROW), fLines(NULL), fChars(NULL), in Paragraph()
97 fChars = LE_NEW_ARRAY(LEUnicode, charCount + 1); in Paragraph()
98 LE_ARRAY_COPY(fChars, chars, charCount); in Paragraph()
99 fChars[charCount] = 0; in Paragraph()
101 LEUnicode *pStart = &fChars[0]; in Paragraph()
109 pEnd = &fChars[charCount]; in Paragraph()
113 subsetFontRuns(fontRuns, pStart - fChars, pEnd - fChars, &fr); in Paragraph()
173 LE_DELETE_ARRAY(fChars); in ~Paragraph()
Dpflow.c53 LEUnicode *fChars; member
133 flow->fChars = NULL; in pf_create()
149 flow->fChars = NEW_ARRAY(LEUnicode, charCount + 1); in pf_create()
150 LE_ARRAY_COPY(flow->fChars, chars, charCount); in pf_create()
151 flow->fChars[charCount] = 0; in pf_create()
153 pStart = &flow->fChars[0]; in pf_create()
161 pEnd = &flow->fChars[charCount]; in pf_create()
165 subsetFontRuns(fontRuns, pStart - flow->fChars, pEnd - flow->fChars, fr); in pf_create()
239 DELETE_ARRAY(obj->fChars); in pf_close()
Dparagraph.h62 LEUnicode *fChars; variable
/external/icu/icu4c/source/i18n/
Dregeximp.cpp66 fChars(chars), fIndex(start), fLimit(limit), fcsp(NULL), fFoldChars(NULL), fFoldLength(0) { in CaseFoldingUCharIterator()
83 U16_NEXT(fChars, fIndex, fLimit, originalC); in next()
Dregeximp.h402 const UChar *fChars;
/external/icu/icu4c/source/layoutex/
DParagraphLayout.cpp318 : fChars(chars), fCharCount(count), in ParagraphLayout()
418 …fStyleRunInfo[run].glyphCount = fStyleRunInfo[run].engine->layoutChars(fChars, runStart, fStyleRun… in ParagraphLayout()
728 ubidi_setPara(fParaBidi, fChars, fCharCount, paragraphLevel, fEmbeddingLevels, &bidiStatus); in computeLevels()
753 UScriptRun *sr = uscript_openRun(fChars, fCharCount, &scriptStatus); in computeScripts()
804 …const LEFontInstance *subFont = runFont->getSubFont(fChars, &offset, styleRunLimits[run], script, … in computeSubFonts()
987 (u_isWhitespace(fChars[charIndex]) || in previousBreak()
988 u_iscntrl(fChars[charIndex]))) { in previousBreak()
995 UCharCharacterIterator *iter = new UCharCharacterIterator(fChars, fCharCount); in previousBreak()
/external/icu/icu4c/source/layoutex/layout/
DParagraphLayout.h605 const LEUnicode *fChars; variable