HomeSort by relevance Sort by last modified time
    Searched full:chars (Results 26 - 50 of 3426) sorted by null

12 3 4 5 6 7 8 91011>>

  /libcore/luni/src/main/java/java/util/concurrent/
Helpers.java 53 final char[] chars = new char[charLength + 2 * size]; local
54 chars[0] = '[';
58 chars[j++] = ',';
59 chars[j++] = ' ';
63 s.getChars(0, len, chars, j);
66 chars[j] = ']';
67 // assert j == chars.length - 1;
68 return new String(chars);
75 final char[] chars = local
78 k.getChars(0, klen, chars, 0)
    [all...]
  /external/icu/icu4c/source/extra/scrptrun/
scrptrun.h 38 ScriptRun(const UChar chars[], int32_t length);
40 ScriptRun(const UChar chars[], int32_t start, int32_t length);
46 void reset(const UChar chars[], int32_t start, int32_t length);
105 inline ScriptRun::ScriptRun(const UChar chars[], int32_t length)
107 reset(chars, 0, length);
110 inline ScriptRun::ScriptRun(const UChar chars[], int32_t start, int32_t length)
112 reset(chars, start, length);
146 inline void ScriptRun::reset(const UChar chars[], int32_t start, int32_t length)
148 charArray = chars;
  /external/icu/icu4j/demos/src/com/ibm/icu/dev/demo/impl/
