HomeSort by relevance Sort by last modified time
    Searched refs:icons (Results 1 - 25 of 269) sorted by null

1 2 3 4 5 6 7 8 91011

  /frameworks/base/packages/EasterEgg/src/com/android/egg/neko/
Food.java 36 TypedArray icons = context.getResources().obtainTypedArray(R.array.food_icons); local
37 sIcons = new int[icons.length()];
39 sIcons[i] = icons.getResourceId(i, 0);
41 icons.recycle();
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/
build.properties 18 icons/,\
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/car/
CarNavigationBarController.java 117 TypedArray icons = r.obtainTypedArray(R.array.car_facet_icons); local
125 if (icons.length() != intents.length()
126 || icons.length() != longpressIntents.length()
127 || icons.length() != facetPackageNames.length()
128 || icons.length() != facetCategories.length()) {
132 mIntents = createEmptyIntentList(icons.length());
133 mLongPressIntents = createEmptyIntentList(icons.length());
135 for (int i = 0; i < icons.length(); i++) {
136 Drawable icon = icons.getDrawable(i);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/uimodel/
UiViewElementNode.java 142 IconFactory icons = IconFactory.getInstance(); local
146 IconFactory factory = icons;
158 img = icons.getIcon(className);
165 img = icons.getIcon("View"); //$NON-NLS-1$
181 return icons.addErrorIcon(img);
183 return icons.addWarningIcon(img);
  /external/selinux/policycoreutils/gui/
Makefile 32 -mkdir -p $(DATADIR)/icons/hicolor/24x24/apps
42 install -m 644 system-config-selinux.png $(DATADIR)/icons/hicolor/24x24/apps
  /frameworks/base/packages/SystemUI/src/com/android/systemui/
BatteryMeterView.java 68 ArraySet<String> icons = StatusBarIconController.getIconBlacklist(newValue); local
69 setVisibility(icons.contains(mSlotBattery) ? View.GONE : View.VISIBLE);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/configuration/
Locale.java 121 FlagManager icons = FlagManager.get(); local
122 Image image = icons.getFlag(languageCode, regionCode);
ConfigurationChooser.java 202 IconFactory icons = IconFactory.getInstance(); local
209 mConfigCombo.setImage(icons.getIcon("android_file")); //$NON-NLS-1$
216 mDeviceCombo.setImage(icons.getIcon(ICON_DISPLAY));
222 mOrientationCombo.setImage(icons.getIcon(ICON_PORTRAIT));
229 mThemeCombo.setImage(icons.getIcon(ICON_THEMES));
242 mActivityCombo.setImage(icons.getIcon(ICON_ACTIVITY));
973 IconFactory icons = IconFactory.getInstance(); local
986 IconFactory icons = IconFactory.getInstance(); local
    [all...]
  /frameworks/base/packages/Osu/src/com/android/hotspot2/osu/
IconCache.java 126 private QuerySet(OSUInfo osuInfo, List<IconInfo> icons) {
129 for (IconInfo iconInfo : icons) {
225 public void startIconQuery(OSUInfo osuInfo, List<IconInfo> icons) {
226 Log.d("ZXZ", String.format("Icon query on %012x for %s", osuInfo.getBSSID(), icons));
227 if (icons == null || icons.isEmpty()) {
231 QuerySet querySet = new QuerySet(osuInfo, icons);
OSUInfo.java 185 Log.d(OSUManager.TAG, "Matching icons against " + locale
215 List<IconInfo> icons = new ArrayList<>(matches.size()); local
217 icons.add(scoredIcon.getData());
219 return icons;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
SwtUtils.java 413 IconFactory icons = IconFactory.getInstance();
415 sShadowBottomLeft = icons.getIcon("shadow-bl"); //$NON-NLS-1$
416 sShadowBottom = icons.getIcon("shadow-b"); //$NON-NLS-1$
417 sShadowBottomRight = icons.getIcon("shadow-br"); //$NON-NLS-1$
418 sShadowRight = icons.getIcon("shadow-r"); //$NON-NLS-1$
419 sShadowTopRight = icons.getIcon("shadow-tr"); //$NON-NLS-1$
LayoutActionBar.java 385 List<URL> icons = choices.getIconUrls(); local
390 assert icons != null;
391 assert icons.size() == titles.size();
393 for (int i = 0; i < icons.size(); i++) {
394 URL iconUrl = icons.get(i);
435 List<URL> icons = choices.getIconUrls();
443 URL itemIconUrl = icons != null && icons.size() > 0 ? icons.get(i) : null;
  /external/selinux/policycoreutils/sepolicy/
Makefile 54 mkdir -p $(DESTDIR) $(DATADIR)/icons/hicolor/$${i}x$${i}/apps; \
55 install -m 644 sepolicy_$${i}.png $(DATADIR)/icons/hicolor/$${i}x$${i}/apps/sepolicy.png; \
  /packages/apps/Contacts/
Android.mk 16 res_dirs := res res-aosp $(contacts_common_dir)/res $(contacts_common_dir)/icons/res $(phone_common_dir)/res
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/templates/
TemplateMetadata.java 222 * icons to be created, and null otherwise
229 NodeList icons = mDocument.getElementsByTagName(TAG_ICONS); local
230 if (icons.getLength() < 1) {
234 Element icon = (Element) icons.item(0);
323 NodeList icons = mDocument.getElementsByTagName(TAG_ICONS); local
324 if (icons.getLength() < 1) {
327 Element icon = (Element) icons.item(0);
  /packages/apps/Settings/src/com/android/settings/
ActivityPicker.java 148 ArrayList<ShortcutIconResource> icons = local
151 if (labels != null && icons != null && labels.size() == icons.size()) {
158 ShortcutIconResource iconResource = icons.get(i);
321 * Utility class to resize icons to match default icon size. Code is mostly
  /developers/build/prebuilts/gradle/WatchFace/Wearable/src/main/java/com/example/android/wearable/watchface/
ComplicationSimpleConfigActivity.java 110 TypedArray icons = getResources().obtainTypedArray(R.array.complication_simple_icons); local
117 icons.getDrawable(i),
  /developers/samples/android/wearable/wear/WatchFace/Wearable/src/main/java/com/example/android/wearable/watchface/
ComplicationSimpleConfigActivity.java 110 TypedArray icons = getResources().obtainTypedArray(R.array.complication_simple_icons); local
117 icons.getDrawable(i),
  /development/samples/browseable/WatchFace/Wearable/src/com.example.android.wearable.watchface/
ComplicationSimpleConfigActivity.java 110 TypedArray icons = getResources().obtainTypedArray(R.array.complication_simple_icons); local
117 icons.getDrawable(i),
  /packages/apps/Dialer/
Android.mk 24 $(contacts_common_dir)/icons/res \
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/layout/configuration/
FlagManagerTest.java 82 // icons;
83 // see http://www.famfamfam.com/lab/icons/flags)
84 String[] icons = new String[] { local
106 for (String code : icons) {
155 sb.append("The following icons are not referenced by any of the "
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
MobileSignalController.java 222 MobileIconGroup icons = getIcons(); local
225 String dataContentDescription = getStringIfExists(icons.mDataContentDescription);
241 qsTypeIcon = showDataIcon ? icons.mQsDataType : 0;
255 int typeIcon = showDataIcon ? icons.mDataType : 0;
257 activityIn, activityOut, dataContentDescription, description, icons.mIsWide,
  /packages/apps/Launcher3/src/com/android/launcher3/folder/
FolderPagedView.java 178 ArrayList<View> icons = new ArrayList<View>(); local
182 if (!ALLOW_FOLDER_SCROLL && icons.size() >= mMaxItemsPerPage) {
185 icons.add(createNewView(item));
188 arrangeChildren(icons, icons.size(), false);
536 * Ensures that all the icons on the given page are of high-res
  /external/libgdx/backends/gdx-backend-lwjgl/src/com/badlogic/gdx/backends/lwjgl/
LwjglGraphics.java 194 ByteBuffer[] icons = new ByteBuffer[config.iconPaths.size]; local
202 icons[i] = ByteBuffer.allocateDirect(pixmap.getPixels().limit());
203 icons[i].put(pixmap.getPixels()).flip();
206 Display.setIcon(icons);
  /external/pdfium/fpdfsdk/src/javascript/
Document.h 78 FX_BOOL icons(IJS_Context* cc, CJS_PropValue& vp, CFX_WideString& sError);
303 JS_STATIC_PROP(icons, Document);

Completed in 1140 milliseconds

1 2 3 4 5 6 7 8 91011