HomeSort by relevance Sort by last modified time
    Searched refs:fChars (Results 1 - 25 of 28) sorted by null

1 2

  /external/chromium_org/third_party/icu/source/tools/genrb/
ustr.c 34 s->fChars = 0;
43 s->fChars = 0;
73 uprv_free(s->fChars);
74 s->fChars = 0;
92 if(src->fChars == NULL || dst->fChars == NULL){
95 uprv_memcpy(dst->fChars, src->fChars, sizeof(UChar) * src->fLength);
97 dst->fChars[dst->fLength] = 0x0000;
115 s->fChars[len] = 0x0000
    [all...]
reslist.c 499 udata_writeUString(mem, res->u.fString.fChars, length + 1);
509 udata_writeUString(mem, res->u.fString.fChars, length + 1);
891 return ustr_hashUCharsN(res->u.fString.fChars, res->u.fString.fLength);
898 return 0 == u_strCompare(res1->u.fString.fChars, res1->u.fString.fLength,
899 res2->u.fString.fChars, res2->u.fString.fLength,
911 res->u.fString.fChars = &gEmptyString;
921 res->u.fString.fChars = (UChar *)value;
931 res->u.fString.fChars = (UChar *) uprv_malloc(sizeof(UChar) * (len + 1));
933 if (res->u.fString.fChars == NULL) {
939 uprv_memcpy(res->u.fString.fChars, value, sizeof(UChar) * len)
    [all...]
ustr.h 53 UChar *fChars;
parse.cpp 258 count = u_strlen(tokenValue->fChars);
259 if(!uprv_isInvariantUString(tokenValue->fChars, count)) {
273 u_UCharsToChars(tokenValue->fChars, result, count+1);
316 u_UCharsToChars(tokenValue->fChars, cs, tokenValue->fLength);
457 u_UCharsToChars(tokenValue->fChars, cs, tokenValue->fLength);
530 u_UCharsToChars(tokenValue->fChars, cs, tokenValue->fLength);
548 result = string_open(state->bundle, tag, tokenValue->fChars, tokenValue->fLength, comment, status);
550 elem = string_open(state->bundle, NULL, tokenValue->fChars, tokenValue->fLength, comment, status);
581 result = string_open(state->bundle, tag, tokenValue->fChars, tokenValue->fLength, comment, status);
613 result = alias_open(state->bundle, tag, tokenValue->fChars, tokenValue->fLength, comment, status)
    [all...]
wrtxml.cpp 428 count = getCount(src->fChars,src->fLength, UPC_NOTE, status);
434 noteLen = getAt(src->fChars,src->fLength, &note, capacity, i, UPC_NOTE, status);
493 src->fLength = removeCmtText(src->fChars, src->fLength, status);
494 descLen = getDescription(src->fChars,src->fLength, &desc, capacity, status);
495 transLen = getTranslate(src->fChars,src->fLength, &trans, capacity, status);
622 buf = convertAndEscape(&buf, 0, &bufLen, res->u.fString.fChars, res->u.fString.fLength, status);
654 buf = convertAndEscape(&buf, 0, &bufLen, res->u.fString.fChars, res->u.fString.fLength, status);
    [all...]
wrtjava.c 311 str_write_java(res->u.fString.fChars,res->u.fString.fLength,TRUE,status);
316 uprv_memcpy(buf,res->u.fString.fChars,res->u.fString.fLength);
  /external/icu/icu4c/source/tools/genrb/
ustr.c 34 s->fChars = 0;
43 s->fChars = 0;
73 uprv_free(s->fChars);
74 s->fChars = 0;
92 if(src->fChars == NULL || dst->fChars == NULL){
95 uprv_memcpy(dst->fChars, src->fChars, sizeof(UChar) * src->fLength);
97 dst->fChars[dst->fLength] = 0x0000;
115 s->fChars[len] = 0x0000
    [all...]
ustr.h 53 UChar *fChars;
parse.cpp 280 count = u_strlen(tokenValue->fChars);
281 if(!uprv_isInvariantUString(tokenValue->fChars, count)) {
295 u_UCharsToChars(tokenValue->fChars, result, count+1);
338 u_UCharsToChars(tokenValue->fChars, cs, tokenValue->fLength);
479 u_UCharsToChars(tokenValue->fChars, cs, tokenValue->fLength);
552 u_UCharsToChars(tokenValue->fChars, cs, tokenValue->fLength);
570 result = string_open(state->bundle, tag, tokenValue->fChars, tokenValue->fLength, comment, status);
572 elem = string_open(state->bundle, NULL, tokenValue->fChars, tokenValue->fLength, comment, status);
603 result = string_open(state->bundle, tag, tokenValue->fChars, tokenValue->fLength, comment, status);
635 result = alias_open(state->bundle, tag, tokenValue->fChars, tokenValue->fLength, comment, status)
    [all...]
reslist.c 169 const UChar *s = res->u.fString.fChars;
596 udata_writeUString(mem, res->u.fString.fChars, length + 1);
606 udata_writeUString(mem, res->u.fString.fChars, length + 1);
    [all...]
wrtxml.cpp 438 count = getCount(src->fChars,src->fLength, UPC_NOTE, status);
444 noteLen = getAt(src->fChars,src->fLength, &note, capacity, i, UPC_NOTE, status);
503 src->fLength = removeCmtText(src->fChars, src->fLength, status);
504 descLen = getDescription(src->fChars,src->fLength, &desc, capacity, status);
505 transLen = getTranslate(src->fChars,src->fLength, &trans, capacity, status);
632 buf = convertAndEscape(&buf, 0, &bufLen, res->u.fString.fChars, res->u.fString.fLength, status);
664 buf = convertAndEscape(&buf, 0, &bufLen, res->u.fString.fChars, res->u.fString.fLength, status);
    [all...]
reslist.h 125 UChar *fChars;
  /external/chromium_org/third_party/icu/source/samples/layout/
paragraph.cpp 78 fLineCount(0), fLinesMax(LINE_GROW), fLinesGrow(LINE_GROW), fLines(NULL), fChars(NULL),
97 fChars = LE_NEW_ARRAY(LEUnicode, charCount + 1);
98 LE_ARRAY_COPY(fChars, chars, charCount);
99 fChars[charCount] = 0;
101 LEUnicode *pStart = &fChars[0];
109 pEnd = &fChars[charCount];
113 subsetFontRuns(fontRuns, pStart - fChars, pEnd - fChars, &fr);
168 LE_DELETE_ARRAY(fChars);
pflow.c 53 LEUnicode *fChars;
133 flow->fChars = NULL;
149 flow->fChars = NEW_ARRAY(LEUnicode, charCount + 1);
150 LE_ARRAY_COPY(flow->fChars, chars, charCount);
151 flow->fChars[charCount] = 0;
153 pStart = &flow->fChars[0];
161 pEnd = &flow->fChars[charCount];
165 subsetFontRuns(fontRuns, pStart - flow->fChars, pEnd - flow->fChars, fr);
239 DELETE_ARRAY(obj->fChars);
    [all...]
paragraph.h 62 LEUnicode *fChars;
  /external/icu/icu4c/source/samples/layout/
paragraph.cpp 78 fLineCount(0), fLinesMax(LINE_GROW), fLinesGrow(LINE_GROW), fLines(NULL), fChars(NULL),
97 fChars = LE_NEW_ARRAY(LEUnicode, charCount + 1);
98 LE_ARRAY_COPY(fChars, chars, charCount);
99 fChars[charCount] = 0;
101 LEUnicode *pStart = &fChars[0];
109 pEnd = &fChars[charCount];
113 subsetFontRuns(fontRuns, pStart - fChars, pEnd - fChars, &fr);
168 LE_DELETE_ARRAY(fChars);
pflow.c 53 LEUnicode *fChars;
133 flow->fChars = NULL;
149 flow->fChars = NEW_ARRAY(LEUnicode, charCount + 1);
150 LE_ARRAY_COPY(flow->fChars, chars, charCount);
151 flow->fChars[charCount] = 0;
153 pStart = &flow->fChars[0];
161 pEnd = &flow->fChars[charCount];
165 subsetFontRuns(fontRuns, pStart - flow->fChars, pEnd - flow->fChars, fr);
239 DELETE_ARRAY(obj->fChars);
    [all...]
paragraph.h 62 LEUnicode *fChars;
  /external/chromium_org/third_party/icu/source/i18n/
regeximp.cpp 66 fChars(chars), fIndex(start), fLimit(limit), fcsp(NULL), fFoldChars(NULL), fFoldLength(0) {
83 U16_NEXT(fChars, fIndex, fLimit, originalC);
regeximp.h 410 const UChar *fChars;
  /external/icu/icu4c/source/i18n/
regeximp.cpp 66 fChars(chars), fIndex(start), fLimit(limit), fcsp(NULL), fFoldChars(NULL), fFoldLength(0) {
83 U16_NEXT(fChars, fIndex, fLimit, originalC);
regeximp.h 397 const UChar *fChars;
  /external/chromium_org/third_party/skia/experimental/PdfViewer/
SkPdfFont.h 383 Type3FontChar* fChars;
415 fChars = new Type3FontChar[fLastChar - fFirstChar + 1];
417 memset(fChars, 0, sizeof(fChars[0]) * (fLastChar - fFirstChar + 1));
422 fChars[i].fWidth = (*widths)[i]->numberValue();
435 fChars[j - fFirstChar].fObj = fCharProcs->get((*diffs)[i]);
449 if (ch < fFirstChar || ch > fLastChar || !fChars[ch - fFirstChar].fObj) {
463 pdfContext->fPdfDoc->resolveReference(fChars[ch - fFirstChar].fObj),
471 fChars[ch - fFirstChar].fWidth),
473 return fChars[ch - fFirstChar].fWidth
    [all...]
  /external/skia/experimental/PdfViewer/
SkPdfFont.h 383 Type3FontChar* fChars;
415 fChars = new Type3FontChar[fLastChar - fFirstChar + 1];
417 memset(fChars, 0, sizeof(fChars[0]) * (fLastChar - fFirstChar + 1));
422 fChars[i].fWidth = (*widths)[i]->numberValue();
435 fChars[j - fFirstChar].fObj = fCharProcs->get((*diffs)[i]);
449 if (ch < fFirstChar || ch > fLastChar || !fChars[ch - fFirstChar].fObj) {
463 pdfContext->fPdfDoc->resolveReference(fChars[ch - fFirstChar].fObj),
471 fChars[ch - fFirstChar].fWidth),
473 return fChars[ch - fFirstChar].fWidth
    [all...]
  /external/icu/icu4c/source/layoutex/
ParagraphLayout.cpp 318 : fChars(chars), fCharCount(count),
418 fStyleRunInfo[run].glyphCount = fStyleRunInfo[run].engine->layoutChars(fChars, runStart, fStyleRunLimits[run] - runStart, fCharCount,
728 ubidi_setPara(fParaBidi, fChars, fCharCount, paragraphLevel, fEmbeddingLevels, &bidiStatus);
753 UScriptRun *sr = uscript_openRun(fChars, fCharCount, &scriptStatus);
804 const LEFontInstance *subFont = runFont->getSubFont(fChars, &offset, styleRunLimits[run], script, status);
987 (u_isWhitespace(fChars[charIndex]) ||
988 u_iscntrl(fChars[charIndex]))) {
995 UCharCharacterIterator *iter = new UCharCharacterIterator(fChars, fCharCount);
    [all...]

Completed in 258 milliseconds

1 2