Searched defs:depth (Results 1 - 25 of 55) sorted by relevance

123

/frameworks/base/sax/java/android/sax/
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.java34 final int depth; field in class:Element
46 Element(Element parent, String uri, String localName, int depth) { argument
50 this.depth = depth;
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--;
/frameworks/rs/driver/
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);
H A DrsdFrameBufferObj.h34 void setDepthTarget(DrvAllocation *depth) { argument
35 mDepthTarget = depth;
/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/av/media/libstagefright/timedtext/
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/core/tests/benchmarks/src/com/android/internal/util/
H A DIndentingPrintWriterBenchmark.java125 public void dumpDirect(PrintWriter pw, int depth) { argument
126 pw.print(sIndents[depth]);
131 child.dumpDirect(pw, depth + 1);
/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/media/java/android/mtp/
H A DMtpPropertyGroup.java296 MtpPropertyList getPropertyList(int handle, int format, int depth) { argument
297 //Log.d(TAG, "getPropertyList handle: " + handle + " format: " + format + " depth: " + depth);
298 if (depth > 1) {
299 // we only support depth 0 and 1
300 // depth 0: single object, depth 1: immediate children
313 if (depth == 1) {
326 if (depth == 1) {
337 if (depth >
[all...]
H A DMtpDatabase.java710 int groupCode, int depth) {
739 return propertyGroup.getPropertyList((int)handle, format, depth);
709 getObjectPropertyList(long handle, int format, long property, int groupCode, int depth) argument
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/misc/
H A DConsole.java117 /** Logs a stack trace to a certain depth */
118 public static void logStackTrace(int depth) { argument
119 logStackTrace("", depth);
122 /** Logs a stack trace to a certain depth with a key */
123 public static void logStackTrace(String key, int depth) { argument
140 int start = Math.min(offset + depth, callStack.length);
/frameworks/base/tests/RenderScriptTests/SceneGraph/src/com/android/testapp/
H A DFullscreenBlur.java83 static RenderPass addPass(Scene scene, Camera cam, TextureRenderTarget color, TextureRenderTarget depth) { argument
86 pass.setDepthTarget(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/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DStatusBarIconView.java239 protected void debug(int depth) { argument
240 super.debug(depth);
241 Log.d("View", debugIndent(depth) + "slot=" + mSlot);
242 Log.d("View", debugIndent(depth) + "icon=" + mIcon);
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/binding/
H A DFakeExpandableAdapter.java56 final int repeatCount, List<ResourceReference> types, int depth) {
89 createItems(dataBindingItem, depth + 1);
96 private void createItems(DataBindingItem item, int depth) { argument
97 if (depth == 2) {
98 createItems(item, item.getChildren().size(), item.getCount(), mChildrenTypes, depth);
55 createItems(Iterable<DataBindingItem> iterable, final int itemCount, final int repeatCount, List<ResourceReference> types, int depth) argument
/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/rs/
H A DrsScriptGroup.cpp59 bool ScriptGroup::calcOrderRecurse(Node *n, int depth) { argument
61 if (n->mOrder < depth) {
62 n->mOrder = depth;
/frameworks/native/opengl/libagl/
H A Dstate.cpp95 // in OpenGL, writing to the depth buffer is enabled by default.
410 params[0] = c->rasterizer.state.buffers.depth.format ? 0 : 16;
584 void glClearDepthx(GLclampx depth) { argument
586 c->rasterizer.procs.clearDepthx(c, depth);
589 void glClearDepthf(GLclampf depth) argument
592 c->rasterizer.procs.clearDepthx(c, gglFloatToFixed(depth));
/frameworks/base/tools/aapt/
H A DXMLNode.cpp414 static String8 make_prefix(int depth) argument
418 for (i=0; i<depth; i++) {
450 int depth = 0; local
452 String8 prefix = make_prefix(depth);
466 depth++;
467 prefix = make_prefix(depth);
502 depth--;
516 depth++;
518 depth--;
529 prefix = make_prefix(depth);
[all...]
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/
H A DBridgeXmlBlockParser.java165 public int getNamespaceCount(int depth) throws XmlPullParserException { argument
/frameworks/av/media/libstagefright/
H A DAVIExtractor.cpp422 ssize_t AVIExtractor::parseChunk(off64_t offset, off64_t size, int depth) { argument
442 const char *prefix = &kPrefix[strlen(kPrefix) - 2 * depth];
479 parseChunk(subOffset, subOffsetLimit - subOffset, depth + 1);
/frameworks/av/media/mtp/
H A DMtpServer.cpp713 int depth = mRequest.getParameter(5); local
714 ALOGV("GetObjectPropList %d format: %s property: %s group: %d depth: %d\n",
716 MtpDebug::getObjectPropCodeName(property), groupCode, depth);
718 return mDatabase->getObjectPropertyList(handle, format, property, groupCode, depth, mData);
917 if (!mData.getUInt32(temp32)) return MTP_RESPONSE_INVALID_PARAMETER; // image bit depth

Completed in 733 milliseconds

123