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

  /frameworks/base/tools/layoutlib/bridge/src/android/text/
AndroidBidi_Delegate.java 32 /*package*/ static int runBidi(int dir, char[] chs, byte[] chInfo, int n, boolean haveInfo) {
  /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 */
  /external/webkit/Source/WebCore/loader/cache/
CachedXSLStyleSheet.cpp 55 void CachedXSLStyleSheet::setEncoding(const String& chs)
57 m_decoder->setEncoding(chs, TextResourceDecoder::EncodingFromHTTPHeader);
CachedCSSStyleSheet.cpp 65 void CachedCSSStyleSheet::setEncoding(const String& chs)
67 m_decoder->setEncoding(chs, TextResourceDecoder::EncodingFromHTTPHeader);
CachedScript.cpp 72 void CachedScript::setEncoding(const String& chs)
74 m_decoder->setEncoding(chs, TextResourceDecoder::EncodingFromHTTPHeader);
  /frameworks/base/core/java/android/text/
AndroidBidi.java 27 public static int bidi(int dir, char[] chs, byte[] chInfo, int n, boolean haveInfo) {
28 if (chs == null || chInfo == null) {
32 if (n < 0 || chs.length < n || chInfo.length < n) {
44 int result = runBidi(dir, chs, chInfo, n, haveInfo);
176 private native static int runBidi(int dir, char[] chs, byte[] chInfo, int n, boolean haveInfo);
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...]
  /external/apache-http/src/org/apache/http/message/
BasicHeaderValueParser.java 304 private static boolean isOneOf(final char ch, final char[] chs) {
305 if (chs != null) {
306 for (int i = 0; i < chs.length; i++) {
307 if (ch == chs[i]) {
  /system/core/libdiskconfig/
config_mbr.c 37 memset(&pentry->start, 0xff, sizeof(struct chs));
38 memset(&pentry->end, 0xff, sizeof(struct chs));
41 memset(&pentry->start, 0, sizeof(struct chs));
42 memset(&pentry->end, 0, sizeof(struct chs));
  /external/chromium/third_party/libjingle/source/talk/base/
stringutils.h 167 const CTYPE* strchr(const CTYPE* str, const CTYPE* chs) {
169 for (size_t j=0; chs[j]; ++j) {
170 if (str[i] == chs[j]) {
  /external/qemu/block/
vvfat.c 356 * if the position is outside the specified geometry, fill maximum value for CHS
359 static int sector2CHS(BlockDriverState* bs, mbr_chs_t * chs, int spos){
365 it happens if 32bit sector positions are used, while CHS is only 24bit.
366 Windows/Dos is said to take 1023/255/63 as nonrepresentable CHS */
367 chs->head = 0xFF;
368 chs->sector = 0xFF;
369 chs->cylinder = 0xFF;
372 chs->head = (uint8_t)head;
373 chs->sector = (uint8_t)( (sector+1) | ((spos>>8)<<6) );
374 chs->cylinder = (uint8_t)spos
    [all...]
  /prebuilt/common/http-client/
httpcore-4.1.jar 

Completed in 2336 milliseconds