/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/resources/manager/ |
D | IdeScanningContext.java | 144 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/ |
D | AndroidXmlFormattingStrategy.java | 336 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/ |
D | DeletionHandler.java | 160 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/ |
D | GraphicsUtilities.java | 34 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/ |
D | entries.in | 48 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/ |
D | GraphicsUtilitiesTest.java | 108 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/ |
D | ViewHierarchy.java | 723 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()
|
D | DomUtilities.java | 126 int depth = -1; in getDepth() local 128 depth++; in getDepth() 132 return depth; in getDepth()
|
D | SwtUtils.java | 269 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/ |
D | CanvasViewInfoTest.java | 745 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/ |
D | BasePullParser.java | 112 public int getNamespaceCount(int depth) throws XmlPullParserException { in getNamespaceCount() argument
|
D | ProjectCallback.java | 588 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/ |
D | BaseBuilder.java | 361 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/ |
D | LintList.java | 965 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);
|