[go: nahoru, domu]

Searched refs:resolveRefs (Results 1 - 8 of 8) sorted by relevance

/frameworks/support/v7/appcompat/src/android/support/v7/widget/
H A DResourcesWrapper.java202 public void getValue(int id, TypedValue outValue, boolean resolveRefs) argument
204 mResources.getValue(id, outValue, resolveRefs);
208 public void getValueForDensity(int id, int density, TypedValue outValue, boolean resolveRefs) argument
210 mResources.getValueForDensity(id, density, outValue, resolveRefs);
214 public void getValue(String name, TypedValue outValue, boolean resolveRefs) argument
216 mResources.getValue(name, outValue, resolveRefs);
/frameworks/base/test-runner/src/android/test/mock/
H A DMockResources.java177 public void getValue(int id, TypedValue outValue, boolean resolveRefs) argument
183 public void getValue(String name, TypedValue outValue, boolean resolveRefs) argument
/frameworks/base/tools/layoutlib/bridge/src/android/content/res/
H A DResources_Theme_Delegate.java94 boolean resolveRefs) {
97 outValue, resolveRefs);
91 resolveAttribute( Resources thisResources, Theme thisTheme, int resid, TypedValue outValue, boolean resolveRefs) argument
H A DResources_Delegate.java722 static void getValue(Resources resources, int id, TypedValue outValue, boolean resolveRefs) argument
752 static void getValue(Resources resources, String name, TypedValue outValue, boolean resolveRefs) argument
/frameworks/base/core/java/android/content/res/
H A DAssetManager.java210 * @param resolveRefs {@code true} to resolve references, {@code false}
216 boolean resolveRefs) {
217 final int block = loadResourceValue(resId, (short) densityDpi, outValue, resolveRefs);
256 * @param resolveRefs {@code true} to resolve references, {@code false}
262 boolean resolveRefs) {
263 final int block = loadThemeAttributeValue(theme, resId, outValue, resolveRefs);
215 getResourceValue(@nyRes int resId, int densityDpi, @NonNull TypedValue outValue, boolean resolveRefs) argument
261 getThemeValue(long theme, @AnyRes int resId, @NonNull TypedValue outValue, boolean resolveRefs) argument
H A DResources.java720 * {@code true} for {@code resolveRefs}. The resulting
1276 * @param resolveRefs If true, a resource that is a reference to another
1284 public void getValue(@AnyRes int id, TypedValue outValue, boolean resolveRefs) argument
1286 mResourcesImpl.getValue(id, outValue, resolveRefs);
1294 * @param resolveRefs If true, a resource that is a reference to another
1303 boolean resolveRefs) throws NotFoundException {
1304 mResourcesImpl.getValueForDensity(id, density, outValue, resolveRefs);
1319 * @param resolveRefs If true, a resource that is a reference to another
1327 public void getValue(String name, TypedValue outValue, boolean resolveRefs) argument
1329 mResourcesImpl.getValue(name, outValue, resolveRefs);
1302 getValueForDensity(@nyRes int id, int density, TypedValue outValue, boolean resolveRefs) argument
1528 resolveAttribute(int resid, TypedValue outValue, boolean resolveRefs) argument
[all...]
H A DResourcesImpl.java184 void getValue(@AnyRes int id, TypedValue outValue, boolean resolveRefs) argument
186 boolean found = mAssets.getResourceValue(id, 0, outValue, resolveRefs);
194 boolean resolveRefs) throws NotFoundException {
195 boolean found = mAssets.getResourceValue(id, density, outValue, resolveRefs);
202 void getValue(String name, TypedValue outValue, boolean resolveRefs) argument
206 getValue(id, outValue, resolveRefs);
1149 boolean resolveAttribute(int resid, TypedValue outValue, boolean resolveRefs) { argument
1151 return mAssets.getThemeValue(mTheme, resid, outValue, resolveRefs);
193 getValueForDensity(@nyRes int id, int density, TypedValue outValue, boolean resolveRefs) argument
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/
H A DBridgeContext.java327 public boolean resolveThemeAttribute(int resId, TypedValue outValue, boolean resolveRefs) { argument
341 if (resolveRefs) {

Completed in 236 milliseconds