HomeSort by relevance Sort by last modified time
    Searched refs:UChar (Results 76 - 100 of 1475) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/webkit/Source/WebCore/svg/
SVGTransformable.h 46 static bool parseTransformAttribute(SVGTransformList&, const UChar*& ptr, const UChar* end, TransformParsingMode mode = ClearList);
47 static bool parseTransformValue(unsigned type, const UChar*& ptr, const UChar* end, SVGTransform&);
  /external/webkit/Source/WebCore/platform/text/
TextBreakIterator.h 37 TextBreakIterator* characterBreakIterator(const UChar*, int length);
43 TextBreakIterator* cursorMovementIterator(const UChar*, int length);
45 TextBreakIterator* wordBreakIterator(const UChar*, int length);
46 TextBreakIterator* acquireLineBreakIterator(const UChar*, int length);
48 TextBreakIterator* sentenceBreakIterator(const UChar*, int length);
63 LazyLineBreakIterator(const UChar* string = 0, int length = 0)
76 const UChar* string() const { return m_string; }
86 void reset(const UChar* string, int length)
97 const UChar* m_string;
  /external/icu4c/common/unicode/
ucharstrie.h 37 * Traverses a UChar-serialized data structure with minimal state,
53 * The trieUChars must contain a copy of a UChar sequence from the UCharsTrieBuilder,
54 * starting with the first UChar of that sequence.
61 * @param trieUChars The UChar array that contains the serialized trie.
64 UCharsTrie(const UChar *trieUChars)
76 * but not the UChar array which will be shared. (Shallow copy.)
110 const UChar *uchars;
111 const UChar *pos;
149 * and whether another input UChar can continue a matching string.
156 * Traverses the trie from the initial state for this input UChar
    [all...]
appendable.h 35 * a UnicodeString, a UChar[] array, a UnicodeSet, or any other object
38 * Implementation classes must implement at least appendCodeUnit(UChar).
63 virtual UBool appendCodeUnit(UChar c) = 0;
67 * The default implementation calls appendCodeUnit(UChar) once or twice.
76 * The default implementation calls appendCodeUnit(UChar) for each code unit.
82 virtual UBool appendString(const UChar *s, int32_t length);
111 * UChar* buffer = app.getAppendBuffer(..., &capacity);
139 virtual UChar *getAppendBuffer(int32_t minCapacity,
141 UChar *scratch, int32_t scratchCapacity,
176 virtual UBool appendCodeUnit(UChar c)
    [all...]
  /frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
fastcodemb.h 56 Int Sad8x8(UChar *rec, UChar *prev, Int lx);
57 Int getBlockSum(UChar *rec, Int lx);
69 UChar bitmapcol[ ], UChar *bitmaprow, UInt *bitmapzz,
73 UChar bitmapcol[ ], UChar *bitmaprow, UInt *bitmapzz,
77 UChar *bitmaprow, UInt *bitmapzz, Int dummy);
80 UChar *bitmaprow, UInt *bitmapzz, Int dc_scaler);
83 UChar bitmapcol[ ], UChar *bitmaprow, UInt *bitmapzz
    [all...]
  /external/icu4c/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,
