/frameworks/base/core/java/android/view/animation/ |
AnimationUtils.java | 105 int depth = parser.getDepth(); local 107 while (((type=parser.next()) != XmlPullParser.END_TAG || parser.getDepth() > depth) 182 int depth = parser.getDepth(); local 184 while (((type = parser.next()) != XmlPullParser.END_TAG || parser.getDepth() > depth) 331 int depth = parser.getDepth(); local 333 while (((type = parser.next()) != XmlPullParser.END_TAG || parser.getDepth() > depth)
|
/frameworks/base/graphics/java/android/graphics/ |
FontListParser.java | 144 int depth = 1; local 145 while (depth > 0) { 148 depth++; 151 depth--;
|
/frameworks/base/samples/training/network-usage/src/com/example/android/networkusage/ |
StackOverflowXmlParser.java | 150 // Skips tags the parser isn't interested in. Uses depth to handle nested tags. i.e., 152 // finds the matching END_TAG (as indicated by the value of "depth" being 0). 157 int depth = 1; local 158 while (depth != 0) { 161 depth--; 164 depth++;
|
/frameworks/base/tools/aapt/ |
pseudolocalize.cpp | 42 size_t depth = mLastDepth; local 59 depth++; 60 } else if (c == k_arg_end && depth) { 61 depth--; 64 if (mLastDepth != depth || pos == length - 1) { 67 if (!pseudo || depth == mLastDepth) { 81 if (pseudo && depth < mLastDepth) { // End of message 83 } else if (!pseudo && depth > mLastDepth) { // Start of message 87 mLastDepth = depth;
|
/frameworks/base/tools/aapt2/ |
XmlPullParser.h | 150 int depth = 1; local 151 while (depth > 0) { 157 depth++; 160 depth--;
|
/packages/apps/Gallery2/src/com/android/gallery3d/util/ |
ProfileData.java | 129 // second word: depth of the stack (N) 131 private void writeOneStack(Node node, int depth) throws IOException { 133 writeInt(depth); 134 while (depth-- > 0) { 140 private void writeAllStacks(Node node, int depth) throws IOException { 142 writeOneStack(node, depth); 148 writeAllStacks(children.get(i), depth + 1); local
|
/packages/providers/ContactsProvider/src/com/android/providers/contacts/ |
PhotoPriorityResolver.java | 158 final int depth = parser.getDepth(); local 159 while (((type = parser.next()) != XmlPullParser.END_TAG || parser.getDepth() > depth)
|
/prebuilts/clang/darwin-x86/host/3.6/lib/clang/3.6/include/ |
htmxlintrin.h | 262 int depth = __builtin_tx_nesting_depth (); local 265 if (depth != 0) 266 return depth; 327 return tdb->format == 1 && tdb->abort_code == 13; /* depth exceeded */
|
/prebuilts/clang/linux-x86/host/3.6/lib/clang/3.6/include/ |
htmxlintrin.h | 262 int depth = __builtin_tx_nesting_depth (); local 265 if (depth != 0) 266 return depth; 327 return tdb->format == 1 && tdb->abort_code == 13; /* depth exceeded */
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/X11/extensions/ |
multibuf.h | 111 VisualID visualid; /* visual usuable at this depth */ 113 int depth; /* depth of buffers to be created */ member in struct:__anon30335 195 int /* depth */,
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/X11/extensions/ |
multibuf.h | 108 VisualID visualid; /* visual usuable at this depth */ 110 int depth; /* depth of buffers to be created */ member in struct:__anon32194 192 int /* depth */,
|
/prebuilts/sdk/renderscript/clang-include/ |
htmxlintrin.h | 262 int depth = __builtin_tx_nesting_depth (); local 265 if (depth != 0) 266 return depth; 327 return tdb->format == 1 && tdb->abort_code == 13; /* depth exceeded */
|
/art/compiler/dex/ |
mir_dataflow.cc | 1387 uint32_t depth = std::min(3U, static_cast<uint32_t>(bb->nesting_depth)); local [all...] |
/art/compiler/utils/arm/ |
assembler_arm32_test.cc | 269 static const char* GetRegTokenFromDepth(int depth) { 270 switch (depth) { 280 LOG(FATAL) << "Depth problem."; 296 void TemplateHelper(std::function<void(arm::Register)> f, int depth ATTRIBUTE_UNUSED, 305 const char* reg_token = GetRegTokenFromDepth(depth); 315 void TemplateHelper(std::function<void(const arm::ShifterOperand&)> f, int depth ATTRIBUTE_UNUSED, 330 void TemplateHelper(std::function<void(arm::Condition)> f, int depth ATTRIBUTE_UNUSED, 345 void TemplateHelper(std::function<void(arm::Register, Args...)> f, int depth, bool without_pc, 353 const char* reg_token = GetRegTokenFromDepth(depth); 360 TemplateHelper(std::function<void(Args...)>(lambda), depth + 1, without_pc local 378 TemplateHelper(std::function<void(Args...)>(lambda), depth, without_pc, local 395 TemplateHelper(std::function<void(Args...)>(lambda), depth, without_pc, local [all...] |
/cts/hostsidetests/appsecurity/test-apps/WriteExternalStorageApp/src/com/android/cts/writeexternalstorageapp/ |
WriteExternalStorageTest.java | 174 int depth = 0; local 175 while (depth++ < 32) {
|
/cts/tests/tests/renderscript/src/android/renderscript/cts/ |
AllocationCopyToTest.java | 380 int depth = random.nextInt(64); local 388 int zcount = depth - zoff; 396 typeBuilder.setX(width).setY(height).setZ(depth); 417 int depth = random.nextInt(64); local 425 int zcount = depth - zoff; 436 typeBuilder.setX(width).setY(height).setZ(depth); 457 int depth = random.nextInt(64); local 465 int zcount = depth - zoff; 476 typeBuilder.setX(width).setY(height).setZ(depth); 497 int depth = random.nextInt(64) local 537 int depth = random.nextInt(64); local 577 int depth = random.nextInt(64); local [all...] |
/developers/build/prebuilts/gradle/BasicSyncAdapter/Application/src/main/java/com/example/android/basicsyncadapter/net/ |
FeedParser.java | 239 * Skips tags the parser isn't interested in. Uses depth to handle nested tags. i.e., 241 * finds the matching END_TAG (as indicated by the value of "depth" being 0). 247 int depth = 1; local 248 while (depth != 0) { 251 depth--; 254 depth++;
|
/developers/samples/android/connectivity/sync/BasicSyncAdapter/Application/src/main/java/com/example/android/basicsyncadapter/net/ |
FeedParser.java | 239 * Skips tags the parser isn't interested in. Uses depth to handle nested tags. i.e., 241 * finds the matching END_TAG (as indicated by the value of "depth" being 0). 247 int depth = 1; local 248 while (depth != 0) { 251 depth--; 254 depth++;
|
/development/ndk/platforms/android-3/include/linux/ |
irq.h | 86 unsigned int depth; member in struct:irq_desc
|
/development/samples/ApiDemos/src/com/example/android/apis/graphics/ |
SensorTest.java | 64 final int depth = mDepth; local 67 for (int i = 0; i < depth; i++) { 71 index = depth - 1;
|
/development/samples/browseable/BasicSyncAdapter/src/com.example.android.basicsyncadapter/net/ |
FeedParser.java | 239 * Skips tags the parser isn't interested in. Uses depth to handle nested tags. i.e., 241 * finds the matching END_TAG (as indicated by the value of "depth" being 0). 247 int depth = 1; local 248 while (depth != 0) { 251 depth--; 254 depth++;
|
/external/boringssl/src/crypto/bn/ |
ctx.c | 80 /* Stack depth and allocation size */ 98 unsigned int depth, size; member in struct:bignum_ctx_stack 118 /* Depth of stack overflow */ 204 st->depth = st->size = 0; 212 if (st->depth == st->size) { 220 if (st->depth) { 221 memcpy(newitems, st->indexes, st->depth * sizeof(unsigned int)); 228 st->indexes[(st->depth)++] = idx; 233 return st->indexes[--(st->depth)];
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/ |
PKIXPolicyNode.java | 14 protected int depth; field in class:PKIXPolicyNode 37 depth = _depth; 59 return depth; 151 depth,
|
/external/deqp/framework/common/ |
tcuImageCompare.cpp | 97 const int depth = reference.getDepth(); local 106 const int endZ = (acceptOutOfBoundsAsAnyValue) ? (depth - maxPositionDeviation.z()) : (0); 108 TCU_CHECK_INTERNAL(result.getWidth() == width && result.getHeight() == height && result.getDepth() == depth); 137 for (int sz = de::max(0, z - maxPositionDeviation.z()); sz <= de::min(depth - 1, z + maxPositionDeviation.z()) && !pixelFoundForReference; ++sz) 160 for (int sz = de::max(0, z - maxPositionDeviation.z()); sz <= de::min(depth - 1, z + maxPositionDeviation.z()) && !pixelFoundForResult; ++sz) 490 int depth = reference.getDepth(); local 491 TextureLevel errorMaskStorage (TextureFormat(TextureFormat::RGB, TextureFormat::UNORM_INT8), width, height, depth); local 497 TCU_CHECK(result.getWidth() == width && result.getHeight() == height && result.getDepth() == depth); 499 for (int z = 0; z < depth; z++) 576 int depth = reference.getDepth() local 577 TextureLevel errorMaskStorage (TextureFormat(TextureFormat::RGB, TextureFormat::UNORM_INT8), width, height, depth); local 663 const int depth = result.getDepth(); local 665 TextureLevel errorMaskStorage (TextureFormat(TextureFormat::RGB, TextureFormat::UNORM_INT8), width, height, depth); local 745 int depth = reference.getDepth(); local 746 TextureLevel errorMaskStorage (TextureFormat(TextureFormat::RGB, TextureFormat::UNORM_INT8), width, height, depth); local 840 const int depth = reference.getDepth(); local 841 TextureLevel errorMaskStorage (TextureFormat(TextureFormat::RGB, TextureFormat::UNORM_INT8), width, height, depth); local 919 const int depth = reference.getDepth(); local 920 TextureLevel errorMaskStorage (TextureFormat(TextureFormat::RGB, TextureFormat::UNORM_INT8), width, height, depth); local [all...] |
/external/deqp/framework/platform/X11/ |
tcuX11.cpp | 213 unsigned width_, height_, borderWidth, depth; local 215 XGetGeometry(m_display.getXDisplay(), m_window, &root, &x, &y, &width_, &height_, &borderWidth, &depth);
|