Lines Matching refs:resId
100 int resId = getResources().getIdentifier(RES_DEFAULT_WALLPAPER_HIDDEN, "bool", in hideDefaultWallpaper() local
102 return resId != 0 && getResources().getBoolean(resId); in hideDefaultWallpaper()
106 int resId = getResources().getIdentifier(RES_SYSTEM_WALLPAPER_DIR, "string", in getWallpaperDirectory() local
108 return (resId != 0) ? new File(getResources().getString(resId)) : null; in getWallpaperDirectory()
112 int resId = getResources().getIdentifier(RES_REQUIRE_FIRST_RUN_FLOW, "bool", in requiresFirstRunFlow() local
114 return resId != 0 && getResources().getBoolean(resId); in requiresFirstRunFlow()
123 int resId = getResources().getIdentifier(RES_GRID_NUM_ROWS, in applyInvariantDeviceProfileOverrides() local
125 if (resId > 0) { in applyInvariantDeviceProfileOverrides()
126 numRows = getResources().getInteger(resId); in applyInvariantDeviceProfileOverrides()
129 resId = getResources().getIdentifier(RES_GRID_NUM_COLUMNS, in applyInvariantDeviceProfileOverrides()
131 if (resId > 0) { in applyInvariantDeviceProfileOverrides()
132 numColumns = getResources().getInteger(resId); in applyInvariantDeviceProfileOverrides()
135 resId = getResources().getIdentifier(RES_GRID_ICON_SIZE_DP, in applyInvariantDeviceProfileOverrides()
137 if (resId > 0) { in applyInvariantDeviceProfileOverrides()
138 int px = getResources().getDimensionPixelSize(resId); in applyInvariantDeviceProfileOverrides()