HomeSort by relevance Sort by last modified time
    Searched defs:chs (Results 1 - 6 of 6) sorted by null

  /frameworks/base/core/jni/
android_text_AndroidBidi.cpp 35 jchar* chs = env->GetCharArrayElements(chsArray, NULL); local
36 if (chs != NULL) {
41 ubidi_setPara(bidi, chs, n, dir, NULL, &status);
54 env->ReleaseCharArrayElements(chsArray, chs, JNI_ABORT);
  /external/e2fsprogs/lib/ext2fs/
dosio.c 83 * Calculates a CHS address of a sector from its LBA
86 static void lba2chs(unsigned long lba_addr, CHS *chs, PARTITION *part)
90 chs->offset = lba_addr & 0x000001FF;
92 chs->cyl = abss / (part->sects * part->heads);
93 chs->head = (abss / part->sects) % part->heads;
94 chs->sector = (abss % part->sects) + 1;
374 CHS chs; local
382 lba2chs(loc, &chs, part)
411 CHS chs; local
    [all...]
  /frameworks/base/core/tests/coretests/src/android/text/
StaticLayoutBidiTest.java 89 char[] chs = text.toCharArray(); local
90 int n = chs.length;
93 int resultDir = AndroidBidi.bidi(dir, chs, chInfo, n, false);
  /system/core/include/diskconfig/
diskconfig.h 55 struct chs { struct
65 struct chs start; /* bytes 1-3 */
67 struct chs end; /* bytes 5-7 */
  /frameworks/base/core/java/android/text/
StaticLayout.java 240 char[] chs = measured.mChars; local
293 char c = chs[j - paraStart];
317 int emoji = Character.codePointAt(chs, j - paraStart);
380 (j - 1 < here || !Character.isDigit(chs[j - 1 - paraStart])) &&
381 (j + 1 >= spanEnd || !Character.isDigit(chs[j + 1 - paraStart]))) ||
383 (j + 1 >= spanEnd || !Character.isDigit(chs[j + 1 - paraStart]))) ||
385 j + 1 < spanEnd && isIdeographic(chs[j + 1 - paraStart], false))) {
408 while (ok < spanEnd && chs[ok - paraStart] == CHAR_SPACE) {
438 chs, widths, paraStart, ellipsize, ellipsizedWidth,
485 includepad, trackpad, chs,
    [all...]
  /prebuilt/common/http-client/
httpcore-4.1.jar 

Completed in 188 milliseconds