273 ucurr_isAvailable(const UChar* isoCode,
320 UChar* buff,
    [all...]
  /external/valgrind/main/VEX/priv/
host_s390_defs.c 1012 static __inline__ UChar *
1013 emit_2bytes(UChar *p, ULong val)
1015 return (UChar *)__builtin_memcpy(p, ((UChar *)&val) + 6, 2) + 2;
1019 static __inline__ UChar *
1020 emit_4bytes(UChar *p, ULong val)
1022 return (UChar *)__builtin_memcpy(p, ((UChar *)&val) + 4, 4) + 4;
1026 static __inline__ UChar *
1027 emit_6bytes(UChar *p, ULong val
    [all...]
  /external/webkit/Source/JavaScriptCore/wtf/unicode/wince/
UnicodeWinCE.h 122 bool isSpace(UChar);
123 bool isLetter(UChar);
124 bool isPrintableChar(UChar);
125 bool isUpper(UChar);
126 bool isLower(UChar);
127 bool isPunct(UChar);
128 bool isDigit(UChar);
129 bool isAlphanumeric(UChar);
130 inline bool isSeparatorSpace(UChar c) { return category(c) == Separator_Space; }
131 inline bool isHighSurrogate(UChar c) { return (c & 0xfc00) == 0xd800;
    [all...]
  /external/icu4c/common/
ucnv_err.c 58 const UChar* codeUnits,
87 const UChar* codeUnits,
108 const UChar* codeUnits,
135 const UChar *codeUnits,
142 UChar valueString[VALUE_STRING_LENGTH];
146 const UChar *myValueSource = NULL;
175 valueString[valueStringLength++] = (UChar) UNICODE_PERCENT_SIGN_CODEPOINT; /* adding % */
176 valueString[valueStringLength++] = (UChar) UNICODE_U_CODEPOINT; /* adding U */
187 valueString[valueStringLength++] = (UChar) UNICODE_RS_CODEPOINT; /* adding \ */
188 valueString[valueStringLength++] = (UChar) UNICODE_U_LOW_CODEPOINT; /* adding u *
    [all...]
ustrfmt.c 13 * Fills in a UChar* string with the radix-based representation of a
17 * @param buffer UChar buffer to receive result
28 uprv_itou (UChar * buffer, int32_t capacity,
34 UChar temp;
38 buffer[length++]=(UChar)(digit<=9?(0x0030+digit):(0x0030+digit+7));
43 buffer[length++] = (UChar) 0x0030;/*zero padding */
47 buffer[length] = (UChar) 0x0000;
  /external/webkit/Source/WebCore/page/
ContentSecurityPolicy.cpp 40 bool isDirectiveNameCharacter(UChar c)
45 bool isDirectiveValueCharacter(UChar c)
50 bool isSourceCharacter(UChar c)
55 bool isHostCharacter(UChar c)
60 bool isOptionValueCharacter(UChar c)
65 bool isSchemeContinuationCharacter(UChar c)
72 static bool skipExactly(const UChar*& position, const UChar* end, UChar delimiter)
81 template<bool characterPredicate(UChar)>
    [all...]
  /external/icu4c/i18n/
ucurrimp.h 26 uprv_getStaticCurrencyName(const UChar* iso, const char* loc,
54 UChar* result,
  /external/icu4c/samples/translit/
unaccent.h 38 UChar unaccent(UChar c) const;
unaccent.cpp 28 UChar UnaccentTransliterator::unaccent(UChar c) const {
37 return (UChar) t->normalizer.next();
48 UChar c = text.charAt(index.start);
49 UChar d = unaccent(c);
  /external/icu4c/test/cintltst/
cdtrgtst.h 42 void aux917(UDateFormat *fmt, UChar* str );
47 UChar* myFormatit(UDateFormat* datdef, UDate d1);
  /external/icu4c/test/intltest/
decoll.h 41 static const UChar testSourceCases[][MAX_TOKEN_LEN];
42 static const UChar testTargetCases[][MAX_TOKEN_LEN];
escoll.h 40 static const UChar testSourceCases[][MAX_TOKEN_LEN];
41 static const UChar testTargetCases[][MAX_TOKEN_LEN];
ficoll.h 39 static const UChar testSourceCases[][MAX_TOKEN_LEN];
40 static const UChar testTargetCases[][MAX_TOKEN_LEN];
lcukocol.h 31 static const UChar testSourceCases[][MAX_TOKEN_LEN];
32 static const UChar testTargetCases[][MAX_TOKEN_LEN];
trcoll.h 40 static const UChar testSourceCases[][MAX_TOKEN_LEN];
41 static const UChar testTargetCases[][MAX_TOKEN_LEN];
  /external/webkit/Source/JavaScriptCore/wtf/brew/
StringBrew.cpp 36 // It is safe to cast AECHAR to UChar as both of them use 16 bits representation.
37 const UChar* str = reinterpret_cast<const UChar*>(string);
  /external/webkit/Source/WebCore/platform/text/mac/
ShapeArabic.h 37 int32_t shapeArabic(const UChar *source, int32_t sourceLength, UChar *dest, int32_t destCapacity, uint32_t options, UErrorCode *pErrorCode);
  /external/webkit/Source/WebCore/rendering/mathml/
RenderMathMLFenced.h 44 UChar m_open;
45 UChar m_close;
  /external/icu4c/samples/translit/answers/
unaccent.cpp 26 UChar UnaccentTransliterator::unaccent(UChar c) const {
35 return (UChar) t->normalizer.next();
46 UChar c = text.charAt(index.start);
47 UChar d = unaccent(c);
  /external/icu4c/test/perf/strsrchperf/
strsrchperf.h 20 typedef void (*StrSrchFn) (BoyerMooreSearch * bms, const UChar *src, int32_t srcLen, const UChar *pttrn, int32_t pttrnLen, UErrorCode *status);
22 typedef void (*StrSrchFn)(UStringSearch* srch, const UChar* src,int32_t srcLen, const UChar* pttrn, int32_t pttrnLen, UErrorCode* status);
28 const UChar* src;
30 const UChar* pttrn;
56 StringSearchPerfFunction(StrSrchFn func, BoyerMooreSearch *search, const UChar *source, int32_t sourceLen, const UChar *pattern, int32_t patternLen) {
65 StringSearchPerfFunction(StrSrchFn func, UStringSearch* search, const UChar* source,int32_t sourceLen, const UChar* pattern, int32_t patternLen)
    [all...]

Completed in 1007 milliseconds

1 2 34 5 6 7 8 91011>>