Searched defs:resource (Results 1 - 25 of 43) sorted by relevance

12

/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 DXmlReferenceLinker.cpp153 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);
/frameworks/base/tests/UsbTests/src/com/android/server/usb/
H A DUsbDescriptorParserTests.java48 public UsbDescriptorParser loadParser(int resource) { argument
53 is = res.openRawResource(resource);
55 fail("Failed to load resource.");
/frameworks/support/graphics/drawable/animated/src/androidTest/java/androidx/vectordrawable/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/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/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/base/core/java/android/transition/
H A DTransitionInflater.java40 * This class inflates scenes and transitions from resource files.
42 * Information on XML resource descriptions for transitions can be found for
68 * Loads a {@link Transition} object from a resource
70 * @param resource The resource id of the transition to load
75 public Transition inflateTransition(@TransitionRes int resource) { argument
77 XmlResourceParser parser = mContext.getResources().getXml(resource);
96 * Loads a {@link TransitionManager} object from a resource
98 * @param resource The resource i
103 inflateTransitionManager(@ransitionRes int resource, ViewGroup sceneRoot) argument
[all...]
/frameworks/base/core/tests/coretests/src/android/widget/
H A DListViewTest.java133 public Adapter(Context context, int resource, List<T> objects) { argument
134 super(context, resource, objects);
/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/base/libs/hwui/
H A DResourceCache.cpp35 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...]
/frameworks/base/services/robotests/src/com/android/server/testing/
H A DFrameworkRobolectricTestRunner.java139 public InputStream getResourceAsStream(String resource) { argument
141 Enumeration<URL> urls = getResources(resource);
151 return super.getResourceAsStream(resource);
/frameworks/support/frameworks/support/samples/SupportEmojiDemos/src/main/java/com/example/android/support/text/emoji/
H A DListFragment.java64 MyArrayAdapter(Context context, int resource, int textViewResourceId, argument
66 super(context, resource, textViewResourceId, objects);
/frameworks/support/samples/SupportEmojiDemos/src/main/java/com/example/android/support/text/emoji/
H A DListFragment.java64 MyArrayAdapter(Context context, int resource, int textViewResourceId, argument
66 super(context, resource, textViewResourceId, objects);
/frameworks/support/transition/src/main/java/androidx/transition/
H A DTransitionInflater.java39 * This class inflates scenes and transitions from resource files.
61 * Loads a {@link Transition} object from a resource
63 * @param resource The resource id of the transition to load
68 public Transition inflateTransition(int resource) { argument
69 XmlResourceParser parser = mContext.getResources().getXml(resource);
83 * Loads a {@link TransitionManager} object from a resource
85 * @param resource The resource id of the transition manager to load
90 public TransitionManager inflateTransitionManager(int resource, ViewGrou argument
[all...]
/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/tests/net/java/com/android/server/
H A DIpSecServiceRefcountedResourceTest.java66 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/data-binding/compilationTests/src/test/java/android/databinding/compilationTest/
H A DSimpleCompilationTest.java112 private ScopedException singleFileErrorTest(String resource, String targetFile, argument
116 copyResourceTo(resource, targetFile);
139 private void singleFileWarningTest(String resource, String targetFile, argument
143 copyResourceTo(resource, targetFile);
/frameworks/opt/datetimepicker/src/com/android/datetimepicker/date/
H A DYearPickerView.java105 public YearAdapter(Context context, int resource, List<String> objects) { argument
106 super(context, resource, objects);
/frameworks/rs/tests/java_api/GenImages/src/com/android/rs/genimage/
H A DGenImage.java43 private Bitmap loadBitmap(Context context, int resource) { argument
46 return BitmapFactory.decodeResource(context.getResources(), resource, options);
/frameworks/rs/tests/java_api/SampleTest/src/com/android/rs/sample/
H A DSampleRSActivity.java144 private Bitmap loadBitmap(int resource) { argument
147 Bitmap b = BitmapFactory.decodeResource(getResources(), resource, options);
/frameworks/support/preference/src/main/java/androidx/preference/
H A DPreferenceInflater.java107 * Inflate a new item hierarchy from the specified xml resource. Throws
110 * @param resource ID for an XML resource to load (e.g.,
117 public Preference inflate(int resource, @Nullable PreferenceGroup root) { argument
118 XmlResourceParser parser = getContext().getResources().getXml(resource);
/frameworks/base/core/java/android/preference/
H A DGenericInflater.java210 * Inflate a new item hierarchy from the specified xml resource. Throws
213 * @param resource ID for an XML resource to load (e.g.,
220 public T inflate(@XmlRes int resource, P root) { argument
221 return inflate(resource, root, root != null);
245 * Inflate a new hierarchy from the specified xml resource. Throws
248 * @param resource ID for an XML resource to load (e.g.,
260 public T inflate(@XmlRes int resource, P root, boolean attachToRoot) { argument
261 if (DEBUG) System.out.println("INFLATING from 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
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 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...]
/frameworks/base/services/tests/servicestests/src/com/android/server/
H A DMountServiceTests.java115 fail("Failed to load resource with id: " + rawResId);
128 private void mountObb(StorageManager sm, final int resource, final File file, argument
130 copyRawToFile(resource, file);
149 private ObbObserver mountObbWithoutWait(final StorageManager sm, final int resource, argument
151 copyRawToFile(resource, file);

Completed in 629 milliseconds

12