/frameworks/base/libs/hwui/jni/ |
D | android_graphics_drawable_VectorDrawable.cpp | 33 VectorDrawable::Tree* tree = new VectorDrawable::Tree(rootGroup); in createTree() 39 VectorDrawable::Tree* treeToCopy = reinterpret_cast<VectorDrawable::Tree*>(treePtr); in createTreeFromCopy() 40 VectorDrawable::Tree* tree = new VectorDrawable::Tree(treeToCopy, rootGroup); in createTreeFromCopy() 93 VectorDrawable::Tree* tree = reinterpret_cast<VectorDrawable::Tree*>(treePtr); in setAllowCaching() 98 VectorDrawable::Tree* tree = reinterpret_cast<VectorDrawable::Tree*>(treePtr); in setAntiAlias() 107 VectorDrawable::Tree* tree = reinterpret_cast<VectorDrawable::Tree*>(treePtr); in draw() 121 VectorDrawable::Tree* tree = reinterpret_cast<VectorDrawable::Tree*>(treePtr); in setTreeViewportSize() 126 VectorDrawable::Tree* tree = reinterpret_cast<VectorDrawable::Tree*>(treePtr); in setRootAlpha() 131 VectorDrawable::Tree* tree = reinterpret_cast<VectorDrawable::Tree*>(treePtr); in getRootAlpha()
|
D | android_graphics_drawable_AnimatedVectorDrawable.cpp | 99 VectorDrawable::Tree* tree = reinterpret_cast<VectorDrawable::Tree*>(vectorDrawablePtr); in setVectorDrawableTarget() 140 VectorDrawable::Tree* tree = reinterpret_cast<VectorDrawable::Tree*>(nativePtr); in createRootAlphaPropertyHolder()
|
/frameworks/base/errorprone/java/com/google/errorprone/bugpatterns/android/ |
D | BinderIdentityChecker.java | 36 import com.sun.source.tree.Tree; 37 import com.sun.source.tree.Tree.Kind; 79 final Tree next = nextStatement(token, state); in matchMethodInvocation() 101 private static Tree nextStatement(Tree tree, VisitorState state) { in nextStatement()
|
D | HideInCommentsChecker.java | 38 import com.sun.source.tree.Tree; 66 final Map<Integer, Tree> javadocableTrees = findJavadocableTrees(tree, state); in matchCompilationUnit() 74 final Tree javadocableTree = javadocableTrees.get(token.pos()); in matchCompilationUnit() 115 private Map<Integer, Tree> findJavadocableTrees(CompilationUnitTree tree, VisitorState state) { in findJavadocableTrees() 116 Map<Integer, Tree> javadoccableTrees = new HashMap<>(); in findJavadocableTrees()
|
D | EfficientStringsChecker.java | 49 import com.sun.source.tree.Tree; 50 import com.sun.source.tree.Tree.Kind; 97 private static final Matcher<Tree> PLUS = anyOf(kindIs(Kind.PLUS), 105 private static final Matcher<Tree> PLUS_DYNAMIC_VALUE = allOf( 108 private static final Matcher<Tree> IS_STRING_BUFFER = isSubtypeOf("java.lang.StringBuffer");
|
D | EfficientCollectionsChecker.java | 32 import com.sun.source.tree.Tree; 50 private static final Matcher<Tree> IS_LIST = isSubtypeOf("java.util.List"); 51 private static final Matcher<Tree> IS_MAP = isSubtypeOf("java.util.Map");
|
D | ClientSidePermissionCheckChecker.java | 36 import com.sun.source.tree.Tree; 50 private static final Matcher<Tree> INSIDE_MANAGER =
|
D | EfficientParcelableChecker.java | 38 import com.sun.source.tree.Tree; 53 private static final Matcher<Tree> INSIDE_WRITE_TO_PARCEL = allOf(
|
D | ContextUserIdChecker.java | 40 import com.sun.source.tree.Tree; 61 private static final Matcher<Tree> INSIDE_MANAGER =
|
D | RethrowFromSystemChecker.java | 43 import com.sun.source.tree.Tree; 67 private static final Matcher<Tree> INSIDE_MANAGER =
|
D | UidChecker.java | 35 import com.sun.source.tree.Tree; 65 List<? extends ExpressionTree> args, Tree tree) { in matchArguments()
|
D | EfficientXmlChecker.java | 44 import com.sun.source.tree.Tree; 124 private static final Matcher<Tree> IS_FAST_XML_SERIALIZER = 275 final Tree readDest = state.getPath().getParentPath().getLeaf(); in matchMethodInvocation()
|
D | BluetoothPermissionChecker.java | 48 import com.sun.source.tree.Tree; 205 for (Tree node : path) { in isInsideParcelable()
|
D | TargetSdkChecker.java | 36 import com.sun.source.tree.Tree.Kind;
|
D | RequiresPermissionChecker.java | 52 import com.sun.source.tree.Tree; 301 public void addConstValue(Tree tree) { in addConstValue() 374 final Tree init = tree.getExpression(); in parseBroadcastSourceRequiresPermission()
|
D | CompatChangeChecker.java | 39 import com.sun.source.tree.Tree.Kind;
|
/frameworks/base/libs/hwui/ |
D | VectorDrawable.cpp | 38 const int Tree::MAX_CACHED_BITMAP_SIZE = 2048; 407 int Tree::draw(Canvas* outCanvas, SkColorFilter* colorFilter, const SkRect& bounds, in draw() 425 scaledWidth = std::min(Tree::MAX_CACHED_BITMAP_SIZE, scaledWidth); in draw() 426 scaledHeight = std::min(Tree::MAX_CACHED_BITMAP_SIZE, scaledHeight); in draw() 454 void Tree::drawStaging(Canvas* outCanvas) { in drawStaging() 476 void Tree::getPaintFor(Paint* outPaint, const TreeProperties& prop) const { in getPaintFor() 485 Bitmap& Tree::getBitmapUpdateIfDirty() { in getBitmapUpdateIfDirty() 495 void Tree::draw(SkCanvas* canvas, const SkRect& bounds, const SkPaint& inPaint) { in draw() 515 void Tree::updateBitmapCache(Bitmap& bitmap, bool useStagingData) { in updateBitmapCache() 533 bool Tree::allocateBitmapIfNeeded(Cache& cache, int width, int height) { in allocateBitmapIfNeeded() [all …]
|
D | VectorDrawable.h | 502 class Tree : public VirtualLightRefBase { 504 explicit Tree(Group* rootNode) : mRootNode(rootNode) { in Tree() function 509 Tree(const Tree* copy, Group* rootNode) : Tree(rootNode) { in Tree() function 548 explicit TreeProperties(Tree* tree) : mTree(tree) {} in TreeProperties() 628 Tree* mTree; 691 typedef uirenderer::VectorDrawable::Tree VectorDrawableRoot;
|
D | PropertyValuesHolder.h | 151 RootAlphaPropertyValuesHolder(VectorDrawable::Tree* tree, float startValue, float endValue) in RootAlphaPropertyValuesHolder() 158 VectorDrawable::Tree* mTree;
|
D | RecordingCanvas.h | 55 class Tree; variable 57 typedef uirenderer::VectorDrawable::Tree VectorDrawableRoot;
|
D | DisplayList.h | 29 class Tree; variable 31 typedef uirenderer::VectorDrawable::Tree VectorDrawableRoot;
|
/frameworks/base/libs/hwui/pipeline/skia/ |
D | SkiaDisplayList.h | 41 class Tree; variable 43 typedef uirenderer::VectorDrawable::Tree VectorDrawableRoot;
|
/frameworks/base/libs/hwui/renderthread/ |
D | RenderThread.h | 55 class Tree; variable 198 friend class android::uirenderer::VectorDrawable::Tree;
|
/frameworks/base/libs/hwui/hwui/ |
D | Canvas.h | 54 class Tree; variable 57 typedef uirenderer::VectorDrawable::Tree VectorDrawableRoot;
|
/frameworks/wilhelm/doc/ |
D | Doxyfile | 494 # Folder Tree View (if specified). The default is YES. 501 # and from the Folder Tree View (if specified). The default is YES.
|