Searched refs:depth (Results 1 - 25 of 86) sorted by relevance

1234

/frameworks/base/sax/java/android/sax/
H A DRootElement.java100 int depth = -1; field in class:RootElement.Handler
112 int depth = ++this.depth;
114 if (depth == 0) {
128 if (depth == current.depth + 1) {
183 if (depth == current.depth) {
204 depth--;
H A DChildren.java37 current = new Child(parent, uri, localName, parent.depth + 1, hash);
56 current = new Child(parent, uri, localName, parent.depth + 1, hash);
91 Child(Element parent, String uri, String localName, int depth, argument
93 super(parent, uri, localName, depth);
H A DElement.java36 final int depth; field in class:Element
48 Element(Element parent, String uri, String localName, int depth) { argument
52 this.depth = depth;
/frameworks/rs/driver/
H A DrsdFrameBufferObj.h34 void setDepthTarget(DrvAllocation *depth) { argument
35 mDepthTarget = depth;
H A DrsdFrameBuffer.cpp35 DrvAllocation *depth = NULL; local
37 depth = (DrvAllocation *)fb->mHal.state.depthTarget->mHal.drv;
39 if (depth->uploadDeferred) {
44 fbo->setDepthTarget(depth);
/frameworks/av/media/libstagefright/timedtext/
H A DTextDescriptions.h75 Parcel *parcel, int depth);
78 int timeMs, Parcel *parcel, int depth);
H A DTextDescriptions.cpp72 int timeMs, Parcel *parcel, int depth) {
73 if (depth == 0) {
288 const uint8_t *data, ssize_t size, Parcel *parcel, int depth) {
299 if (depth == 0) {
70 extract3GPPLocalDescriptions( const uint8_t *data, ssize_t size, int timeMs, Parcel *parcel, int depth) argument
287 extract3GPPGlobalDescriptions( const uint8_t *data, ssize_t size, Parcel *parcel, int depth) argument
/frameworks/base/media/mca/filterfw/java/android/filterfw/core/
H A DMutableFrameFormat.java72 public void setDimensions(int width, int height, int depth) { argument
76 dimensions[2] = depth;
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/binding/
H A DFakeExpandableAdapter.java47 final int repeatCount, List<ResourceReference> types, int depth) {
80 createItems(dataBindingItem, depth + 1);
87 private void createItems(DataBindingItem item, int depth) { argument
88 if (depth == 2) {
89 createItems(item, item.getChildren().size(), item.getCount(), mChildrenTypes, depth);
46 createItems(Iterable<DataBindingItem> iterable, final int itemCount, final int repeatCount, List<ResourceReference> types, int depth) argument
/frameworks/compile/mclinker/lib/LD/
H A DDiagnostic.cpp41 unsigned int depth = 0; local
43 if (0 == depth && *pBegin == pVal)
45 if (0 != depth && *pBegin == '}')
46 --depth;
61 ++depth;
/frameworks/native/opengl/tests/gl2_jni/src/com/android/gl2jni/
H A DGL2JNIView.java65 public GL2JNIView(Context context, boolean translucent, int depth, int stencil) { argument
67 init(translucent, depth, stencil);
70 private void init(boolean translucent, int depth, int stencil) { argument
73 new ConfigChooser(8,8,8,8, depth, stencil) :
74 new ConfigChooser(5,6,5,0, depth, stencil));
112 public ConfigChooser(int r, int g, int b, int a, int depth, int stencil) { argument
117 mDepthSize = depth;
/frameworks/native/opengl/tests/gl_perfapp/src/com/android/glperf/
H A DGLPerfView.java65 public GLPerfView(Context context, boolean translucent, int depth, int stencil) { argument
67 init(translucent, depth, stencil);
70 private void init(boolean translucent, int depth, int stencil) { argument
73 new ConfigChooser(8,8,8,8, depth, stencil) :
74 new ConfigChooser(5,6,5,0, depth, stencil));
112 public ConfigChooser(int r, int g, int b, int a, int depth, int stencil) { argument
117 mDepthSize = depth;
/frameworks/native/opengl/tests/gldual/src/com/android/gldual/
H A DGLDualGL2View.java68 public GLDualGL2View(Context context, boolean translucent, int depth, int stencil) { argument
70 init(translucent, depth, stencil);
73 private void init(boolean translucent, int depth, int stencil) { argument
76 new ConfigChooser(8,8,8,8, depth, stencil) :
77 new ConfigChooser(5,6,5,0, depth, stencil));
115 public ConfigChooser(int r, int g, int b, int a, int depth, int stencil) { argument
120 mDepthSize = depth;
/frameworks/base/samples/training/network-usage/src/com/example/android/networkusage/
H A DStackOverflowXmlParser.java150 // 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;
158 while (depth != 0) {
161 depth--;
164 depth++;
/frameworks/wilhelm/src/itf/
H A DI3DMacroscopic.c23 SLmillimeter width, SLmillimeter height, SLmillimeter depth)
29 (0 <= depth) && (depth <= SL_MILLIMETER_MAX))) {
36 thiz->mSize.mDepth = depth;
57 SLmillimeter depth = thiz->mSize.mDepth; local
61 *pDepth = depth;
22 I3DMacroscopic_SetSize(SL3DMacroscopicItf self, SLmillimeter width, SLmillimeter height, SLmillimeter depth) argument
/frameworks/native/opengl/libagl/
H A Degl.cpp170 GGLSurface depth; member in struct:android::egl_surface_t
178 depth.version = sizeof(GGLSurface);
179 depth.data = 0;
180 depth.format = depthFormat;
185 free(depth.data);
389 // allocate a corresponding depth-buffer
392 if (depth.format) {
393 depth.width = width;
394 depth.height = height;
395 depth
[all...]
H A Dmatrix.cpp386 void matrix_stack_t::init(int depth) { argument
387 stack = new matrixf_t[depth];
388 ops = new uint8_t[depth];
389 maxDepth = depth;
390 depth = 0;
402 stack[depth].loadIdentity();
403 ops[depth] = OP_IDENTITY;
409 stack[depth].load(rhs);
410 ops[depth] = OP_ALL; // TODO: we should look at the matrix
415 stack[depth]
[all...]
/frameworks/base/graphics/java/android/graphics/drawable/
H A DLevelListDrawable.java96 int depth;
98 && ((depth = parser.getDepth()) >= innerDepth
104 if (depth > innerDepth || !parser.getName().equals("item")) {
H A DMipmapDrawable.java139 int depth;
141 && ((depth = parser.getDepth()) >= innerDepth
147 if (depth > innerDepth || !parser.getName().equals("item")) {
/frameworks/base/core/java/android/view/animation/
H A DAnimationUtils.java101 int depth = parser.getDepth();
103 while (((type=parser.next()) != XmlPullParser.END_TAG || parser.getDepth() > depth)
178 int depth = parser.getDepth();
180 while (((type = parser.next()) != XmlPullParser.END_TAG || parser.getDepth() > depth)
295 int depth = parser.getDepth();
297 while (((type=parser.next()) != XmlPullParser.END_TAG || parser.getDepth() > depth)
/frameworks/base/tools/aapt/
H A DCommand.cpp394 int depth = 0; local
399 depth--;
400 if (depth < 0) {
408 depth++;
560 int depth = 0; local
563 depth--;
569 depth++;
571 //printf("Depth %d tag %s\n", depth, tag.string());
572 if (depth == 1) {
579 } else if (depth
613 int depth = 0; local
[all...]
/frameworks/base/tests/RenderScriptTests/tests/src/com/android/rs/test/
H A DUT_program_store.java153 for (int depth = 0; depth <= 1; depth++) {
154 boolean depthMask = (depth == 1);
/frameworks/av/media/libstagefright/include/
H A DMPEG4Extractor.h73 status_t parseChunk(off64_t *offset, int depth);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DStatusBarIconView.java229 protected void debug(int depth) { argument
230 super.debug(depth);
231 Log.d("View", debugIndent(depth) + "slot=" + mSlot);
232 Log.d("View", debugIndent(depth) + "icon=" + mIcon);
/frameworks/rs/
H A DrsScriptGroup.h103 bool calcOrderRecurse(Node *n, int depth);

Completed in 516 milliseconds

1234