HomeSort by relevance Sort by last modified time
    Searched refs:chars (Results 151 - 175 of 397) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/webkit/WebCore/bridge/objc/
objc_utility.mm 201 unichar *chars;
203 chars = (unichar *)malloc(sizeof(unichar)*length);
204 [nsstring getCharacters:chars];
205 UString u((const UChar*)chars, length);
207 free((void *)chars);
  /external/chromium/third_party/icu/source/test/thaitest/
thaitest.cpp 397 int generateFile(const UChar *chars, int32_t length) {
399 UCharCharacterIterator *noSpaceIter = new UCharCharacterIterator(chars, length);
416 printf("%s", u_strToUTF8(outbuf, sizeof(outbuf), &strlength, &chars[prevbreak],
418 if (nextbreak > 0 && complexContext.contains(chars[nextbreak-1])
419 && complexContext.contains(chars[nextbreak])) {
  /external/icu4c/test/thaitest/
thaitest.cpp 397 int generateFile(const UChar *chars, int32_t length) {
399 UCharCharacterIterator *noSpaceIter = new UCharCharacterIterator(chars, length);
416 printf("%s", u_strToUTF8(outbuf, sizeof(outbuf), &strlength, &chars[prevbreak],
418 if (nextbreak > 0 && complexContext.contains(chars[nextbreak-1])
419 && complexContext.contains(chars[nextbreak])) {
  /external/v8/samples/
lineprocessor.cc 327 char* chars = new char[size + 1]; local
328 chars[size] = '\0';
330 int read = fread(&chars[i], 1, size - i, file);
334 v8::Handle<v8::String> result = v8::String::New(chars, size);
335 delete[] chars;
shell.cc 207 char* chars = new char[size + 1]; local
208 chars[size] = '\0';
210 int read = fread(&chars[i], 1, size - i, file);
214 v8::Handle<v8::String> result = v8::String::New(chars, size);
215 delete[] chars;
  /dalvik/vm/
InlineNative.c 131 ArrayObject* chars; local
144 chars = (ArrayObject*)
147 pResult->i = ((const u2*) chars->contents)[arg1 + offset];
416 * to search is described by "chars", "offset", and "count".
433 const u2* chars = (const u2*) charArray->contents; local
440 chars += offset;
448 if (chars[start] == ch)
454 const u2* ptr = chars + start;
455 const u2* endPtr = chars + count;
458 return (ptr-1) - chars;
    [all...]
Ddm.c 300 const u2* chars; local
308 chars = dvmStringChars(nameObj);
311 chars = NULL;
325 set2BE((u1*) (outChars++), *chars++);
346 const u2* chars = dvmStringChars(newName); local
352 * (xb) string chars
361 set2BE((u1*) (outChars++), *chars++);
  /external/webkit/WebCore/svg/
SVGFont.cpp 139 static inline bool isCompatibleArabicForm(const SVGGlyphIdentifier& identifier, const Vector<SVGGlyphIdentifier::ArabicForm>& chars, unsigned startPosition, unsigned endPosition)
141 if (chars.isEmpty())
144 Vector<SVGGlyphIdentifier::ArabicForm>::const_iterator it = chars.begin() + startPosition;
145 Vector<SVGGlyphIdentifier::ArabicForm>::const_iterator end = chars.begin() + endPosition;
147 ASSERT(end <= chars.end());
157 const Vector<SVGGlyphIdentifier::ArabicForm>& chars, unsigned startPosition, unsigned endPosition)
207 return isCompatibleArabicForm(identifier, chars, startPosition, endPosition);
246 Vector<SVGGlyphIdentifier::ArabicForm> chars(charactersWithArabicForm(text, run.rtl()));
286 if (identifier.isValid && isCompatibleGlyph(identifier, isVerticalText, language, chars, i, i + identifier.nameLength)) {
  /libcore/luni/src/main/java/org/apache/xml/serializer/
ToHTMLStream.java 1173 final char[] chars = m_attrBuff; local
1396 final char[] chars = m_attrBuff; local
    [all...]
  /external/chromium/net/flip/
flip_frame_builder.cc 73 char* chars = reinterpret_cast<char*>(*iter); local
74 result->assign(chars, len);
  /external/chromium/third_party/icu/public/i18n/unicode/
uspoof.h 186 * single script (plus chars from the common and inherited scripts.)
415 * @param chars A Unicode Set containing the list of
424 uspoof_setAllowedChars(USpoofChecker *sc, const USet *chars, UErrorCode *status);
462 * @param chars A Unicode Set containing the list of
471 uspoof_setAllowedUnicodeSet(USpoofChecker *sc, const UnicodeSet *chars, UErrorCode *status);
    [all...]
  /external/chromium/third_party/icu/source/io/
ustdio.c 294 u_file_write_flush(const UChar *chars,
302 const UChar *mySource = chars;
311 count = u_strlen(chars);
318 mySource = u_file_translit(f, chars, &count, flushTranslit);
374 /* return # of chars written */
379 u_file_write( const UChar *chars,
383 return u_file_write_flush(chars,count,f,FALSE,FALSE);
680 u_file_read( UChar *chars,
704 memcpy(chars + read, str->fPos, dataSize * sizeof(UChar));
  /external/icu4c/i18n/unicode/
uspoof.h 199 * single script (plus chars from the common and inherited scripts.)
447 * @param chars A Unicode Set containing the list of
456 uspoof_setAllowedChars(USpoofChecker *sc, const USet *chars, UErrorCode *status);
494 * @param chars A Unicode Set containing the list of
503 uspoof_setAllowedUnicodeSet(USpoofChecker *sc, const UnicodeSet *chars, UErrorCode *status);
    [all...]
  /external/icu4c/io/
ustdio.c 294 u_file_write_flush(const UChar *chars,
302 const UChar *mySource = chars;
311 count = u_strlen(chars);
318 mySource = u_file_translit(f, chars, &count, flushTranslit);
374 /* return # of chars written */
379 u_file_write( const UChar *chars,
383 return u_file_write_flush(chars,count,f,FALSE,FALSE);
680 u_file_read( UChar *chars,
704 memcpy(chars + read, str->fPos, dataSize * sizeof(UChar));
  /external/v8/test/mjsunit/
escape.js 36 // Check the unescape chars are not escaped
40 // Check that null chars are escaped and do not terminate the string
51 // Check first 1000 chars individually for escaped/not escaped
61 // Check all chars up to 1000 in groups of 10 using unescape as a check
char-escape.js 40 // Do the single escape chars have the right value?
51 // Do the hex and unicode escape chars have the right value?
  /libcore/luni/src/main/java/java/lang/
StringBuilder.java 244 * @param chars
249 public StringBuilder append(char[] chars) {
250 append0(chars);
  /libcore/luni/src/main/java/org/apache/xalan/templates/
ElemExtensionDecl.java 225 char[] chars = tl.getChars(); local
226 scriptSrc = new String(chars);
309 char[] chars = tl.getChars();
311 scriptSrc = new String(chars);
  /libcore/luni/src/main/native/
NativeDecimalFormat.cpp 161 UniquePtr<UChar[]> chars; local
163 uint32_t desiredCount = unum_getTextAttribute(fmt, attr, chars.get(), charCount, &status);
168 chars.reset(new UChar[charCount]);
169 charCount = unum_getTextAttribute(fmt, attr, chars.get(), charCount, &status);
171 return icu4jni_error(env, status) ? NULL : env->NewString(chars.get(), charCount);
245 ScopedUtfChars chars(env, value);
246 if (chars.c_str() == NULL) {
249 StringPiece sp(chars.c_str());
  /libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/io/
OutputStreamWriterTest.java 112 char[] chars = source.toCharArray(); local
143 writer.write(chars, -1, 1);
149 writer.write(chars, 0, -1);
155 writer.write(chars, 1, chars.length);
160 writer.write(chars, 1, 2);
163 writer.write(chars, 0, chars.length);
577 fail("Chars written after close");
630 assertTrue("Chars not flushed", new String(buf, 0, buf.length
    [all...]
  /libcore/luni/src/test/java/tests/api/java/nio/charset/
Charset_SingleByteAbstractTest.java 193 static void assertEqualBytes2 (String msg, byte[] expected, byte[] actual, char[] chars) {
199 !((chars[i] == 65533)) && (actual[i] == 63)) {
Charset_TestGenerator.java 107 static final char[] chars = Charset_AbstractTest.theseChars(codes); field in class:Charset_TestGenerator
263 genEncoded(Charset.forName("MacRoman"), CharBuffer.wrap(chars));
264 // genEncoded(Charset.forName(charsetNames[37]), CharBuffer.wrap(chars));
  /external/bison/src/
parse-gram.h 156 char *chars; member in union:YYSTYPE
  /external/icu4c/common/
dictbe.cpp 326 int32_t chars = 0; local
332 chars += 1;
343 utext_setNativeIndex(text, current+wordLength+chars);
357 wordLength += chars;
  /external/webkit/WebKit/android/nav/
CacheBuilder.h 180 void newWord(const UChar* baseChars, const UChar* chars) {
182 mWords[mWordCount] = chars;
229 static FoundState FindPhoneNumber(const UChar* chars, unsigned length, int* start, int* end);
277 void wideString(const UChar* chars, int length, bool hex);

Completed in 1438 milliseconds

1 2 3 4 5 67 8 91011>>