HomeSort by relevance Sort by last modified time
    Searched refs:UChar (Results 126 - 150 of 1775) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/chromium_org/third_party/icu/source/io/
ufile.h 38 UChar *buffer; /* Beginning of buffer */
48 UChar *fPos; /* current pos in fUCBuffer */
49 const UChar *fLimit; /* data limit in fUCBuffer */
50 UChar *fBuffer; /* Place to write the string */
68 UChar fUCBuffer[UFILE_UCHARBUFFER_SIZE];/* buffer used for toUnicode */
79 u_file_write_flush( const UChar *chars,
99 ufile_getch(UFILE *f, UChar *ch);
uprintf.h 37 UChar fOrigSpec; /* Conversion specification */
38 UChar fSpec; /* Conversion specification */
39 UChar fPadChar; /* Padding character */
55 const UChar *str,
61 const UChar *result,
71 UChar *str; /* Place to write the string */
92 const UChar *fmt,
  /external/icu4c/io/
ufile.h 38 UChar *buffer; /* Beginning of buffer */
48 UChar *fPos; /* current pos in fUCBuffer */
49 const UChar *fLimit; /* data limit in fUCBuffer */
50 UChar *fBuffer; /* Place to write the string */
68 UChar fUCBuffer[UFILE_UCHARBUFFER_SIZE];/* buffer used for toUnicode */
79 u_file_write_flush( const UChar *chars,
99 ufile_getch(UFILE *f, UChar *ch);
uprintf.h 37 UChar fOrigSpec; /* Conversion specification */
38 UChar fSpec; /* Conversion specification */
39 UChar fPadChar; /* Padding character */
55 const UChar *str,
61 const UChar *result,
71 UChar *str; /* Place to write the string */
92 const UChar *fmt,
  /external/chromium_org/third_party/icu/source/i18n/unicode/
ucurr.h 54 UChar* buff,
98 ucurr_register(const UChar* isoCode,
133 U_STABLE const UChar* U_EXPORT2
134 ucurr_getName(const UChar* currency,
157 U_STABLE const UChar* U_EXPORT2
158 ucurr_getPluralName(const UChar* currency,
175 ucurr_getDefaultFractionDigits(const UChar* currency,
188 ucurr_getRoundingIncrement(const UChar* currency,
288 UChar* buff,
  /external/chromium_org/third_party/icu/source/test/cintltst/
cdtdptst.c 51 UChar *pattern;
53 UChar *s;
58 pattern=(UChar*)malloc(sizeof(UChar) * (strlen("EEE MMM dd HH:mm:ss.SSS zzz yyyy G")+1 ));
72 s=(UChar*)malloc(sizeof(UChar) * (strlen("03-Apr-04 2:20:47 o'clock AM PST")+1) );
116 UChar *s;
117 UChar *fmtChars;
129 s=(UChar*)malloc(sizeof(UChar) * (strlen("01/01/1997 10:11:42 AM")+1) )
    [all...]
ccolltst.h 27 void reportCResult( const UChar source[], const UChar target[],
34 UChar* appendCompareResult(UCollationResult result, UChar* target);
cnormtst.h 35 /* static void assertEqual(const UChar* result, const UChar* expected, int32_t index);
37 static void assertEqual(const UChar* result, const char* expected, int32_t index);
  /external/icu4c/test/cintltst/
cdtdptst.c 51 UChar *pattern;
53 UChar *s;
58 pattern=(UChar*)malloc(sizeof(UChar) * (strlen("EEE MMM dd HH:mm:ss.SSS zzz yyyy G")+1 ));
72 s=(UChar*)malloc(sizeof(UChar) * (strlen("03-Apr-04 2:20:47 o'clock AM PST")+1) );
116 UChar *s;
117 UChar *fmtChars;
129 s=(UChar*)malloc(sizeof(UChar) * (strlen("01/01/1997 10:11:42 AM")+1) )
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/
SurrogatePairAwareTextIterator.h 31 // The passed in UChar pointer starts at 'currentCharacter'. The iterator operatoes on the range [currentCharacter, lastCharacter].
32 // 'endCharacter' denotes the maximum length of the UChar array, which might exceed 'lastCharacter'.
33 SurrogatePairAwareTextIterator(const UChar*, int currentCharacter, int lastCharacter, int endCharacter);
56 const UChar* characters() const { return m_characters; }
62 const UChar* m_characters;
  /external/chromium_org/third_party/icu/source/common/unicode/
urep.h 54 * Function pointer that returns the number of UChar code units in
64 * Function pointer that returns a UChar code units at the given
70 * @param offset The index at which to fetch the UChar (code unit).
71 * @return The UChar (code unit) at offset, or U+FFFF if the offset is out of bounds.
74 UChar (*charAt)(const UReplaceable* rep,
109 const UChar* text,
128 UChar* dst);
  /external/chromium_org/third_party/icu/source/test/intltest/
sfwdchit.h 16 SimpleFwdCharIterator(UChar *s, int32_t len, UBool adopt = FALSE);
44 virtual UChar nextPostInc(void);
71 UChar *fStart, *fEnd, *fCurrent;
  /external/icu4c/common/unicode/
urep.h 54 * Function pointer that returns the number of UChar code units in
64 * Function pointer that returns a UChar code units at the given
70 * @param offset The index at which to fetch the UChar (code unit).
71 * @return The UChar (code unit) at offset, or U+FFFF if the offset is out of bounds.
74 UChar (*charAt)(const UReplaceable* rep,
109 const UChar* text,
128 UChar* dst);
  /external/icu4c/i18n/unicode/
udateintervalformat.h 108 const UChar* skeleton,
110 const UChar* tzID,
174 UChar* result,
  /external/icu4c/samples/numfmt/
util.cpp 38 target += (UChar)(digit < 10 ? 0x30 + digit : 0x41 - 10 + digit);
47 target += (UChar)U_DQUOTE;
49 UChar ch = source[i];
51 (target += (UChar)U_BACKSLASH) += (UChar)U_SMALL_U;
57 target += (UChar)U_DQUOTE;
99 return UnicodeString((UChar)U_DQUOTE).append(f.getString()).append((UChar)U_DQUOTE);
104 UnicodeString result((UChar)U_LEFT_SQUARE_BRACKET);
107 (result += (UChar)U_COMMA) += (UChar)U_SPACE
    [all...]
  /external/icu4c/test/intltest/
sfwdchit.h 16 SimpleFwdCharIterator(UChar *s, int32_t len, UBool adopt = FALSE);
44 virtual UChar nextPostInc(void);
71 UChar *fStart, *fEnd, *fCurrent;
  /external/icu4c/common/
normalizer2impl.h 61 isHangulWithoutJamoT(UChar c) {
76 static inline int32_t decompose(UChar32 c, UChar buffer[3]) {
80 buffer[0]=(UChar)(JAMO_L_BASE+c/JAMO_V_COUNT);
81 buffer[1]=(UChar)(JAMO_V_BASE+c%JAMO_V_COUNT);
85 buffer[2]=(UChar)(JAMO_T_BASE+c2);
94 static inline void getRawDecomposition(UChar32 c, UChar buffer[2]) {
100 buffer[0]=(UChar)(JAMO_L_BASE+c/JAMO_V_COUNT);
101 buffer[1]=(UChar)(JAMO_V_BASE+c%JAMO_V_COUNT);
104 buffer[1]=(UChar)(JAMO_T_BASE+c2);
128 UChar *getStart() { return start;
    [all...]
ustrfmt.h 14 uprv_itou (UChar * buffer, int32_t capacity, uint32_t i, uint32_t radix, int32_t minwidth);
  /external/chromium_org/third_party/icu/source/common/
normalizer2impl.h 60 isHangulWithoutJamoT(UChar c) {
75 static inline int32_t decompose(UChar32 c, UChar buffer[3]) {
79 buffer[0]=(UChar)(JAMO_L_BASE+c/JAMO_V_COUNT);
80 buffer[1]=(UChar)(JAMO_V_BASE+c%JAMO_V_COUNT);
84 buffer[2]=(UChar)(JAMO_T_BASE+c2);
109 UChar *getStart() { return start; }
110 UChar *getLimit() { return limit; }
113 UBool equals(const UChar *start, const UChar *limit) const;
116 void setLastChar(UChar c)
    [all...]
ustrfmt.h 14 uprv_itou (UChar * buffer, int32_t capacity, uint32_t i, uint32_t radix, int32_t minwidth);
  /external/chromium_org/third_party/WebKit/Source/core/platform/text/
TextBreakIterator.h 38 TextBreakIterator* cursorMovementIterator(const UChar*, int length);
41 TextBreakIterator* wordBreakIterator(const UChar*, int length);
42 TextBreakIterator* acquireLineBreakIterator(const LChar*, int length, const AtomicString& locale, const UChar* priorContext, unsigned priorContextLength);
43 TextBreakIterator* acquireLineBreakIterator(const UChar*, int length, const AtomicString& locale, const UChar* priorContext, unsigned priorContextLength);
45 TextBreakIterator* sentenceBreakIterator(const UChar*, int length);
87 UChar lastCharacter() const
93 UChar secondToLastCharacter() const
99 void setPriorContext(UChar last, UChar secondToLast
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGTransformable.h 43 static bool parseTransformAttribute(SVGTransformList&, const UChar*& ptr, const UChar* end, TransformParsingMode = ClearList);
46 static bool parseTransformValue(unsigned type, const UChar*& ptr, const UChar* end, SVGTransform&);
  /external/chromium_org/third_party/cld/encodings/compact_lang_det/win/
cld_unicodetext.h 35 const UChar* text, bool is_plain_text,
  /external/chromium_org/third_party/icu/source/i18n/
regextxt.cpp 16 U_CFUNC UChar U_CALLCONV
34 return (UChar)c;
40 U_CFUNC UChar U_CALLCONV
42 return ((UChar *)context)[offset];
wintzimpl.h 32 uprv_getWindowsTimeZoneInfo(TIME_ZONE_INFORMATION *zoneInfo, const UChar *icuid, int32_t length);

Completed in 1501 milliseconds

1 2 3 4 56 7 8 91011>>