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

  /development/tools/apkcheck/src/com/android/apkcheck/
TypeUtils.java 60 int arrayDepth = 0;
66 arrayDepth++;
74 while (arrayDepth-- > 0)
  /dalvik/tools/dexdeps/src/com/android/dexdeps/
Output.java 275 int arrayDepth = 0;
282 arrayDepth = offset;
298 char[] buf = new char[targetLen + arrayDepth * 2];
308 while (arrayDepth-- > 0) {
  /dalvik/dexdump/
DexDump.cpp 137 int arrayDepth = 0;
145 arrayDepth = offset;
162 newStr = (char*)malloc(targetLen + arrayDepth * 2 +1);
172 while (arrayDepth-- > 0) {
177 assert(i == targetLen + arrayDepth * 2);
    [all...]
  /external/clang/lib/CodeGen/
CGDecl.cpp     [all...]
  /art/dexdump/
dexdump.cc 138 const int arrayDepth = offset;
155 std::unique_ptr<char[]> newStr(new char[targetLen + arrayDepth * 2 + 1]);
163 for (int j = 0; j < arrayDepth; j++) {
    [all...]

Completed in 188 milliseconds