/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() 120 VectorDrawable::Tree* tree = reinterpret_cast<VectorDrawable::Tree*>(treePtr); in setTreeViewportSize() 125 VectorDrawable::Tree* tree = reinterpret_cast<VectorDrawable::Tree*>(treePtr); in setRootAlpha() 130 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 | 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 | ContextUserIdChecker.java | 40 import com.sun.source.tree.Tree; 61 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 | 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 = 273 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 | 51 import com.sun.source.tree.Tree; 293 public void addConstValue(Tree tree) { in addConstValue() 366 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 | 41 const int Tree::MAX_CACHED_BITMAP_SIZE = 2048; 410 int Tree::draw(Canvas* outCanvas, SkColorFilter* colorFilter, const SkRect& bounds, in draw() 428 scaledWidth = std::min(Tree::MAX_CACHED_BITMAP_SIZE, scaledWidth); in draw() 429 scaledHeight = std::min(Tree::MAX_CACHED_BITMAP_SIZE, scaledHeight); in draw() 457 void Tree::drawStaging(Canvas* outCanvas) { in drawStaging() 479 void Tree::getPaintFor(Paint* outPaint, const TreeProperties& prop) const { in getPaintFor() 488 Bitmap& Tree::getBitmapUpdateIfDirty() { in getBitmapUpdateIfDirty() 498 void Tree::draw(SkCanvas* canvas, const SkRect& bounds, const SkPaint& inPaint) { in draw() 518 void Tree::updateBitmapCache(Bitmap& bitmap, bool useStagingData) { in updateBitmapCache() 536 bool Tree::allocateBitmapIfNeeded(Cache& cache, int width, int height) { in allocateBitmapIfNeeded() [all …]
|
D | VectorDrawable.h | 501 class Tree : public VirtualLightRefBase { 503 explicit Tree(Group* rootNode) : mRootNode(rootNode) { in Tree() function 508 Tree(const Tree* copy, Group* rootNode) : Tree(rootNode) { in Tree() function 547 explicit TreeProperties(Tree* tree) : mTree(tree) {} in TreeProperties() 627 Tree* mTree; 690 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 | 45 class Tree; variable 47 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 | 39 class Tree; variable 41 typedef uirenderer::VectorDrawable::Tree VectorDrawableRoot;
|
/frameworks/base/libs/hwui/renderthread/ |
D | RenderThread.h | 57 class Tree; variable 197 friend class android::uirenderer::VectorDrawable::Tree;
|
/frameworks/base/libs/hwui/hwui/ |
D | Canvas.h | 53 class Tree; variable 56 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.
|
/frameworks/native/docs/ |
D | Doxyfile | 580 # Folder Tree View (if specified). The default is YES. 586 # and from the Folder Tree View (if specified). The default is YES.
|