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

1 2 3

  /external/pdfium/fpdfsdk/src/javascript/
Icon.cpp 12 #include "../../include/javascript/Icon.h"
14 /* ---------------------- Icon ---------------------- */
26 IMPLEMENT_JS_CLASS(CJS_Icon,Icon)
28 Icon::Icon(CJS_Object* pJSObject) : CJS_EmbedObj(pJSObject),
34 Icon::~Icon()
39 void Icon::SetStream(CPDF_Stream* pIconStream)
45 CPDF_Stream* Icon::GetStream()
50 void Icon::SetIconName(CFX_WideString name)
    [all...]
  /external/chromium_org/content/public/common/
manifest.cc 9 const double Manifest::Icon::kDefaultDensity = 1;
12 Manifest::Icon::Icon()
16 Manifest::Icon::~Icon() {
manifest.h 30 // Structure representing an icon as per the Manifest specification, see:
31 // http://w3c.github.io/manifest/#dfn-icon-object
32 struct CONTENT_EXPORT Icon {
33 Icon();
34 ~Icon();
36 // MUST be a valid url. If an icon doesn't have a valid URL, it will not be
83 std::vector<Icon> icons;
  /external/pdfium/fpdfsdk/include/javascript/
Icon.h 10 class Icon : public CJS_EmbedObj
13 Icon(CJS_Object* pJSObject);
14 virtual ~Icon();
38 JS_STATIC_PROP(name, Icon);
Document.h 39 class Icon;
50 Icon* IconStream;
  /bootable/recovery/
screen_ui.h 26 // (shows an icon + a progress bar, text logging, menu, etc.)
35 void SetBackground(Icon icon);
64 Icon currentIcon;
112 void draw_background_locked(Icon icon);
ui.h 40 enum Icon { NONE, INSTALLING_UPDATE, ERASING, NO_COMMAND, ERROR };
41 virtual void SetBackground(Icon icon) = 0;
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/layout/expected/
ExpectedKeyVisual.java 29 * There are two types of expected visual, an integer icon id and a string label.
37 return new Icon(iconId);
49 * This class represents an integer icon id.
51 private static class Icon extends ExpectedKeyVisual {
54 Icon(final int iconId) {
90 return (visual instanceof Icon) && mIconId == ((Icon)visual).mIconId;
  /external/chromium_org/chrome/browser/android/
shortcut_helper.h 61 // Callback run when the requested Manifest icon is ready to be used.
69 // OnDidDownloadIcon has a valid icon.
117 // Runs the algorithm to find the best matching icon in the icons listed in
119 // Returns the icon url if a suitable icon is found. An empty URL otherwise.
121 const std::vector<content::Manifest::Icon>& icons) const;
123 // Runs an algorithm only based on icon declared sizes. It will try to find
126 // Returns the icon url if a suitable icon is found. An empty URL otherwise.
127 GURL FindBestMatchingIcon(const std::vector<content::Manifest::Icon>& icons
    [all...]
shortcut_helper_unittest.cc 102 GURL FindBestMatchingIcon(const std::vector<content::Manifest::Icon>& icons) {
116 static content::Manifest::Icon CreateIcon(
121 content::Manifest::Icon icon; local
122 icon.src = GURL(url);
124 icon.type = base::NullableString16(base::UTF8ToUTF16(type), false);
125 icon.density = density;
126 icon.sizes = sizes;
128 return icon;
140 std::vector<content::Manifest::Icon> icons
    [all...]
shortcut_helper.cc 40 // Android's preferred icon size in DP is 48, as defined in
138 const std::vector<Manifest::Icon>& icons, float density) const {
167 std::vector<Manifest::Icon> ShortcutHelper::FilterIconsByType(
168 const std::vector<Manifest::Icon>& icons) {
169 std::vector<Manifest::Icon> result;
183 const std::vector<Manifest::Icon>& unfiltered_icons) const {
189 std::vector<Manifest::Icon> icons = FilterIconsByType(unfiltered_icons);
191 // The first pass is to find the ideal icon. That icon is of the right size
199 // If there is an icon with the right size but not the right density, kee
    [all...]
  /external/chromium_org/content/common/
manifest_manager_messages.h 20 IPC_STRUCT_TRAITS_BEGIN(content::Manifest::Icon)
  /sdk/hierarchyviewer/src/com/android/hierarchyviewer/ui/util/
IconLoader.java 3 import javax.swing.Icon;
13 public static Icon load(Class<?> klass, String path) {
  /frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
QSTile.java 316 public static abstract class Icon {
321 return Icon.class.hashCode();
325 public static class ResourceIcon extends Icon {
326 private static final SparseArray<Icon> ICONS = new SparseArray<Icon>();
334 public static Icon get(int resId) {
335 Icon icon = ICONS.get(resId); local
336 if (icon == null) {
337 icon = new ResourceIcon(resId)
400 public Icon icon; field in class:QSTile.State
    [all...]
  /external/chromium_org/content/renderer/manifest/
manifest_parser.cc 145 // Parses the 'src' field of an icon, as defined in:
146 // http://w3c.github.io/manifest/#dfn-steps-for-processing-the-src-member-of-an-icon
148 GURL ParseIconSrc(const base::DictionaryValue& icon,
150 return ParseURL(icon, "src", manifest_url);
153 // Parses the 'type' field of an icon, as defined in:
154 // http://w3c.github.io/manifest/#dfn-steps-for-processing-the-type-member-of-an-icon
156 base::NullableString16 ParseIconType(const base::DictionaryValue& icon) {
157 return ParseString(icon, "type", Trim);
160 // Parses the 'density' field of an icon, as defined in:
161 // http://w3c.github.io/manifest/#dfn-steps-for-processing-a-density-member-of-an-icon
263 Manifest::Icon icon; local
    [all...]
manifest_parser_unittest.cc 329 // Smoke test: if no icon, empty list.
336 // Smoke test: if empty icon, empty list.
343 // Smoke test: icon with invalid src, empty list.
350 // Smoke test: if icon with empty src, it will be present in the list.
456 EXPECT_EQ(manifest.icons[0].density, Manifest::Icon::kDefaultDensity);
463 EXPECT_EQ(manifest.icons[0].density, Manifest::Icon::kDefaultDensity);
484 EXPECT_EQ(manifest.icons[0].density, Manifest::Icon::kDefaultDensity);
491 EXPECT_EQ(manifest.icons[0].density, Manifest::Icon::kDefaultDensity);
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
Input.java 30 public Bitmap icon; field in class:Input
44 icon = null;
59 icon = in.readParcelable(null);
80 dest.writeParcelable(icon, 0);
104 boolean setIcon(Bitmap Icon) { return true; }
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib-tk/
Tkdnd.py 7 the use of a particular widget or icon type, etc. I also hope that
208 class Icon:
312 i1 = Icon("ICON1")
313 i2 = Icon("ICON2")
314 i3 = Icon("ICON3")
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/
Tkdnd.py 7 the use of a particular widget or icon type, etc. I also hope that
208 class Icon:
312 i1 = Icon("ICON1")
313 i2 = Icon("ICON2")
314 i3 = Icon("ICON3")
  /sdk/hierarchyviewer/src/com/android/hierarchyviewer/ui/
CaptureRenderer.java 28 CaptureRenderer(ImageIcon icon, ViewNode node) {
29 super(icon);
53 Icon icon = getIcon(); local
54 int width = icon.getIconWidth();
55 int height = icon.getIconHeight();
60 icon.paintIcon(this, g, x, y);
  /external/chromium_org/chrome/tools/build/linux/
chrome-wrapper 63 Icon=$HERE/product_logo_48.png
  /device/asus/fugu/recovery/
recovery_ui.cpp 146 void SetBackground(Icon icon) {
147 ScreenRecoveryUI::SetBackground(icon);
149 background_mode = icon;
266 Icon background_mode;
  /frameworks/base/packages/SystemUI/src/com/android/systemui/qs/tiles/
IntentTile.java 113 state.icon = null;
117 state.icon = new BytesIcon(iconBitmap);
119 Log.w(TAG, "Error loading icon bitmap, length " + iconBitmap.length, t);
126 state.icon = new PackageDrawableIcon(iconPackage, iconId);
128 state.icon = ResourceIcon.get(iconId);
145 private static class BytesIcon extends Icon {
169 private class PackageDrawableIcon extends Icon {
  /external/chromium_org/tools/json_schema_compiler/test/
idl_schemas_unittest.cc 188 ObjectFunction1::Params::Icon icon; local
189 EXPECT_TRUE(ObjectFunction1::Params::Icon::Populate(*(icon_props.get()),
190 &icon));
197 EXPECT_TRUE(params->icon.additional_properties.GetString("hello", &tmp));
  /external/stlport/etc/
STLport-4.5.1.spec 11 Icon: stlport_powered_white.gif

Completed in 564 milliseconds

1 2 3