/frameworks/base/libs/hwui/ |
H A D | ResourceCache.cpp | 35 ALOGD(" ResourceCache: mCache(%zu): resource, ref = 0x%p, 0x%p", i, mCache->keyAt(i), 60 void ResourceCache::incrementRefcount(void* resource, ResourceType resourceType) { argument 62 incrementRefcountLocked(resource, resourceType); 69 void ResourceCache::incrementRefcountLocked(void* resource, ResourceType resourceType) { argument 70 ssize_t index = mCache->indexOfKey(resource); 74 mCache->add(resource, ref); 79 void ResourceCache::decrementRefcount(void* resource) { argument 81 decrementRefcountLocked(resource); 88 void ResourceCache::decrementRefcountLocked(void* resource) { argument 89 ssize_t index = mCache->indexOfKey(resource); 105 destructor(Res_png_9patch* resource) argument 110 destructorLocked(Res_png_9patch* resource) argument 134 deleteResourceReferenceLocked(const void* resource, ResourceReference* ref) argument [all...] |
H A D | ResourceCache.h | 69 void incrementRefcount(const Res_png_9patch* resource); 71 void decrementRefcount(const Res_png_9patch* resource); 73 void decrementRefcountLocked(const Res_png_9patch* resource); 75 void destructor(Res_png_9patch* resource); 77 void destructorLocked(Res_png_9patch* resource); 80 void deleteResourceReferenceLocked(const void* resource, ResourceReference* ref); 82 void incrementRefcount(void* resource, ResourceType resourceType); 83 void incrementRefcountLocked(void* resource, ResourceType resourceType); 85 void decrementRefcount(void* resource); 86 void decrementRefcountLocked(void* resource); [all...] |
/frameworks/base/tools/aapt2/link/ |
H A D | XmlNamespaceRemover.cpp | 52 bool XmlNamespaceRemover::Consume(IAaptContext* context, xml::XmlResource* resource) { argument 53 if (!resource->root) { 58 resource->root->Accept(&visitor);
|
H A D | XmlReferenceLinker.cpp | 153 bool XmlReferenceLinker::Consume(IAaptContext* context, xml::XmlResource* resource) { argument 154 CallSite callsite{resource->file.name.package}; 156 std::string out_name = resource->file.name.entry; 165 XmlVisitor visitor(resource->file.source, callsite, context, context->GetExternalSymbols()); 166 if (resource->root) { 167 resource->root->Accept(&visitor);
|
H A D | Linkers.h | 37 // Defines the context in which a resource value is defined. Most resources are defined with the 38 // implicit package name of their compilation context. Understanding the package name of a resource 44 // Determines whether a versioned resource should be created. If a versioned resource already 63 // If any attribute resource values are defined as public, this consumer will move all private 64 // attribute resource values to a private ^private-attr type, avoiding backwards compatibility 67 // The Android platform ignores resource attributes it doesn't recognize, so an app developer can 122 bool Consume(IAaptContext* context, xml::XmlResource* resource) override; 130 // Resolves attributes in the XmlResource and compiles string values to resource values. 136 bool Consume(IAaptContext* context, xml::XmlResource* resource) overrid [all...] |
/frameworks/layoutlib/bridge/src/com/android/layoutlib/bridge/util/ |
H A D | DynamicIdMap.java | 45 * Returns a dynamic integer for the given resource type/name, creating it if it doesn't 48 * @param type the type of the resource 49 * @param name the name of the resource 58 * Returns a dynamic integer for the given resource type/name, creating it if it doesn't 61 * @param resource the type/name of the resource 65 public Integer getId(Pair<ResourceType, String> resource) { argument 66 Integer value = mDynamicIds.get(resource); 69 mDynamicIds.put(resource, value); 70 mRevDynamicIds.put(value, resource); [all...] |
/frameworks/base/core/java/android/widget/ |
H A D | ArrayAdapter.java | 50 * and inflate a view resource. 87 * The resource indicating what views to inflate to display the content of this 93 * The resource indicating what views to inflate to display the content of this 110 * If the inflated resource is not a TextView, {@code mFieldId} is used to find 112 * identifier that matches the one defined in the resource file. 134 * @param resource The resource ID for a layout file containing a TextView to use when 137 public ArrayAdapter(@NonNull Context context, @LayoutRes int resource) { argument 138 this(context, resource, 0, new ArrayList<>()); 145 * @param resource Th 149 ArrayAdapter(@onNull Context context, @LayoutRes int resource, @IdRes int textViewResourceId) argument 163 ArrayAdapter(@onNull Context context, @LayoutRes int resource, @NonNull T[] objects) argument 177 ArrayAdapter(@onNull Context context, @LayoutRes int resource, @IdRes int textViewResourceId, @NonNull T[] objects) argument 190 ArrayAdapter(@onNull Context context, @LayoutRes int resource, @NonNull List<T> objects) argument 204 ArrayAdapter(@onNull Context context, @LayoutRes int resource, @IdRes int textViewResourceId, @NonNull List<T> objects) argument 209 ArrayAdapter(@onNull Context context, @LayoutRes int resource, @IdRes int textViewResourceId, @NonNull List<T> objects, boolean objsFromResources) argument 418 createViewFromResource(@onNull LayoutInflater inflater, int position, @Nullable View convertView, @NonNull ViewGroup parent, int resource) argument 465 setDropDownViewResource(@ayoutRes int resource) argument [all...] |
H A D | SimpleAdapter.java | 49 * <li> ImageView. The expected bind value is a resource id or a string and 79 * @param resource Resource identifier of a view layout that defines the views for this list 88 @LayoutRes int resource, String[] from, @IdRes int[] to) { 90 mResource = mDropDownResource = resource; 125 ViewGroup parent, int resource) { 128 v = inflater.inflate(resource, parent, false); 139 * <p>Sets the layout resource to create the drop down views.</p> 141 * @param resource the layout resource defining the drop down views 144 public void setDropDownViewResource(int resource) { argument 87 SimpleAdapter(Context context, List<? extends Map<String, ?>> data, @LayoutRes int resource, String[] from, @IdRes int[] to) argument 124 createViewFromResource(LayoutInflater inflater, int position, View convertView, ViewGroup parent, int resource) argument [all...] |
H A D | ViewAnimator.java | 56 int resource = a.getResourceId(com.android.internal.R.styleable.ViewAnimator_inAnimation, 0); 57 if (resource > 0) { 58 setInAnimation(context, resource); 61 resource = a.getResourceId(com.android.internal.R.styleable.ViewAnimator_outAnimation, 0); 62 if (resource > 0) { 63 setOutAnimation(context, resource); 308 * @param resourceID The resource id of the animation. 321 * @param resourceID The resource id of the animation.
|
/frameworks/base/tools/aapt2/format/binary/ |
H A D | XmlFlattener.h | 43 bool Consume(IAaptContext* context, const xml::XmlResource* resource);
|
/frameworks/base/core/java/android/view/animation/ |
H A D | LayoutAnimationController.java | 114 int resource = a.getResourceId(com.android.internal.R.styleable.LayoutAnimation_animation, 0); 115 if (resource > 0) { 116 setAnimation(context, resource); 119 resource = a.getResourceId(com.android.internal.R.styleable.LayoutAnimation_interpolator, 0); 120 if (resource > 0) { 121 setInterpolator(context, resource); 178 * @param resourceID the resource identifier of the animation 223 * @param resourceID the resource identifier of the interpolator
|
/frameworks/base/libs/hwui/hwui/ |
H A D | AnimatedImageThread.cpp | 19 #include <sys/resource.h>
|
/frameworks/native/opengl/tests/gl_perf/ |
H A D | filltest.cpp | 21 #include <sys/resource.h>
|
/frameworks/rs/tests/java_api/HelloComputeNDK/src/com/example/android/rs/hellocomputendk/ |
H A D | HelloComputeNDK.java | 56 private Bitmap loadBitmap(int resource) { argument 59 return BitmapFactory.decodeResource(getResources(), resource, options);
|
/frameworks/support/graphics/drawable/animated/src/androidTest/java/androidx/vectordrawable/graphics/drawable/tests/ |
H A D | DrawableUtils.java | 33 public static void saveVectorDrawableIntoPNG(Resources resource, Bitmap bitmap, int resId, argument 45 String originalFilePath = resource.getString(resId);
|
/frameworks/base/tests/DpiTest/src/com/google/android/test/dpi/ |
H A D | DpiTestActivity.java | 103 addLabelToRoot(root, "Prescaled resource drawable"); 132 addLabelToRoot(root, "No-dpi resource drawable"); 139 addLabelToRoot(root, "Prescaled 9-patch resource drawable"); 164 private void addBitmapDrawable(LinearLayout layout, int resource, boolean scale) { argument 166 bitmap = loadAndPrintDpi(resource, scale); 179 private void addResourceDrawable(LinearLayout layout, int resource) { argument 182 final Drawable d = getResources().getDrawable(resource); 190 private void addCanvasBitmap(LinearLayout layout, int resource, boolean scale) { argument 192 bitmap = loadAndPrintDpi(resource, scale); 201 private void addNinePatchResourceDrawable(LinearLayout layout, int resource) { argument [all...] |
/frameworks/base/tools/aapt2/format/proto/ |
H A D | ProtoSerialize.h | 45 void SerializeXmlResourceToPb(const xml::XmlResource& resource, pb::XmlNode* out_node);
|
/frameworks/base/tools/aapt2/process/ |
H A D | IResourceTableConsumer.h | 68 virtual bool Consume(IAaptContext* context, xml::XmlResource* resource) = 0;
|
/frameworks/base/tests/net/java/com/android/server/ |
H A D | IpSecServiceRefcountedResourceTest.java | 66 RefcountedResource<IResource> resource, 74 assertEquals(refCount, resource.mRefCount); 77 verify(resource, times(userReleaseCallCount)).userRelease(); 78 verify(resource, times(releaseReferenceCallCount)).releaseReference(); 81 verify(resource.getResource(), times(invalidateCallCount)).invalidate(); 82 verify(resource.getResource(), times(freeUnderlyingResourcesCallCount)) 103 RefcountedResource<IResource> resource = getTestRefcountedResource(binderMock); 105 // Verify resource's refcount starts at 1 (for user-reference) 106 assertResourceState(resource, 1, 0, 0, 0, 0); 277 // Check resource state 65 assertResourceState( RefcountedResource<IResource> resource, int refCount, int userReleaseCallCount, int releaseReferenceCallCount, int invalidateCallCount, int freeUnderlyingResourcesCallCount) argument [all...] |
/frameworks/layoutlib/bridge/src/com/android/layoutlib/bridge/bars/ |
H A D | CustomBar.java | 95 // Should not happen as the resource is bundled with the jar, and ParserFactory should 259 ResourceValue resource = renderResources.findItemInTheme(attr, true); 261 resource = renderResources.resolveResValue(resource); 262 if (resource != null) { 263 ResourceType type = resource.getResourceType(); 266 // file, rather than referencing a color resource value. 268 return ResourceHelper.getColor(resource.getValue()); 274 resource.getValue() + "'.", resource); [all...] |
/frameworks/support/frameworks/support/samples/SupportLeanbackJank/src/main/java/com/google/android/leanbackjank/ui/ |
H A D | MainFragment.java | 86 int resource = 0; 91 resource = R.raw.bbb_sunflower_2160p_60fps; 93 resource = R.raw.testvideo_1080p_60fps; 95 resource = R.raw.bbb_480p; 97 resource = R.raw.bbb_360p; 99 Uri uri = Uri.parse("android.resource://" + getActivity().getPackageName() + "/" 100 + resource);
|
/frameworks/support/samples/SupportLeanbackJank/src/main/java/com/google/android/leanbackjank/ui/ |
H A D | MainFragment.java | 86 int resource = 0; 91 resource = R.raw.bbb_sunflower_2160p_60fps; 93 resource = R.raw.testvideo_1080p_60fps; 95 resource = R.raw.bbb_480p; 97 resource = R.raw.bbb_360p; 99 Uri uri = Uri.parse("android.resource://" + getActivity().getPackageName() + "/" 100 + resource);
|
/frameworks/layoutlib/bridge/src/android/util/ |
H A D | BridgeXmlPullAttributes.java | 296 ResourceValue resource = getResourceValue(value); 297 if (resource != null) { 299 if (mPlatformFile || resource.isFramework()) { 300 id = Bridge.getResourceId(resource.getResourceType(), resource.getName()); 303 resource.getResourceType(), resource.getName());
|
/frameworks/base/libs/hwui/pipeline/skia/ |
H A D | SkiaMemoryTracer.cpp | 36 for (auto& resource : mResourceMap) { 37 if (SkStrContains(resourceName, resource.first)) { 38 return resource.second; 89 // if we don't have a resource name then we don't know how to label the
|
/frameworks/base/services/robotests/src/com/android/server/testing/ |
H A D | FrameworkRobolectricTestRunner.java | 139 public InputStream getResourceAsStream(String resource) { argument 141 Enumeration<URL> urls = getResources(resource); 151 return super.getResourceAsStream(resource);
|