/external/skia/src/fonts/ |
SkRandomScalerContext.h | 37 int onCharsToGlyphs(const void* chars, Encoding encoding,
|
/external/skia/src/ports/ |
SkFontMgr_android_parser.cpp | 81 XML_CharacterDataHandler chars; member in struct:TagHandler 198 /*chars*/nullptr, 241 /*chars*/[](void* data, const char* s, int len) { 285 /*chars*/nullptr, 351 /*chars*/nullptr, 366 /*chars*/nullptr, 420 /*chars*/[](void* data, const char* s, int len) { 436 /*chars*/nullptr, 446 /*chars*/[](void* data, const char* s, int len) { 463 /*chars*/nullptr [all...] |
SkTypeface_win_dw.cpp | 51 static SkUnichar next_utf8(const void** chars) { 52 return SkUTF8_NextUnichar((const char**)chars); 55 static SkUnichar next_utf16(const void** chars) { 56 return SkUTF16_NextUnichar((const uint16_t**)chars); 59 static SkUnichar next_utf32(const void** chars) { 60 const SkUnichar** uniChars = (const SkUnichar**)chars; 76 int DWriteFontTypeface::onCharsToGlyphs(const void* chars, Encoding encoding, 82 const SkUnichar c = next_ucs4_proc(&chars); 102 scratch[i] = next_ucs4_proc(&chars); 109 const UINT32* utf32 = reinterpret_cast<const UINT32*>(chars); [all...] |
/external/tcpdump/ |
print-beep.c | 26 * Looks at the first few chars up to tl1 ...
|
/external/toybox/tests/ |
wc.test | 41 testing "wc -m (invalid chars)" "wc -m file1" "8193 file1\n" "" ""
|
/external/v8/src/snapshot/ |
mksnapshot.cc | 124 char* chars = new char[size + 1]; local 125 chars[size] = '\0'; 127 size_t read = fread(&chars[i], 1, size - i, file); 135 return chars;
|
/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
|
/external/webrtc/webrtc/base/ |
urlencode.h | 32 // Encode only unsafe chars, including \ "^&`<>[]{}
|
/frameworks/av/media/libstagefright/include/ |
DataUriSource.h | 65 // Use AString because individual bytes may not be valid UTF8 chars.
|
/frameworks/base/core/java/android/text/ |
AndroidBidi.java | 56 * @param chars the character array (used to determine whitespace) 57 * @param cstart the start of the line in the chars array 62 char[] chars, int cstart, int len) { 84 char ch = chars[cstart + visLen];
|
GetChars.java | 28 * Exactly like String.getChars(): copy chars <code>start</code>
|
/frameworks/base/core/java/android/view/ |
KeyCharacterMap.java | 295 private static native char nativeGetMatch(long ptr, int keyCode, char[] chars, int metaState); 298 private static native KeyEvent[] nativeGetEvents(long ptr, char[] chars); 436 * {@link #getMatch(int,char[],int) getMatch(keyCode, chars, 0)}. 440 * @param chars The array of matching characters to consider. 443 public char getMatch(int keyCode, char[] chars) { 444 return getMatch(keyCode, chars, 0); 453 * @param chars The array of matching characters to consider. 457 public char getMatch(int keyCode, char[] chars, int metaState) { 458 if (chars == null) { 459 throw new IllegalArgumentException("chars must not be null.") [all...] |
/libcore/dalvik/src/main/java/dalvik/system/ |
DalvikLogging.java | 28 * Returns the short logger tag (up to 23 chars) for the given logger name.
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/ |
DataOutputStreamTest.java | 156 char[] chars = new char[50]; local 159 chars[i] = dis.readChar(); 160 assertEquals("Incorrect chars written", "Test String", new String( 161 chars, 0, i));
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/ |
CharacterImplTest.java | 33 // test the rest of the chars
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/charset/ |
CharsetEncoder2Test.java | 187 CharBuffer chars = utf8.newDecoder().decode(bytes); local 189 assertEquals(2, chars.limit()); 190 assertEquals(0xd800, chars.get(0)); 191 assertEquals(0xdc00, chars.get(1));
|
/libcore/luni/src/test/java/libcore/java/io/ |
OldDataOutputStreamTest.java | 162 char[] chars = new char[unihw.length()]; local 164 for (i = 0; i < a; i++) chars[i] = dis.readChar(); 165 assertEquals("Test 1: Incorrect chars written or read;", 166 unihw, new String(chars, 0, i)
|
/libcore/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.
|
/libnativehelper/include/nativehelper/ |
ScopedUtfChars.h | 23 // A smart pointer that provides read-only access to a Java string's UTF chars.
|
/ndk/tests/device/test-compiler-bug-1/jni/ |
main.c | 22 * when signed chars were being used.
|
/packages/apps/Dialer/src/com/android/dialer/dialpad/ |
SmartDialMap.java | 9 * If/when this change is made, LatinSmartDialMap(which operates on chars) will continue to work
|
/system/core/base/ |
utf8.cpp | 77 << " chars to buffer of " << chars_required << " chars"; 122 << " chars to buffer of " << chars_required << " chars";
|
/toolchain/binutils/binutils-2.25/gas/ |
frags.h | 26 /* A code fragment (frag) is some known number of chars, followed by some 27 unknown number of chars. Typically the unknown number of chars is an 29 possible size the unknown number of chars may become, and reserve that
|
/external/libgdx/extensions/gdx-tools/src/com/badlogic/gdx/tools/hiero/ |
BMFontUtil.java | 91 out.println("chars count=" + glyphCount);
191 char[] chars = {c};
local 192 GlyphVector vector = unicodeFont.getFont().layoutGlyphVector(GlyphPage.renderContext, chars, 0, chars.length,
212 char[] chars = Character.toChars(codePoint);
local 213 GlyphVector vector = font.layoutGlyphVector(GlyphPage.renderContext, chars, 0, chars.length, Font.LAYOUT_LEFT_TO_RIGHT);
|
/external/clang/test/SemaCXX/ |
for-range-examples.cpp | 132 map_range::vector<char> chars; local 133 chars.push_back('a'); 134 chars.push_back('b'); 135 chars.push_back('c'); 136 for (char c : chars) {
|