Home
last modified time | relevance | path

Searched refs:Tree (Results 1 – 25 of 29) sorted by relevance

12

/frameworks/base/libs/hwui/jni/
Dandroid_graphics_drawable_VectorDrawable.cpp33 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()
Dandroid_graphics_drawable_AnimatedVectorDrawable.cpp99 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/
DBinderIdentityChecker.java36 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()
DHideInCommentsChecker.java38 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()
DEfficientStringsChecker.java49 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");
DEfficientCollectionsChecker.java32 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");
DClientSidePermissionCheckChecker.java36 import com.sun.source.tree.Tree;
50 private static final Matcher<Tree> INSIDE_MANAGER =
DEfficientParcelableChecker.java38 import com.sun.source.tree.Tree;
53 private static final Matcher<Tree> INSIDE_WRITE_TO_PARCEL = allOf(
DContextUserIdChecker.java40 import com.sun.source.tree.Tree;
61 private static final Matcher<Tree> INSIDE_MANAGER =
DRethrowFromSystemChecker.java43 import com.sun.source.tree.Tree;
67 private static final Matcher<Tree> INSIDE_MANAGER =
DUidChecker.java35 import com.sun.source.tree.Tree;
65 List<? extends ExpressionTree> args, Tree tree) { in matchArguments()
DEfficientXmlChecker.java44 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()
DBluetoothPermissionChecker.java48 import com.sun.source.tree.Tree;
205 for (Tree node : path) { in isInsideParcelable()
DTargetSdkChecker.java36 import com.sun.source.tree.Tree.Kind;
DRequiresPermissionChecker.java52 import com.sun.source.tree.Tree;
301 public void addConstValue(Tree tree) { in addConstValue()
374 final Tree init = tree.getExpression(); in parseBroadcastSourceRequiresPermission()
DCompatChangeChecker.java39 import com.sun.source.tree.Tree.Kind;
/frameworks/base/libs/hwui/
DVectorDrawable.cpp38 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 …]
DVectorDrawable.h502 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;
DPropertyValuesHolder.h151 RootAlphaPropertyValuesHolder(VectorDrawable::Tree* tree, float startValue, float endValue) in RootAlphaPropertyValuesHolder()
158 VectorDrawable::Tree* mTree;
DRecordingCanvas.h55 class Tree; variable
57 typedef uirenderer::VectorDrawable::Tree VectorDrawableRoot;
DDisplayList.h29 class Tree; variable
31 typedef uirenderer::VectorDrawable::Tree VectorDrawableRoot;
/frameworks/base/libs/hwui/pipeline/skia/
DSkiaDisplayList.h41 class Tree; variable
43 typedef uirenderer::VectorDrawable::Tree VectorDrawableRoot;
/frameworks/base/libs/hwui/renderthread/
DRenderThread.h55 class Tree; variable
198 friend class android::uirenderer::VectorDrawable::Tree;
/frameworks/base/libs/hwui/hwui/
DCanvas.h54 class Tree; variable
57 typedef uirenderer::VectorDrawable::Tree VectorDrawableRoot;
/frameworks/wilhelm/doc/
DDoxyfile494 # Folder Tree View (if specified). The default is YES.
501 # and from the Folder Tree View (if specified). The default is YES.

12