Home
last modified time | relevance | path

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

/external/icu/icu4c/source/tools/genrb/
Dustr.c36 s->fChars = 0; in ustr_init()
45 s->fChars = 0; in ustr_initChars()
75 uprv_free(s->fChars); in ustr_deinit()
76 s->fChars = 0; in ustr_deinit()
94 if(src->fChars == NULL || dst->fChars == NULL){ in ustr_cpy()
97 u_memcpy(dst->fChars, src->fChars, src->fLength); in ustr_cpy()
99 dst->fChars[dst->fLength] = 0x0000; in ustr_cpy()
117 s->fChars[len] = 0x0000; in ustr_setlen()
143 uprv_memcpy(dst->fChars + dst->fLength, src->fChars, in ustr_ncat()
146 dst->fChars[dst->fLength] = 0x0000; in ustr_ncat()
[all …]
Dparse.cpp290 count = u_strlen(tokenValue->fChars); in getInvariantString()
291 if(!uprv_isInvariantUString(tokenValue->fChars, count)) { in getInvariantString()
305 u_UCharsToChars(tokenValue->fChars, result, count+1); in getInvariantString()
348 u_UCharsToChars(tokenValue->fChars, cs, tokenValue->fLength); in parseUCARules()
489 u_UCharsToChars(tokenValue->fChars, cs, tokenValue->fLength); in parseTransliterator()
562 u_UCharsToChars(tokenValue->fChars, cs, tokenValue->fLength); in parseDependency()
580 …result = string_open(state->bundle, tag, tokenValue->fChars, tokenValue->fLength, comment, status); in parseDependency()
582 … elem = string_open(state->bundle, NULL, tokenValue->fChars, tokenValue->fLength, comment, status); in parseDependency()
613 …result = string_open(state->bundle, tag, tokenValue->fChars, tokenValue->fLength, comment, status); in parseString()
645 … result = alias_open(state->bundle, tag, tokenValue->fChars, tokenValue->fLength, comment, status); in parseAlias()
[all …]
Dustr.h55 UChar *fChars; member
Dwrtxml.cpp440 count = getCount(src->fChars,src->fLength, UPC_NOTE, status); in printNoteElements()
446 noteLen = getAt(src->fChars,src->fLength, &note, capacity, i, UPC_NOTE, status); in printNoteElements()
506 src->fLength = removeCmtText(src->fChars, src->fLength, status); in printComments()
507 descLen = getDescription(src->fChars,src->fLength, &desc, capacity, status); in printComments()
508 transLen = getTranslate(src->fChars,src->fLength, &trans, capacity, status); in printComments()
/external/icu/icu4c/source/samples/layout/
Dparagraph.cpp84 fLineCount(0), fLinesMax(LINE_GROW), fLinesGrow(LINE_GROW), fLines(NULL), fChars(NULL), in Paragraph()
103 fChars = LE_NEW_ARRAY(LEUnicode, charCount + 1); in Paragraph()
104 LE_ARRAY_COPY(fChars, chars, charCount); in Paragraph()
105 fChars[charCount] = 0; in Paragraph()
107 LEUnicode *pStart = &fChars[0]; in Paragraph()
115 pEnd = &fChars[charCount]; in Paragraph()
119 subsetFontRuns(fontRuns, pStart - fChars, pEnd - fChars, &fr); in Paragraph()
179 LE_DELETE_ARRAY(fChars); in ~Paragraph()
Dpflow.c56 LEUnicode *fChars; member
136 flow->fChars = NULL; in pf_create()
152 flow->fChars = NEW_ARRAY(LEUnicode, charCount + 1); in pf_create()
153 LE_ARRAY_COPY(flow->fChars, chars, charCount); in pf_create()
154 flow->fChars[charCount] = 0; in pf_create()
156 pStart = &flow->fChars[0]; in pf_create()
164 pEnd = &flow->fChars[charCount]; in pf_create()
168 subsetFontRuns(fontRuns, pStart - flow->fChars, pEnd - flow->fChars, fr); in pf_create()
242 DELETE_ARRAY(obj->fChars); in pf_close()
Dparagraph.h68 LEUnicode *fChars; variable
/external/icu/icu4c/source/i18n/
Dregeximp.cpp68 fChars(chars), fIndex(start), fLimit(limit), fcsp(NULL), fFoldChars(NULL), fFoldLength(0) { in CaseFoldingUCharIterator()
85 U16_NEXT(fChars, fIndex, fLimit, originalC); in next()
Dregeximp.h404 const UChar *fChars;
/external/icu/icu4c/source/layoutex/
DParagraphLayout.cpp320 : fChars(chars), fCharCount(count), in ParagraphLayout()
420 …fStyleRunInfo[run].glyphCount = fStyleRunInfo[run].engine->layoutChars(fChars, runStart, fStyleRun… in ParagraphLayout()
730 ubidi_setPara(fParaBidi, fChars, fCharCount, paragraphLevel, fEmbeddingLevels, &bidiStatus); in computeLevels()
755 UScriptRun *sr = uscript_openRun(fChars, fCharCount, &scriptStatus); in computeScripts()
806 …const LEFontInstance *subFont = runFont->getSubFont(fChars, &offset, styleRunLimits[run], script, … in computeSubFonts()
989 (u_isWhitespace(fChars[charIndex]) || in previousBreak()
990 u_iscntrl(fChars[charIndex]))) { in previousBreak()
997 UCharCharacterIterator *iter = new UCharCharacterIterator(fChars, fCharCount); in previousBreak()
/external/icu/icu4c/source/layoutex/layout/
DParagraphLayout.h607 const LEUnicode *fChars; variable