/toolchain/binutils/binutils-2.25/gas/doc/ |
c-mt.texi | 49 * MT-Chars:: Special Characters 52 @node MT-Chars
|
c-ns32k.texi | 52 * NS32K-Chars:: Special Characters 55 @node NS32K-Chars
|
/external/harfbuzz_ng/test/api/ |
test-buffer.c | 383 unsigned int bytes, chars, i, j, len; local 398 for (chars = 0; test->codepoints[chars]; chars++) 405 g_assert_cmpint (len, ==, chars); 406 for (j = 0; j < chars; j++) 737 unsigned int u_len, chars, j, len; local 744 for (chars = 0; test->codepoints[chars]; chars++ 791 unsigned int u_len, chars, j, len; local [all...] |
/external/libgdx/extensions/gdx-tools/src/com/badlogic/gdx/tools/hiero/unicodefont/ |
UnicodeFont.java | 145 char[] chars = " ".toCharArray();
local 146 GlyphVector vector = font.layoutGlyphVector(GlyphPage.renderContext, chars, 0, chars.length, Font.LAYOUT_LEFT_TO_RIGHT);
177 char[] chars = text.toCharArray();
local 178 GlyphVector vector = font.layoutGlyphVector(GlyphPage.renderContext, chars, 0, chars.length, Font.LAYOUT_LEFT_TO_RIGHT);
313 char[] chars = text.substring(0, endIndex).toCharArray();
local 314 GlyphVector vector = font.layoutGlyphVector(GlyphPage.renderContext, chars, 0, chars.length, Font.LAYOUT_LEFT_TO_RIGHT);
430 char[] chars = text.toCharArray(); [all...] |
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/ |
PrintWriterTest.java | 72 pw.println("Random Chars"); 79 .equals("Random Chars")); 95 pw.println("Random Chars"); 101 .equals("Random Chars")); 106 .equals("Random Chars")); 403 pw.println("Random Chars"); 423 pw.println("Random Chars"); 443 pw.println("Random Chars"); 464 pw.println("Random Chars"); 485 pw.println("Random Chars"); [all...] |
/cts/tests/tests/view/src/android/view/cts/ |
KeyCharacterMapTest.java | 29 private final char[] chars = {'A', 'B', 'C'}; field in class:KeyCharacterMapTest 282 assertEquals('\0', mKeyCharacterMap.getMatch(getCharacterKeyCode('E'), chars)); 283 assertEquals('A', mKeyCharacterMap.getMatch(getCharacterKeyCode('A'), chars)); 284 assertEquals('B', mKeyCharacterMap.getMatch(getCharacterKeyCode('B'), chars)); 289 char[] chars = new char[] {Character.toLowerCase(oneChar)}; local 290 KeyEvent[] events = mKeyCharacterMap.getEvents(chars); 300 assertEquals('\0', mKeyCharacterMap.getMatch(1000, chars, 2)); 301 assertEquals('\0', mKeyCharacterMap.getMatch(10000, chars, 2)); 302 assertEquals('\0', mKeyCharacterMap.getMatch(getCharacterKeyCode('E'), chars)); 303 assertEquals('A', mKeyCharacterMap.getMatch(getCharacterKeyCode('A'), chars)); [all...] |
/external/opencv3/3rdparty/zlib/ |
gzlib.c | 40 DWORD chars = FormatMessage(FORMAT_MESSAGE_FROM_SYSTEM local 48 if (chars != 0) { 50 if (chars >= 2 51 && msgbuf[chars - 2] == '\r' && msgbuf[chars - 1] == '\n') { 52 chars -= 2; 53 msgbuf[chars] = 0; 56 if (chars > sizeof (buf) - 1) { 57 chars = sizeof (buf) - 1; 58 msgbuf[chars] = 0 [all...] |
/external/pdfium/third_party/zlib_v128/ |
gzlib.c | 40 DWORD chars = FormatMessage(FORMAT_MESSAGE_FROM_SYSTEM local 48 if (chars != 0) { 50 if (chars >= 2 51 && msgbuf[chars - 2] == '\r' && msgbuf[chars - 1] == '\n') { 52 chars -= 2; 53 msgbuf[chars] = 0; 56 if (chars > sizeof (buf) - 1) { 57 chars = sizeof (buf) - 1; 58 msgbuf[chars] = 0 [all...] |
/external/zlib/src/ |
gzlib.c | 40 DWORD chars = FormatMessage(FORMAT_MESSAGE_FROM_SYSTEM local 48 if (chars != 0) { 50 if (chars >= 2 51 && msgbuf[chars - 2] == '\r' && msgbuf[chars - 1] == '\n') { 52 chars -= 2; 53 msgbuf[chars] = 0; 56 if (chars > sizeof (buf) - 1) { 57 chars = sizeof (buf) - 1; 58 msgbuf[chars] = 0 [all...] |
/prebuilts/gdb/darwin-x86/lib/python2.7/ |
string.py | 248 def strip(s, chars=None): 249 """strip(s [,chars]) -> string 253 If chars is given and not None, remove characters in chars instead. 254 If chars is unicode, S will be converted to unicode before stripping. 257 return s.strip(chars) 260 def lstrip(s, chars=None): 261 """lstrip(s [,chars]) -> string 264 If chars is given and not None, remove characters in chars instead [all...] |
/prebuilts/gdb/linux-x86/lib/python2.7/ |
string.py | 248 def strip(s, chars=None): 249 """strip(s [,chars]) -> string 253 If chars is given and not None, remove characters in chars instead. 254 If chars is unicode, S will be converted to unicode before stripping. 257 return s.strip(chars) 260 def lstrip(s, chars=None): 261 """lstrip(s [,chars]) -> string 264 If chars is given and not None, remove characters in chars instead [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
string.py | 248 def strip(s, chars=None): 249 """strip(s [,chars]) -> string 253 If chars is given and not None, remove characters in chars instead. 254 If chars is unicode, S will be converted to unicode before stripping. 257 return s.strip(chars) 260 def lstrip(s, chars=None): 261 """lstrip(s [,chars]) -> string 264 If chars is given and not None, remove characters in chars instead [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
string.py | 248 def strip(s, chars=None): 249 """strip(s [,chars]) -> string 253 If chars is given and not None, remove characters in chars instead. 254 If chars is unicode, S will be converted to unicode before stripping. 257 return s.strip(chars) 260 def lstrip(s, chars=None): 261 """lstrip(s [,chars]) -> string 264 If chars is given and not None, remove characters in chars instead [all...] |
/external/apache-harmony/support/src/test/java/org/apache/harmony/testframework/ |
CharWrapperTester.java | 35 * Creates a new output stream that receives one stream of chars, optionally 36 * transforms it, and emits another stream of chars to {@code delegate}. 41 * Decodes the chars received by the delegate into their original form: the 42 * chars originally received by this wrapper.
|
/external/chromium-trace/catapult/dashboard/dashboard/static/ |
autocomplete.html | 116 var chars = target.split(''); 118 for (var i = 0; i < chars.length; i++) { 119 var char = chars[i]; 127 this.searchAllSubNodes_(node, resultDict, chars.length);
|
/external/clang/test/CXX/lex/lex.literal/lex.ext/ |
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/clang/test/Sema/ |
ms-wchar.c | 11 // __wchar_t is a distinct type, separate from the target's integer type for wide chars.
|
/external/guava/guava-tests/test/com/google/common/io/ |
LineBufferTest.java | 90 char[] chars = input.toCharArray(); local 92 while (off < chars.length) { 93 int len = Math.min(chars.length, off + chunk) - off; 94 lineBuf.add(chars, off, len);
|
/external/icu/icu4c/source/common/ |
unistr_case.cpp | 57 const UChar *chars = getArrayStart(); local 59 chars += start; 64 if(chars != srcChars) { 66 int32_t result=u_strcmpFold(chars, length, srcChars, srcLength,
|
/external/icu/icu4c/source/i18n/ |
regexst.h | 46 UnicodeSet fUnescapeCharSet; // Set of chars handled by unescape when
|
/external/icu/icu4c/source/layout/ |
ArabicShaping.h | 59 static void shape(const LEUnicode *chars, le_int32 offset, le_int32 charCount, le_int32 charMax,
|
IndicLayoutEngine.h | 108 * @param chars - the input character context 123 virtual le_int32 characterProcessing(const LEUnicode chars[], le_int32 offset, le_int32 count, le_int32 max, le_bool rightToLeft, 136 * @param chars - the input character context 154 virtual le_int32 glyphProcessing(const LEUnicode chars[], le_int32 offset, le_int32 count, le_int32 max, le_bool rightToLeft,
|
/external/icu/icu4c/source/layoutex/ |
playout.cpp | 26 pl_create(const LEUnicode chars[], 36 ParagraphLayout *pl = new ParagraphLayout(chars, count, (const FontRuns *) fontRuns, 52 pl_isComplex(const LEUnicode chars[], 55 return ParagraphLayout::isComplex(chars, count);
|
/external/icu/icu4c/source/samples/layout/ |
paragraph.h | 36 Paragraph(const LEUnicode chars[], le_int32 charCount, const FontRuns *fontRuns, LEErrorCode &status);
|
/external/icu/icu4c/source/test/intltest/ |
thcoll.h | 75 const char* chars);
|