Home
last modified time | relevance | path

Searched refs:depth (Results 1 – 14 of 14) sorted by relevance

/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/resources/manager/
DIdeScanningContext.java144 int depth = resource instanceof IFolder ? DEPTH_ONE : DEPTH_ZERO; in updateMarkers() local
145 resource.deleteMarkers(MARKER_AAPT_COMPILE, true, depth); in updateMarkers()
175 int depth = resource instanceof IFolder ? DEPTH_ONE : DEPTH_ZERO; in hasModifiedFilesWithErrors() local
178 true /*includeSubtypes*/, depth); in hasModifiedFilesWithErrors()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/formatting/
DAndroidXmlFormattingStrategy.java336 int depth = DomUtilities.getDepth(startNode) - 1; in format() local
337 for (int i = depth + 1; i < indentationLevels.length; i++) { in format()
706 int depth = entry.getKey(); in measure() local
708 indentationLevels[depth] = indentation; in measure()
714 private void visit(int depth, Node node) { in visit() argument
716 if (node.getNodeType() == Node.ELEMENT_NODE && mDepth.get(depth) == null) { in visit()
729 mDepth.put(depth, indent); in visit()
731 if (depth > mMaxDepth) { in visit()
732 mMaxDepth = depth; in visit()
743 visit(depth + 1, child); in visit()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/relative/
DDeletionHandler.java160 private void transfer(INode deleted, INode target, ConstraintType targetType, int depth) { in transfer() argument
161 if (depth == 20) { in transfer()
184 transfer(nextDeleted, target, targetType, depth + 1); in transfer()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/draw9patch/graphics/
DGraphicsUtilities.java34 ImageData result = new ImageData(image.width + 2, image.height + 2, image.depth, in convertToNinePatch()
79 ImageData result = new ImageData(image.width, image.height, image.depth, in copy()
/sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/
Dentries.in48 void, glClearBufferfi, GLenum buffer, GLint drawbuffer, GLfloat depth, GLint stencil
55 void, glClearDepthf, GLclampf depth
56 void, glClearDepthfOES, GLclampf depth
57 void, glClearDepthx, GLclampx depth
58 void, glClearDepthxOES, GLclampx depth
76 …Lint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLs…
77 …Lint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLs…
79 …set, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GL…
80 …set, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GL…
157 …set, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GL…
[all …]
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/draw9patch/graphics/
DGraphicsUtilitiesTest.java108 assertEquals(baseData.depth, copiedData.depth); in testCopy()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
DViewHierarchy.java723 public static void dump(RenderSession session, ViewInfo info, int depth) { in dump() argument
726 for (int i = 0; i < depth; i++) { in dump()
767 dump(session, child, depth + 1); in dump()
DDomUtilities.java126 int depth = -1; in getDepth() local
128 depth++; in getDepth()
132 return depth; in getDepth()
DSwtUtils.java269 ImageData destData = new ImageData(destWidth, destHeight, srcData.depth, srcData.palette); in drawRectangles()
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
DCanvasViewInfoTest.java745 public static void dump(ViewInfo info, int depth) { in dump() argument
747 for (int i = 0; i < depth; i++) { in dump()
774 dump(child, depth + 1); in dump()
779 public static void dump(CanvasViewInfo info, int depth) { in dump() argument
781 for (int i = 0; i < depth; i++) { in dump()
793 dump(child, depth + 1); in dump()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/
DBasePullParser.java112 public int getNamespaceCount(int depth) throws XmlPullParserException { in getNamespaceCount() argument
DProjectCallback.java588 private boolean isWithinIllegalParent(Object viewObject, int depth) { in isWithinIllegalParent() argument
594 if (depth > 0) { in isWithinIllegalParent()
599 return isWithinIllegalParent(parent, depth -1); in isWithinIllegalParent()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/builders/
DBaseBuilder.java361 protected void stopOnMarker(IProject project, String markerType, int depth, in stopOnMarker() argument
365 IMarker[] markers = project.findMarkers(markerType, false /*includeSubtypes*/, depth); in stopOnMarker()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
DLintList.java965 private int compare(IMarker marker1, IMarker marker2, int depth,
967 if (depth >= mPriorities.length) {
970 int column = mPriorities[depth];
974 return compare(marker1, marker2, depth + 1, continueSearching);