HomeSort by relevance Sort by last modified time
    Searched refs:UChar (Results 276 - 300 of 1164) sorted by null

<<11121314151617181920>>

  /external/icu4c/test/intltest/
itrbnfp.cpp 150 us.insert(0, (UChar)'"');
151 us.append((UChar)'"');
163 us.insert(0, (UChar)'"');
164 us.append((UChar)'"');
  /external/webkit/JavaScriptCore/API/
JSStringRef.cpp 47 Vector<UChar, 1024> buffer(length);
48 UChar* p = buffer.data();
90 const UChar* d = string->characters();
102 return len == b->length() && 0 == memcmp(a->characters(), b->characters(), len * sizeof(UChar));
  /external/webkit/JavaScriptCore/runtime/
LiteralParser.h 67 const UChar* start;
68 const UChar* end;
97 const UChar* m_ptr;
98 const UChar* m_end;
  /external/webkit/JavaScriptCore/wtf/unicode/
Unicode.h 40 COMPILE_ASSERT(sizeof(UChar) == 2, UCharIsTwoBytes);
  /external/webkit/WebCore/platform/graphics/
FontData.h 47 virtual bool containsCharacters(const UChar*, int length) const = 0;
  /external/webkit/WebCore/platform/text/
TextStream.h 56 Vector<UChar> m_text;
StringBuilder.cpp 50 void StringBuilder::append(UChar c)
82 UChar* buffer;
85 UChar* p = buffer;
String.cpp 51 String::String(const UChar* str, unsigned len)
58 String::String(const UChar* str)
64 while (str[len] != UChar(0))
95 UChar* data;
98 memcpy(data, m_impl->characters(), m_impl->length() * sizeof(UChar));
99 memcpy(data + m_impl->length(), str.characters(), str.length() * sizeof(UChar));
113 UChar* data;
116 memcpy(data, m_impl->characters(), m_impl->length() * sizeof(UChar));
123 void String::append(UChar c)
130 UChar* data
    [all...]
  /external/webkit/WebCore/platform/text/qt/
TextCodecQt.h 44 virtual CString encode(const UChar*, size_t length, UnencodableHandling);
  /external/webkit/WebCore/svg/
SVGFitToViewBox.cpp 46 bool SVGFitToViewBox::parseViewBox(Document* doc, const UChar*& c, const UChar* end, float& x, float& y, float& w, float& h, bool validate)
90 const UChar* c = attr->value().characters();
91 const UChar* end = c + attr->value().length();
  /external/icu4c/common/
