Searched refs:ch (Results 1 - 13 of 13) sorted by relevance

/dalvik/vm/oo/
H A DAccessCheck.cpp29 char ch = str1[count]; local
30 if (ch == '\0' || ch != str2[count])
/dalvik/dx/tests/087-ssa-local-vars/
H A DBlort.java73 char ch = current.charAt(i);
74 if (ch != ' ' && ch != '\t') {
/dalvik/vm/
H A DNative.cpp605 u2 ch = utf16[i]; local
607 if (ch == '$' || ch > 127) {
610 switch (ch) {
631 u2 ch = utf16[i]; local
633 if (ch == '$' || ch > 127) {
634 sprintf(cp, "_0%04x", ch);
637 switch (ch) {
654 *cp++ = (char) ch;
[all...]
H A DCheckJni.cpp539 char ch = *fmt++; local
540 if (ch == 'B') { // jbyte
547 } else if (ch == 'C') { // jchar
554 } else if (ch == 'F' || ch == 'D') { // jfloat, jdouble
556 } else if (ch == 'I' || ch == 'S') { // jint, jshort
558 } else if (ch == 'J') { // jlong
560 } else if (ch == 'Z') { // jboolean
562 } else if (ch
670 char ch = *fmt; local
[all...]
H A DMisc.cpp256 char ch = *p++; local
257 if (ch == '/') {
258 ch = '.';
260 result.push_back(ch);
H A DInlineNative.cpp437 * Determine the index of the first character matching "ch". The string
447 static inline int indexOfCommon(Object* strObj, int ch, int start) argument
449 //if ((ch & 0xffff) != ch) /* 32-bit code point */
459 // (u4) strObj, ch, start, offset, count);
472 if (chars[start] == ch)
481 if (*ptr++ == ch)
/dalvik/docs/
H A Dprettify.js179 function isWordChar(ch) {
180 return (ch >= 'a' && ch <= 'z') || (ch >= 'A' && ch <= 'Z');
390 var ch = plainText.charAt(i);
392 switch (ch) {
/dalvik/tools/dexdeps/src/com/android/dexdeps/
H A DOutput.java303 char ch = descr.charAt(offset + i);
304 buf[i] = (ch == '/') ? '.' : ch;
/dalvik/vm/alloc/
H A DVisitInlines.h60 char ch = clazz->sfields[i].signature[0]; local
61 if (ch == '[' || ch == 'L') {
H A DMarkSweep.cpp253 char ch = clazz->sfields[i].signature[0]; local
254 if (ch == '[' || ch == 'L') {
H A DCopying.cpp900 char ch = obj->sfields[i].field.signature[0];
901 if (ch == '[' || ch == 'L') {
/dalvik/vm/analysis/
H A DLiveness.cpp218 ALOGI("merging cur=%04x into pred last=%04x (ch=%d)",
819 char ch = dvmIsBitSet(workBits, idx) ? '+' : '-'; local
820 regChars[1 + idx + (idx/4)] = ch;
/dalvik/dexdump/
H A DDexDump.cpp160 char ch = str[offset + i]; local
161 newStr[i] = (ch == '/' || ch == '$') ? '.' : ch;

Completed in 336 milliseconds