Searched refs:resource (Results 1 - 25 of 101) sorted by relevance

12345

/frameworks/base/libs/hwui/
H A DResourceCache.cpp35 ALOGD(" ResourceCache: mCache(%zu): resource, ref = 0x%p, 0x%p",
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 DResourceCache.h69 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 DXmlNamespaceRemover.cpp52 bool XmlNamespaceRemover::Consume(IAaptContext* context, xml::XmlResource* resource) { argument
53 if (!resource->root) {
58 resource->root->Accept(&visitor);
H A DLinkers.h41 ResourceNameRef resource; member in struct:aapt::CallSite
45 * Determines whether a versioned resource should be created. If a versioned
46 * resource already exists, it takes precedence.
66 * If any attribute resource values are defined as public, this consumer will
68 * attribute resource values to a private ^private-attr type, avoiding backwards
72 * The Android platform ignores resource attributes it doesn't recognize, so an
141 bool Consume(IAaptContext* context, xml::XmlResource* resource) override;
150 * Resolves attributes in the XmlResource and compiles string values to resource
158 bool Consume(IAaptContext* context, xml::XmlResource* resource) override;
H A DXmlReferenceLinker.cpp165 bool XmlReferenceLinker::Consume(IAaptContext* context, xml::XmlResource* resource) { argument
166 const CallSite callsite = {resource->file.name};
167 XmlVisitor visitor(resource->file.source, callsite, context, context->GetExternalSymbols());
168 if (resource->root) {
169 resource->root->Accept(&visitor);
/frameworks/layoutlib/bridge/src/com/android/layoutlib/bridge/util/
H A DDynamicIdMap.java45 * 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 DArrayAdapter.java50 * 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
162 ArrayAdapter(@onNull Context context, @LayoutRes int resource, @NonNull T[] objects) argument
175 ArrayAdapter(@onNull Context context, @LayoutRes int resource, @IdRes int textViewResourceId, @NonNull T[] objects) argument
188 ArrayAdapter(@onNull Context context, @LayoutRes int resource, @NonNull List<T> objects) argument
202 ArrayAdapter(@onNull Context context, @LayoutRes int resource, @IdRes int textViewResourceId, @NonNull List<T> objects) argument
207 ArrayAdapter(@onNull Context context, @LayoutRes int resource, @IdRes int textViewResourceId, @NonNull List<T> objects, boolean objsFromResources) argument
410 createViewFromResource(@onNull LayoutInflater inflater, int position, @Nullable View convertView, @NonNull ViewGroup parent, int resource) argument
457 setDropDownViewResource(@ayoutRes int resource) argument
[all...]
H A DSimpleAdapter.java49 * <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 DViewAnimator.java56 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/flatten/
H A DXmlFlattener.h44 bool Consume(IAaptContext* context, xml::XmlResource* resource) override;
/frameworks/base/core/java/android/view/animation/
H A DLayoutAnimationController.java114 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/native/opengl/tests/gl_perf/
H A Dfilltest.cpp21 #include <sys/resource.h>
/frameworks/rs/tests/java_api/HelloComputeNDK/src/com/example/android/rs/hellocomputendk/
H A DHelloComputeNDK.java56 private Bitmap loadBitmap(int resource) { argument
59 return BitmapFactory.decodeResource(getResources(), resource, options);
/frameworks/support/graphics/drawable/animated/tests/src/android/support/graphics/drawable/tests/
H A DDrawableUtils.java33 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 DDpiTestActivity.java103 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/process/
H A DIResourceTableConsumer.h68 virtual bool Consume(IAaptContext* context, xml::XmlResource* resource) = 0;
/frameworks/layoutlib/bridge/src/com/android/layoutlib/bridge/bars/
H A DCustomBar.java95 // 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/native/libs/sensor/
H A DISensorServer.cpp110 uint32_t size, int32_t type, int32_t format, const native_handle_t *resource) {
117 data.writeNativeHandle(resource);
198 native_handle_t *resource = data.readNativeHandle(); local
200 createSensorDirectConnection(opPackageName, size, type, format, resource);
201 native_handle_close(resource);
202 native_handle_delete(resource);
109 createSensorDirectConnection(const String16& opPackageName, uint32_t size, int32_t type, int32_t format, const native_handle_t *resource) argument
/frameworks/support/frameworks/support/samples/SupportLeanbackJank/src/com/google/android/leanbackjank/ui/
H A DMainFragment.java85 int resource = 0;
90 resource = R.raw.bbb_sunflower_2160p_60fps;
92 resource = R.raw.testvideo_1080p_60fps;
94 resource = R.raw.bbb_480p;
96 resource = R.raw.bbb_360p;
98 Uri uri = Uri.parse("android.resource://" + getActivity().getPackageName() + "/"
99 + resource);
/frameworks/support/samples/SupportLeanbackJank/src/com/google/android/leanbackjank/ui/
H A DMainFragment.java85 int resource = 0;
90 resource = R.raw.bbb_sunflower_2160p_60fps;
92 resource = R.raw.testvideo_1080p_60fps;
94 resource = R.raw.bbb_480p;
96 resource = R.raw.bbb_360p;
98 Uri uri = Uri.parse("android.resource://" + getActivity().getPackageName() + "/"
99 + resource);
/frameworks/layoutlib/bridge/src/android/util/
H A DBridgeXmlPullAttributes.java296 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/core/tests/coretests/src/android/widget/focus/
H A DListWithMailMessages.java117 public MyAdapter(Context context, int resource, argument
119 super(context, resource, objects);
/frameworks/support/frameworks/support/samples/SupportEmojiDemos/src/com/example/android/support/text/emoji/
H A DListFragment.java63 MyArrayAdapter(Context context, int resource, int textViewResourceId, argument
65 super(context, resource, textViewResourceId, objects);
/frameworks/support/samples/SupportEmojiDemos/src/com/example/android/support/text/emoji/
H A DListFragment.java63 MyArrayAdapter(Context context, int resource, int textViewResourceId, argument
65 super(context, resource, textViewResourceId, objects);
/frameworks/av/media/libmedia/
H A DMediaUtils.cpp22 #include <sys/resource.h>

Completed in 2310 milliseconds

12345