/external/clang/test/CXX/lex/lex.literal/lex.ext/ |
H A D | p12.cpp | 11 check<T, str...> chars; // expected-error {{implicit instantiation of undefined template 'check<char, 't', 'e', 's', 't'>'}} expected-error {{implicit instantiation of undefined template 'check<char32_t, 34, 1090, 1077, 1089, 1090, 95, 65536>'}} local
|
/external/chromium_org/third_party/icu/source/common/unicode/ |
H A D | strenum.h | 225 char *chars; member in class:StringEnumeration 227 * Capacity of chars, for use with default implementations and subclasses. 239 * Ensures that chars is at least as large as the requested capacity.
|
/external/icu/icu4c/source/common/unicode/ |
H A D | strenum.h | 225 char *chars; member in class:StringEnumeration 227 * Capacity of chars, for use with default implementations and subclasses. 239 * Ensures that chars is at least as large as the requested capacity.
|
/external/llvm/lib/Support/ |
H A D | regcclass.h | 46 const char *chars; member in struct:cclass
|
/external/apache-xml/src/main/java/org/apache/xml/serializer/ |
H A D | WriterChain.java | 34 * write(char[] chars) 35 * write(char[] chars, int start, int count) 36 * write(String chars) 37 * write(String chars, int start, int count) 56 public void write(char[] chars) throws IOException; argument 58 public void write(char[] chars, int start, int count) throws IOException; argument 60 public void write(String chars) throws IOException; argument 62 public void write(String chars, int start, int count) throws IOException; argument
|
H A D | WriterToASCI.java | 59 * @param chars Array of characters 67 public void write(char chars[], int start, int length) argument 75 m_os.write(chars[i]);
|
/external/chromium_org/base/android/ |
H A D | jni_string.cc | 35 const jchar* chars = env->GetStringChars(str, NULL); local 36 DCHECK(chars); 37 UTF16ToUTF8(chars, env->GetStringLength(str), result); 38 env->ReleaseStringChars(str, chars); 72 const jchar* chars = env->GetStringChars(str, NULL); local 73 DCHECK(chars); 76 result->assign(chars, env->GetStringLength(str)); 77 env->ReleaseStringChars(str, chars);
|
/external/chromium_org/chrome/test/chromedriver/ |
H A D | keycode_text_conversion_win.cc | 26 wchar_t chars[5]; local 27 int code = ::ToUnicode(key_code, scan_code, keyboard_state, chars, 4, 0); 29 // control chars. Filter those out. 30 if (code <= 0 || (code == 1 && iswcntrl(chars[0]))) 33 base::WideToUTF8(chars, code, text);
|
/external/chromium_org/third_party/icu/source/i18n/ |
H A D | regeximp.cpp | 65 CaseFoldingUCharIterator::CaseFoldingUCharIterator(const UChar *chars, int64_t start, int64_t limit) : argument 66 fChars(chars), fIndex(start), fLimit(limit), fcsp(NULL), fFoldChars(NULL), fFoldLength(0) {
|
/external/chromium_org/third_party/speex/include/speex/ |
H A D | speex_bits.h | 50 char *chars; /**< "raw" data */ member in struct:SpeexBits 54 int owner; /**< Does the struct "own" the "raw" buffer (member "chars") */
|
/external/chromium_org/ui/base/l10n/ |
H A D | l10n_font_util.cc | 17 double chars = 0; local 18 base::StringToDouble(l10n_util::GetStringUTF8(col_resource_id), &chars); local 19 int width = font.GetExpectedTextWidth(static_cast<int>(chars));
|
/external/chromium_org/v8/tools/ |
H A D | shell-utils.h | 52 byte* chars = new byte[*size + 1]; local 54 int read = static_cast<int>(fread(&chars[i], 1, file_size - i, file)); 60 chars[i] = chars[i - file_size]; 62 chars[*size] = 0; 64 return chars;
|
/external/clang/test/SemaTemplate/ |
H A D | array-to-pointer-decay.cpp | 31 } chars; typedef in typeref:struct:__anon19441 33 chars getChars();
|
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/ui/ |
H A D | PixelConverter.java | 48 public int convertHeightInCharsToPixels(int chars) { argument 49 return Dialog.convertHeightInCharsToPixels(fFontMetrics, chars); 69 public int convertWidthInCharsToPixels(int chars) { argument 70 return Dialog.convertWidthInCharsToPixels(fFontMetrics, chars);
|
/external/icu/icu4c/source/i18n/ |
H A D | regeximp.cpp | 65 CaseFoldingUCharIterator::CaseFoldingUCharIterator(const UChar *chars, int64_t start, int64_t limit) : argument 66 fChars(chars), fIndex(start), fLimit(limit), fcsp(NULL), fFoldChars(NULL), fFoldLength(0) {
|
/external/icu/icu4c/source/layout/ |
H A D | GXLayoutEngine.cpp | 32 le_int32 GXLayoutEngine::computeGlyphs(const LEUnicode chars[], le_int32 offset, le_int32 count, le_int32 max, le_bool rightToLeft, LEGlyphStorage &glyphStorage, LEErrorCode &success) argument 38 if (chars == NULL || offset < 0 || count < 0 || max < 0 || offset >= max || offset + count > max) { 43 mapCharsToGlyphs(chars, offset, count, FALSE, rightToLeft, glyphStorage, success); 55 void GXLayoutEngine::adjustGlyphPositions(const LEUnicode chars[], le_int32 offset, le_int32 count, le_bool /*reverse*/, argument 62 if (chars == NULL || offset < 0 || count < 0) {
|
H A D | GXLayoutEngine2.cpp | 29 le_int32 GXLayoutEngine2::computeGlyphs(const LEUnicode chars[], le_int32 offset, le_int32 count, le_int32 max, le_bool rightToLeft, LEGlyphStorage &glyphStorage, LEErrorCode &success) argument 35 if (chars == NULL || offset < 0 || count < 0 || max < 0 || offset >= max || offset + count > max) { 40 mapCharsToGlyphs(chars, offset, count, rightToLeft, rightToLeft, glyphStorage, success); 51 void GXLayoutEngine2::adjustGlyphPositions(const LEUnicode chars[], le_int32 offset, le_int32 count, le_bool /*reverse*/, argument 58 if (chars == NULL || offset < 0 || count < 0) {
|
H A D | KhmerLayoutEngine.cpp | 44 le_int32 KhmerOpenTypeLayoutEngine::characterProcessing(const LEUnicode chars[], le_int32 offset, le_int32 count, le_int32 max, le_bool rightToLeft, argument 51 if (chars == NULL || offset < 0 || count < 0 || max < 0 || offset >= max || offset + count > max) { 75 le_int32 outCharCount = KhmerReordering::reorder(&chars[offset], count, fScriptCode, outChars, glyphStorage);
|
H A D | ThaiLayoutEngine.cpp | 59 le_int32 ThaiLayoutEngine::computeGlyphs(const LEUnicode chars[], le_int32 offset, le_int32 count, le_int32 max, le_bool /*rightToLeft*/, LEGlyphStorage &glyphStorage, LEErrorCode &success) argument 65 if (chars == NULL || offset < 0 || count < 0 || max < 0 || offset >= max || offset + count > max) { 90 glyphCount = ThaiShaping::compose(chars, offset, count, fGlyphSet, fErrorChar, outChars, glyphStorage); 100 void ThaiLayoutEngine::adjustGlyphPositions(const LEUnicode chars[], le_int32 offset, le_int32 count, le_bool /*reverse*/, argument 107 if (chars == NULL || offset < 0 || count < 0) {
|
/external/speex/include/speex/ |
H A D | speex_bits.h | 50 char *chars; /**< "raw" data */ member in struct:SpeexBits 54 int owner; /**< Does the struct "own" the "raw" buffer (member "chars") */
|
/external/stlport/test/unit/ |
H A D | istmit_test.cpp | 89 string chars; local 91 2, back_inserter(chars)).first, 92 2, back_inserter(chars)).first; 93 CPPUNIT_ASSERT( chars == "aabb" ); 94 copy_n(ite, 2, back_inserter(chars)); 95 CPPUNIT_ASSERT( chars == "aabbcd" );
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/ |
H A D | Strings.java | 169 char[] chars = string.toCharArray(); 171 for (int i = 0; i != chars.length; i++) 173 char ch = chars[i]; 177 chars[i] = (char)(ch - 'a' + 'A'); 183 return new String(chars); 198 char[] chars = string.toCharArray(); 200 for (int i = 0; i != chars.length; i++) 202 char ch = chars[i]; 206 chars[i] = (char)(ch - 'A' + 'a'); 212 return new String(chars); 218 toByteArray(char[] chars) argument [all...] |
/external/chromium_org/third_party/WebKit/Source/platform/text/ |
H A D | TextBoundaries.cpp | 62 int findNextWordFromIndex(const UChar* chars, int len, int position, bool forward) argument 64 TextBreakIterator* it = wordBreakIterator(chars, len); 71 if (position < len && isAlphanumeric(chars[position - 1])) 83 if (position > 0 && isAlphanumeric(chars[position])) 93 void findWordBoundary(const UChar* chars, int len, int position, int* start, int* end) argument 95 TextBreakIterator* it = wordBreakIterator(chars, len); 102 int findWordEndBoundary(const UChar* chars, int len, int position) argument 104 TextBreakIterator* it = wordBreakIterator(chars, len);
|
/external/chromium_org/third_party/skia/bench/ |
H A D | PathUtilsBench.cpp | 20 static void fillRandomBits( int chars, char* bits ){ argument 23 for (int i = 0; i < chars; ++i){
|
/external/chromium_org/third_party/skia/src/core/ |
H A D | SkWriter32.cpp | 51 char* chars = (char*)(ptr + 1); local 52 memcpy(chars, str, len); 53 chars[len] = '\0';
|