servrbf.cpp 23 #define UNDERSCORE_CHAR ((UChar)0x005f)
24 #define AT_SIGN_CHAR ((UChar)64)
25 #define PERIOD_CHAR ((UChar)46)
ucat.c 47 U_CAPI const UChar* U_EXPORT2
49 const UChar* s,
53 const UChar* result;
uchriter.cpp 23 UCharCharacterIterator::UCharCharacterIterator(const UChar* textPtr,
30 UCharCharacterIterator::UCharCharacterIterator(const UChar* textPtr,
38 UCharCharacterIterator::UCharCharacterIterator(const UChar* textPtr,
93 UChar
103 UChar
113 UChar
123 UChar
139 UChar
148 UChar
159 UChar
    [all...]
  /external/icu4c/i18n/unicode/
bms.h 117 * void boyerMooreExample(UCollator *collator, UChar *pattern, int32_t patternLen, UChar *target, int32_t targetLength)
205 const UChar *pattern, int32_t patternLength,
206 const UChar *target, int32_t targetLength,
269 bms_setTargetString(BMS *bms, const UChar *target, int32_t targetLength, UErrorCode *status);
ulocdata.h 148 ulocdata_getDelimiter(ULocaleData *uld, ULocaleDataDelimiterType type, UChar *result, int32_t resultLength, UErrorCode *status);
218 UChar *pattern,
240 UChar *separator,
  /external/icu4c/io/
ufmt_cmn.c 24 #include "unicode/uchar.h"
36 ufmt_digitvalue(UChar c)
51 ufmt_isdigit(UChar c,
63 ufmt_64tou(UChar *buffer,
72 UChar *left, *right, temp;
77 buffer[length++] = (UChar)(uselower ? TO_LC_DIGIT(digit)
100 ufmt_ptou(UChar *buffer,
132 ufmt_uto64(const UChar *buffer,
136 const UChar *limit;
163 ufmt_utop(const UChar *buffer
    [all...]
ustdio.c 41 static const UChar DELIMITERS [] = { DELIM_CR, DELIM_LF, 0x0000 };
45 static const UChar DELIMITERS [] = { DELIM_LF, 0x0000 };
124 static const UChar * u_file_translit(UFILE *f, const UChar *src, int32_t *count, UBool flush)
148 (f->fTranslit->length - f->fTranslit->pos)*sizeof(UChar));
160 f->fTranslit->buffer = (UChar*)uprv_malloc(newlen * sizeof(UChar));
164 f->fTranslit->buffer = (UChar*)uprv_realloc(f->fTranslit->buffer, newlen * sizeof(UChar));
269 u_fputs(const UChar *s
    [all...]
  /external/icu4c/samples/numfmt/
capi.c 12 static void uprintf(const UChar* str) {
22 UChar str[] = { 0x39, 0x38, 0x37, 0x36, 0x35, 0x34, 0x33,
24 UChar buf[256];
  /external/icu4c/test/cintltst/
cposxtst.c 54 const UChar FAIL[] = {0x46, 0x41, 0x49, 0x4C, 0x00}; /* "FAIL" */
72 UChar exp[128];
76 const UChar* ustr;
cdattst.c 61 UChar* result = NULL;
64 UChar temp[50];
162 result=(UChar*)malloc(sizeof(UChar) * resultlength);
198 UChar *fmtted;
271 result=(UChar*)malloc(sizeof(UChar) * resultlength);
384 static const UChar trdfZone[] = { 0x0055, 0x0053, 0x002F, 0x0050, 0x0061, 0x0063, 0x0069, 0x0066, 0x0069, 0x0063, 0 }; /* US/Pacific */
386 static const UChar minutesPatn[] = { 0x006D, 0x006D, 0 }; /* "mm" */
387 static const UChar monthLongPatn[] = { 0x004D, 0x004D, 0x004D, 0x004D, 0 }; /* "MMMM" *
    [all...]
  /external/webkit/JavaScriptCore/wrec/
CharacterClassConstructor.cpp 38 void CharacterClassConstructor::addSorted(Vector<UChar>& matches, UChar ch)
64 void CharacterClassConstructor::addSortedRange(Vector<CharacterRange>& ranges, UChar lo, UChar hi)
111 void CharacterClassConstructor::put(UChar ch)
128 UChar lo = m_charBuffer;
129 UChar hi = ch;
142 char asciiHi = std::min(hi, (UChar)0x7f);
153 UChar unicodeCurr = std::max(lo, (UChar)0x80)
    [all...]
  /external/webkit/JavaScriptCore/yarr/
RegexJIT.h 54 typedef int (*RegexJITCode)(const UChar* input, unsigned start, unsigned length, int* output) YARR_CALL;
74 int execute(const UChar* input, unsigned start, unsigned length, int* output)
86 inline int executeRegex(RegexCodeBlock& jitObject, const UChar* input, unsigned start, unsigned length, int* output, int outputArraySize)
  /external/webkit/WebCore/platform/network/
ProtectionSpaceHash.h 45 unsigned codeCount = sizeof(hashCodes) / sizeof(UChar);
48 codeCount -= sizeof(hashCodes[0]) / sizeof(UChar);
49 return StringImpl::computeHash(reinterpret_cast<UChar*>(hashCodes), codeCount);
  /external/webkit/WebCore/rendering/
SVGInlineTextBox.h 68 void paintCharacters(RenderObject::PaintInfo&, int tx, int ty, const SVGChar&, const UChar* chars, int length, SVGTextPaintInfo&);
71 void paintSelection(int boxStartOffset, const SVGChar&, const UChar*, int length, GraphicsContext*, RenderStyle*, const Font&);
88 bool chunkSelectionStartEnd(const UChar* chunk, int chunkLength, int& selectionStart, int& selectionEnd);
  /external/icu4c/i18n/
rbnf.cpp 14 #include "unicode/uchar.h"
38 static const UChar gPercentPercent[] =
45 static const UChar gLenientParse[] =
49 static const UChar gSemiColon = 0x003B;
50 static const UChar gSemiPercent[] =
98 virtual const UChar* getRuleSetName(int32_t index) const = 0;
100 virtual const UChar* getLocaleName(int32_t index) const = 0;
101 virtual const UChar* getDisplayName(int32_t localeIndex, int32_t ruleIndex) const = 0;
103 virtual int32_t indexForLocale(const UChar* locale) const;
104 virtual int32_t indexForRuleSet(const UChar* ruleset) const
    [all...]

Completed in 1433 milliseconds

<<11121314151617181920>>