DemoTextBox.java 19 this.chars = new char[text.length()];
20 text.getChars(0, text.length(), chars, 0);
41 g.drawChars(chars, index, breakPos[i] - index, x, y);
46 g.drawChars(chars, index, chars.length - index, x, y);
52 if (metrics.charsWidth(chars, 0, chars.length) > width)
63 int w = metrics.charsWidth(chars, start, pos - start);
89 private char[] chars; field in class:DemoTextBox
  /external/icu/icu4c/source/layout/
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)
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*/,
62 if (chars == NULL || offset < 0 || count < 0) {
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)
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*/,
58 if (chars == NULL || offset < 0 || count < 0) {
IndicLayoutEngine.cpp 56 le_int32 IndicOpenTypeLayoutEngine::glyphProcessing(const LEUnicode chars[], le_int32 offset, le_int32 count, le_int32 max, le_bool rightToLeft,
63 if (chars == NULL || offset < 0 || count < 0 || max < 0 || offset >= max || offset + count > max) {
68 le_int32 retCount = OpenTypeLayoutEngine::glyphProcessing(chars, offset, count, max, rightToLeft, glyphStorage, success);
87 le_int32 IndicOpenTypeLayoutEngine::characterProcessing(const LEUnicode chars[], le_int32 offset, le_int32 count, le_int32 max, le_bool rightToLeft,
94 if (chars == NULL || offset < 0 || count < 0 || max < 0 || offset >= max || offset + count > max) {
121 outCharCount = IndicReordering::v2process(&chars[offset], count, fScriptCode, outChars, glyphStorage);
123 outCharCount = IndicReordering::reorder(&chars[offset], count, fScriptCode, outChars, glyphStorage, &fMPreFixups, success);
  /external/kernel-headers/original/uapi/linux/
limits.h 11 #define NAME_MAX 255 /* # chars in a file name */
12 #define PATH_MAX 4096 /* # chars in a path name including nul */
14 #define XATTR_NAME_MAX 255 /* # chars in an extended attribute name */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/linux/
limits.h 11 #define NAME_MAX 255 /* # chars in a file name */
12 #define PATH_MAX 4096 /* # chars in a path name including nul */
14 #define XATTR_NAME_MAX 255 /* # chars in an extended attribute name */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/
limits.h 11 #define NAME_MAX 255 /* # chars in a file name */
12 #define PATH_MAX 4096 /* # chars in a path name including nul */
14 #define XATTR_NAME_MAX 255 /* # chars in an extended attribute name */
  /external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/pfr/
pfrcmap.c 38 cmap->chars = face->phy_font.chars;
48 if ( cmap->chars[n - 1].char_code >= cmap->chars[n].char_code )
64 cmap->chars = NULL;
84 gchar = cmap->chars + mid;
117 gchar = cmap->chars + mid;
143 gchar = cmap->chars + min;
  /external/libxml2/doc/examples/
writer.xml 2 <EXAMPLE><!--This is a comment with special chars: <???>--><ORDER version="1.0" xml:lang="de"><!--This is another comment with special chars: <???>--><HEADER><X_ORDER_ID>0000053535</X_ORDER_ID><CUSTOMER_ID>1010</CUSTOMER_ID><NAME_1>M?ller</NAME_1><NAME_2>J?rg</NAME_2></HEADER><ENTRIES><ENTRY><ARTICLE>&lt;Test&gt;</ARTICLE><ENTRY_NO>10</ENTRY_NO></ENTRY><ENTRY><ARTICLE>&lt;Test 2&gt;</ARTICLE><ENTRY_NO>20</ENTRY_NO></ENTRY></ENTRIES><FOOTER><TEXT>This is a text.</TEXT></FOOTER></ORDER></EXAMPLE>
  /frameworks/minikin/libs/minikin/
LayoutUtils.cpp 44 const uint16_t* chars, size_t offset, size_t len) {
47 if (isWordBreakBefore(chars[offset - 1])) {
51 if (isWordBreakBefore(chars[i]) || isWordBreakAfter(chars[i - 1])) {
62 const uint16_t* chars, size_t offset, size_t len) {
64 if (isWordBreakAfter(chars[offset])) {
68 // No need to check isWordBreakAfter(chars[i - 1]) since it is checked
71 if (isWordBreakBefore(chars[i])) {
  /libcore/luni/src/test/java/libcore/java/lang/reflect/
ArrayTest.java 25 private static char[] chars; field in class:ArrayTest
36 chars = new char[] { '\uffff' };
47 try { Array.getBoolean(chars, 0); fail(); } catch (IllegalArgumentException expected) {}
59 try { Array.getByte(chars, 0); fail(); } catch (IllegalArgumentException expected) {}
71 assertEquals(chars[0], Array.getChar(chars, 0));
83 assertEquals((double) chars[0], Array.getDouble(chars, 0));
95 assertEquals((float) chars[0], Array.getFloat(chars, 0))
    [all...]
  /packages/inputmethods/LatinIME/java/res/values/
strings-action-keys.xml 22 <!-- Label for soft enter key when it performs GO action. Must be short to fit on key. 5 chars or less is preferable. [CHAR LIMIT=7] -->
24 <!-- Label for soft enter key when it performs NEXT action. Must be short to fit on key. 5 chars or less is preferable. [CHAR LIMIT=7] -->
26 <!-- Label for soft enter key when it performs PREVIOUS action. Must be short to fit on key. 5 chars or less is preferable. [CHAR LIMIT=7] -->
28 <!-- Label for soft enter key when it performs DONE action. Must be short to fit on key. 5 chars or less is preferable. [CHAR LIMIT=7] -->
30 <!-- Label for soft enter key when it performs SEND action. Must be short to fit on key. 5 chars or less is preferable. [CHAR LIMIT=7] -->
32 <!-- Label for soft enter key when it performs SEARCH action. Must be short to fit on key. 5 chars or less is preferable. [CHAR LIMIT=7] -->
34 <!-- Label for "Pause" key of phone number keyboard. Must be short to fit on key. 5 chars or less is preferable. [CHAR LIMIT=7] -->
36 <!-- Label for "Wait" key of phone number keyboard. Must be short to fit on key. 5 chars or less is preferable. [CHAR LIMIT=7]-->
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_grp.py 65 chars = list(fakename)
66 for i in xrange(len(chars)):
67 if chars[i] == 'z':
68 chars[i] = 'A'
70 elif chars[i] == 'Z':
73 chars[i] = chr(ord(chars[i]) + 1)
82 fakename = ''.join(chars)
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_grp.py 65 chars = list(fakename)
66 for i in xrange(len(chars)):
67 if chars[i] == 'z':
68 chars[i] = 'A'
70 elif chars[i] == 'Z':
73 chars[i] = chr(ord(chars[i]) + 1)
82 fakename = ''.join(chars)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_grp.py 65 chars = list(fakename)
66 for i in xrange(len(chars)):
67 if chars[i] == 'z':
68 chars[i] = 'A'
70 elif chars[i] == 'Z':
73 chars[i] = chr(ord(chars[i]) + 1)
82 fakename = ''.join(chars)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_grp.py 65 chars = list(fakename)
66 for i in xrange(len(chars)):
67 if chars[i] == 'z':
68 chars[i] = 'A'
70 elif chars[i] == 'Z':
73 chars[i] = chr(ord(chars[i]) + 1)
82 fakename = ''.join(chars)
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/rpcsvc/
rex.x 70 opaque chars[4];
71 /* chars[0] == input speed */
72 /* chars[1] == output speed */
73 /* chars[2] == kill character */
74 /* chars[3] == erase character */
138 const CTLECH = 0x10000000; /* echo control chars as ^X */
145 opaque chars[6];
146 /* chars[0] == interrupt char */
147 /* chars[1] == quit char */
148 /* chars[2] == start output char *
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/rpcsvc/
rex.x 70 opaque chars[4];
71 /* chars[0] == input speed */
72 /* chars[1] == output speed */
73 /* chars[2] == kill character */
74 /* chars[3] == erase character */
138 const CTLECH = 0x10000000; /* echo control chars as ^X */
145 opaque chars[6];
146 /* chars[0] == interrupt char */
147 /* chars[1] == quit char */
148 /* chars[2] == start output char *
    [all...]
  /external/valgrind/memcheck/tests/
long-supps.c 1 // Bug 186796: function names of over 200 chars in suppressions were being
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/hppa/parse/
stringer.s 7 ; Octal escapes used to consume > 3 chars which led to this
  /external/emma/core/java12/com/vladium/util/
WCMatcher.java 25 final char [] chars = pattern.toCharArray (); // is this faster than using charAt()? local
26 final int charsLength = chars.length;
37 final char ch = chars [c];
44 chars [patternLength ++] = '*';
51 chars [patternLength ++] = ch;
61 else if (chars [0] == '*')
62 return new EndsWithMatcher (chars, patternLength);
63 else if (chars [patternLength - 1] == '*')
64 return new StartsWithMatcher (chars, patternLength);
67 return new PatternMatcher (chars, patternLength)
    [all...]
  /libcore/luni/src/test/java/libcore/java/io/
OldInputStreamReaderTest.java 118 char[] chars = new char[source.length()]; local
119 assertEquals(0, reader.read(chars, 0, 0));
120 assertEquals(0, chars[0]);
121 assertEquals(3, reader.read(chars, 0, 3));
122 assertEquals(5, reader.read(chars, 3, 5));
123 assertEquals(source.length() - 8, reader.read(chars, 8,
124 chars.length - 8));
125 assertTrue(Arrays.equals(chars, source.toCharArray()));
126 assertEquals(-1, reader.read(chars, 0, chars.length))
131 char[] chars = new char[source.length()]; local
265 char[] chars = new char[8192]; local
    [all...]
  /frameworks/av/services/camera/libcameraservice/common/
CameraModule.cpp 28 uint32_t deviceVersion, CameraMetadata &chars) {
38 chars.update(ANDROID_CONTROL_AE_LOCK_AVAILABLE, &data, /*count*/1);
40 chars.update(ANDROID_CONTROL_AWB_LOCK_AVAILABLE, &data, /*count*/1);
42 camera_metadata_entry entry = chars.find(ANDROID_CONTROL_AVAILABLE_SCENE_MODES);
51 entry = chars.find(ANDROID_CONTROL_AE_AVAILABLE_MODES);
60 entry = chars.find(ANDROID_CONTROL_AF_AVAILABLE_MODES);
69 entry = chars.find(ANDROID_CONTROL_AWB_AVAILABLE_MODES);
82 chars.update(ANDROID_CONTROL_AVAILABLE_MODES, controlModes);
84 entry = chars.find(ANDROID_REQUEST_AVAILABLE_REQUEST_KEYS);
104 chars.update(ANDROID_SHADING_AVAILABLE_MODES, lscModes)
    [all...]

Completed in 1101 milliseconds

12 3 4 5 6 7 8 91011>>