/external/chromium/chrome/common/extensions/docs/examples/api/extension/isAllowedAccess/ |
manifest.json | 10 "icons" : {
|
/external/chromium/chrome/common/extensions/docs/examples/api/infobars/sandwichbar/ |
manifest.json | 7 "icons" : {
|
/external/chromium/chrome/common/extensions/docs/examples/api/omnibox/extension-docs/ |
manifest.json | 9 "icons" : {
|
/external/chromium/chrome/common/extensions/docs/examples/api/pageAction/pageaction_by_content/ |
manifest.json | 22 "icons" : {
|
/external/chromium/chrome/common/extensions/docs/examples/api/pageAction/pageaction_by_url/ |
manifest.json | 14 "icons" : {
|
/external/chromium/chrome/common/extensions/docs/examples/extensions/buildbot/ |
manifest.json | 5 "icons": { "128": "icon.png" },
|
/external/chromium/chrome/common/extensions/docs/examples/extensions/email_this_page/ |
manifest.json | 6 "icons": { "128": "mail_128x128.png" },
|
/external/chromium/chrome/common/extensions/docs/examples/extensions/fx/ |
manifest.json | 7 "icons": { "128": "icon.png" },
|
/external/chromium/chrome/common/extensions/docs/examples/extensions/mappy/ |
manifest.json | 5 "icons": { "128": "icon.png" },
|
/external/chromium/chrome/common/extensions/docs/examples/tutorials/analytics/ |
manifest.json | 11 "icons": {
|
/external/chromium/chrome/browser/status_icons/ |
status_tray.h | 17 // APIs to add/remove icons to the tray and attach context menus. 22 // platform does not support status icons. 44 // Returns the list of active status icons so subclasses can operate on them.
|
/external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/icons/ |
Makefile | 5 ICONS := $(addsuffix .png, $(foreach name, $(NAMES), $(foreach size, $(SIZES), $(size)/$(name)))) 6 ICONS += $(addsuffix .xpm, $(NAMES)) 8 all: $(ICONS)
|
/frameworks/base/docs/html/guide/practices/ui_guidelines/ |
icon_design_list.jd | 1 page.title=List View Icons 39 <p>List view icons look a lot like dialog icons, but they use an inner shadow 46 medium-, and high-density screens. This ensures that your icons will display 50 for suggestions on how to work with multiple sets of icons.</p> 90 <p>Templates for creating icons in Adobe Photoshop are available in the <a 96 <p>The following guidelines describe how to design dialog icons for all versions 120 icons. Icon size is 32x32.</p> 128 <p>List view icons are flat and pictured face-on with an inner shadow. Built up 136 of light, effects, and shadows for list view icons."/ [all...] |
icon_design_tab.jd | 1 page.title=Tab Icons 12 <li><a href="#tabstates">Providing Icons for Two Tab States</a> 18 <li><a href="#examples5">Example icons</a></li> 43 <p>Tab icons are graphical elements used to represent individual tabs in a 48 medium-, and high-density screens. This ensures that your icons will display 51 for suggestions on how to work with multiple sets of icons.</p> 56 <p>Templates for creating icons in Adobe Photoshop are available in the <a 64 The style of tab icons has changed drastically in 68 1. Place tab icons for Android 2.0 and higher in the 71 2. Place tab icons for previous versions i [all...] |
icon_design_dialog.jd | 1 page.title=Dialog Icons 38 <p>Dialog icons are shown in pop-up dialog boxes that prompt the user for 44 medium-, and high-density screens. This ensures that your icons will display 48 for suggestions on how to work with multiple sets of icons.</p> 88 <p>Templates for creating icons in Adobe Photoshop are available in the <a 94 <p>The following guidelines describe how to design dialog icons for all versions 100 <li>Dialog icons have a 1 pixel safeframe. The base shape must fit within the 119 <p><strong>Figure 1. </strong>Safeframe and fill gradient for dialog icons. 129 <p>Dialog icons are flat and pictured face-on. In order to stand out against a 136 effects, and shadows for dialog icons."/ [all...] |
/packages/apps/Camera/res/values/ |
attrs.xml | 27 <attr name="icons" format="reference" /> 31 <!-- If a preference does not have individual icons for each entry, it can has a single icon to represent it. --> 33 <attr name="icons" />
|
/packages/apps/LegacyCamera/res/values/ |
attrs.xml | 27 <attr name="icons" format="reference" /> 31 <!-- If a preference does not have individual icons for each entry, it can has a single icon to represent it. --> 33 <attr name="icons" />
|
/external/jmonkeyengine/engine/src/test/jme3test/app/ |
TestChangeAppIcon.java | 54 ImageIO.read(clazz.getResourceAsStream("/Interface/icons/SmartMonkey256.png")), 55 ImageIO.read(clazz.getResourceAsStream("/Interface/icons/SmartMonkey128.png")), 56 ImageIO.read(clazz.getResourceAsStream("/Interface/icons/SmartMonkey32.png")), 57 ImageIO.read(clazz.getResourceAsStream("/Interface/icons/SmartMonkey16.png")), 60 log.log(java.util.logging.Level.WARNING, "Unable to load program icons", e);
|
/external/chromium/chrome/browser/extensions/ |
convert_web_app.cc | 38 const char kIconsDirName[] = "icons"; 111 // Add the icons. 112 DictionaryValue* icons = new DictionaryValue(); local 113 root->Set(keys::kIcons, icons); 114 for (size_t i = 0; i < web_app.icons.size(); ++i) { 115 std::string size = StringPrintf("%i", web_app.icons[i].width); 118 icons->SetString(size, icon_path); 147 LOG(ERROR) << "Could not create icons directory."; 150 for (size_t i = 0; i < web_app.icons.size(); ++i) { 152 StringPrintf("%i.png", web_app.icons[i].width)) [all...] |
convert_web_app_unittest.cc | 105 web_app.icons.push_back(GetIconInfo(icon_url, sizes[i])); 133 EXPECT_EQ(web_app.icons.size(), extension->icons().map().size()); 134 for (size_t i = 0; i < web_app.icons.size(); ++i) { 135 EXPECT_EQ(StringPrintf("icons/%i.png", web_app.icons[i].width), 136 extension->icons().Get(web_app.icons[i].width, 139 web_app.icons[i].width, ExtensionIconSet::MATCH_EXACTLY); 169 EXPECT_EQ(0u, extension->icons().map().size()) [all...] |
/external/webkit/Source/WebKit/mac/Misc/ |
WebIconDatabase.h | 50 - memory cache icons at different sizes 55 - UI elements to retrieve icons that represent site URLs. 56 - Save icons to disk for later use. 58 Every icon in the database has a retain count. If an icon has a retain count greater than 0, it will be written to disk for later use. If an icon's retain count equals zero it will be removed from disk. The retain count is not persistent across launches. If the WebKit client wishes to retain an icon it should retain the icon once for every launch. This is best done at initialization time before the database begins removing icons. To make sure that the database does not remove unretained icons prematurely, call delayDatabaseCleanup until all desired icons are retained. Once all are retained, call allowDatabaseCleanup. 60 Note that an icon can be retained after the database clean-up has begun. This just has to be done before the icon is removed. Icons are removed from the database whenever new icons are added to it. 62 Retention methods can be called for icons that are not yet in the database. 127 @discussion Only effective if called before the database begins removing icons [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.hierarchyviewer/ |
plugin.xml | 10 icon="icons/device.png" 18 icon="icons/pixel-perfect.png" 26 icon="icons/pixel-perfect.png" 34 icon="icons/pixel-perfect.png" 42 icon="icons/tree-view.png" 50 icon="icons/tree-view.png" 58 icon="icons/tree-view.png" 66 icon="icons/tree-view.png" 75 icon="icons/pixel-perfect.png" 80 icon="icons/hierarchyviewer-16.png [all...] |
/external/chromium/chrome/browser/ |
browser_main_win.h | 28 // This method handles the --hide-icons and --show-icons command line options 30 // HideIconsCommand & ShowIconsCommand. Chrome doesn't support hide icons
|
/external/chromium/chrome/browser/resources/help_app/ |
manifest.json | 5 "icons": {"16": "images/Help_16.png",
|
/external/chromium/chrome/browser/resources/picasaweb_uploader/ |
manifest.json | 6 "icons": {
|