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

1 2 3 45 6 7 8 91011>>

  /external/icu4c/extra/uconv/unicode/
uwmsg.h 27 U_CFUNC const UChar* u_wmsg_errorName(UErrorCode err);
  /external/icu4c/i18n/
wintzimpl.h 32 uprv_getWindowsTimeZoneInfo(TIME_ZONE_INFORMATION *zoneInfo, const UChar *icuid, int32_t length);
unesctrn.h 47 UChar* spec; // owned; may not be NULL
63 const UChar *spec);
  /external/icu4c/samples/layout/
ucreader.cpp 15 const UChar *uc_readFile(const char *fileName, gs_guiSupport *guiSupport, int32_t *charCount)
  /external/icu4c/test/cintltst/
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/opencore/codecs_v2/audio/aac/dec/src/
s_bit_buffer.h 70 UChar *char_ptr;
  /external/sqlite/android/
PhonebookIndex.h 41 int32_t GetPhonebookIndex(UCharIterator * iter, const char * locale, UChar * out, int32_t size,
  /external/webkit/WebCore/editing/
TextIterator.h 37 inline bool isCollapsibleWhitespace(UChar c)
49 UChar* plainTextToMallocAllocatedBuffer(const Range*, unsigned& bufferLength, bool isDisplayString);
80 const UChar* characters() const { return m_textCharacters; }
98 void emitCharacter(UChar, Node* textNode, Node* offsetBaseNode, int textStartOffset, int textEndOffset);
121 const UChar* m_textCharacters;
132 UChar m_lastCharacter;
135 UChar m_singleCharacterBuffer;
164 const UChar* characters() const { return m_textCharacters; }
173 void emitCharacter(UChar, Node*, int startOffset, int endOffset);
194 const UChar* m_textCharacters
    [all...]
  /external/webkit/WebCore/platform/chromium/
LinkHashChromium.cpp 38 LinkHash visitedLinkHash(const UChar* url, unsigned length)
  /external/webkit/WebCore/platform/text/wx/
StringWx.cpp 44 // ICU's UChar is 16bit wide, UTF-16, and the code below counts on it, so
46 wxCOMPILE_TIME_ASSERT(sizeof(UChar) == 2, UCharSizeMustBe16Bit);
48 #if SIZEOF_WCHAR_T == 2 // wchar_t==UChar
50 const UChar* str = wxstr.wc_str();
73 // and convert wxString to UTF-16 (=UChar*):
74 const UChar* str = (const UChar*)utf16buf.data();
  /external/webkit/WebCore/svg/
SVGStringList.cpp 48 void SVGStringList::parse(const String& data, UChar delimiter)
54 const UChar* ptr = data.characters();
55 const UChar* end = ptr + data.length();
57 const UChar* start = ptr;
SVGFitToViewBox.h 37 bool parseViewBox(Document*, const UChar*& start, const UChar* end, float& x, float& y, float& w, float& h, bool validate = true);
  /frameworks/base/media/libstagefright/codecs/aacdec/
s_bit_buffer.h 71 UChar *char_ptr;
  /external/icu4c/test/intltest/
testidna.h 30 (U_EXPORT2 *TestFunc) ( const UChar *src, int32_t srcLength,
31 UChar *dest, int32_t destCapacity,
35 (U_EXPORT2 *CompareFunc) (const UChar *s1, int32_t s1Len,
36 const UChar *s2, int32_t s2Len,
79 void debug(const UChar* src, int32_t srcLength, int32_t options);
81 void testAPI(const UChar *src, const UChar *expected, const char *testName,
85 void testCompare(const UChar* s1, int32_t s1Len,
86 const UChar* s2, int32_t s2Len,
93 void testChaining(const UChar* src,int32_t numIterations,const char* testName
    [all...]
  /external/webkit/JavaScriptCore/parser/
Lexer.h 43 static UChar convertUnicode(int c1, int c2, int c3, int c4);
54 bool scanRegExp(const Identifier*& pattern, const Identifier*& flags, UChar patternPrefix = 0);
75 void record16(UChar);
80 const UChar* currentCharacter() const;
82 const Identifier* makeIdentifier(const UChar* characters, size_t length);
91 Vector<UChar> m_buffer16;
97 const UChar* m_code;
98 const UChar* m_codeStart;
99 const UChar* m_codeEnd;
116 Vector<UChar> m_codeWithoutBOMs
    [all...]
  /external/webkit/WebCore/platform/text/
PlatformString.h 69 String(const UChar*, unsigned length);
70 String(const UChar*); // Specifically for null terminated UTF-16
88 static String adopt(Vector<UChar>& vector) { return StringImpl::adopt(vector); }
95 const UChar* characters() const;
96 const UChar* charactersWithNullTermination();
98 UChar operator[](unsigned i) const; // if i >= length(), returns 0
101 bool contains(UChar c) const { return find(c) != -1; }
105 int find(UChar c, int start = 0) const
114 int reverseFind(UChar c, int start = -1) const
126 void append(UChar);
    [all...]
StringImpl.h 59 typedef bool (*CharacterMatchFunctionPtr)(UChar);
69 // This constructor adopts the UChar* without copying the buffer.
70 StringImpl(const UChar*, unsigned length);
72 // This constructor assumes that 'this' was allocated with a UChar buffer of size 'length' at the end.
78 typedef CrossThreadRefCounted<OwnFastMallocPtr<UChar> > SharedUChar;
83 static PassRefPtr<StringImpl> create(const UChar*, unsigned length);
86 static PassRefPtr<StringImpl> createUninitialized(unsigned length, UChar*& data);
90 static PassRefPtr<StringImpl> createStrippingNullCharacters(const UChar*, unsigned length);
92 static PassRefPtr<StringImpl> adopt(Vector<UChar>&);
99 const UChar* characters() { return m_data;
    [all...]
  /external/icu4c/common/unicode/
chariter.h 79 * UChar c;
150 virtual UChar nextPostInc(void) = 0;
231 * UChar c;
250 * UChar c;
267 * UChar u=it.previous();
284 * void processChar( UChar c )
295 * for(UChar c = iter.first(); c != CharacterIterator.DONE; c = iter.next()) {
306 * for(UChar c = iter.last(); c != CharacterIterator.DONE; c = iter.previous()) {
318 * UChar c;
381 virtual UChar first(void) = 0
    [all...]
ucat.h 141 * @return a pointer to a zero-terminated UChar array which lives in
150 U_STABLE const UChar* U_EXPORT2
152 const UChar* s,
  /external/webkit/JavaScriptCore/pcre/
pcre.h 58 JSRegExp* jsRegExpCompile(const UChar* pattern, int patternLength,
63 const UChar* subject, int subjectLength, int startOffset,
  /external/webkit/WebCore/html/
DateComponents.h 95 bool parseMonth(const UChar* src, unsigned length, unsigned start, unsigned& end);
97 bool parseDate(const UChar* src, unsigned length, unsigned start, unsigned& end);
99 bool parseWeek(const UChar* src, unsigned length, unsigned start, unsigned& end);
101 bool parseTime(const UChar* src, unsigned length, unsigned start, unsigned& end);
103 bool parseDateTimeLocal(const UChar* src, unsigned length, unsigned start, unsigned& end);
105 bool parseDateTime(const UChar* src, unsigned length, unsigned start, unsigned& end);
143 bool parseYear(const UChar* src, unsigned length, unsigned start, unsigned& end);
146 bool parseTimeZone(const UChar* src, unsigned length, unsigned start, unsigned& end);
  /external/webkit/WebCore/platform/text/haiku/
StringHaiku.cpp 37 const UChar* str = reinterpret_cast<const UChar*>(bstring.String());
  /external/icu4c/common/
bmpset.h 48 const UChar *span(const UChar *s, const UChar *limit, USetSpanCondition spanCondition) const;
55 const UChar *spanBack(const UChar *s, const UChar *limit, USetSpanCondition spanCondition) const;
  /external/icu4c/io/
uscanf.c 51 const UChar *patternSpecification,
70 UChar *pattern;
71 UChar patBuffer[UFMT_DEFAULT_BUFFER_SIZE];
76 pattern = (UChar *)uprv_malloc(size * sizeof(UChar));
99 const UChar *patternSpecification,

Completed in 494 milliseconds

1 2 3 45 6 7 8 91011>>