Searched defs:icon (Results 1 - 25 of 66) sorted by relevance

123

/external/lzma/CPP/Windows/Control/
H A DStatic.h18 HICON SetIcon(HICON icon) { return (HICON)SetImage(IMAGE_ICON, icon); } argument
21 HICON SetIcon(HICON icon) { return (HICON)SendMsg(STM_SETICON, (WPARAM)icon, 0); } argument
H A DImageList.h63 int AddIcon(HICON icon) argument
64 { return ImageList_AddIcon(m_Object, icon); }
65 int Replace(int index, HICON icon) argument
66 { return ImageList_ReplaceIcon(m_Object, index, icon); }
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/fakes/
H A DRoboSubMenu.java39 public SubMenu setHeaderIcon(Drawable icon) { argument
58 public SubMenu setIcon(Drawable icon) { argument
H A DRoboMenuItem.java26 public Drawable icon; field in class:RoboMenuItem
100 public MenuItem setIcon(Drawable icon) { argument
101 this.icon = icon;
107 this.icon = iconRes == 0 ? null : context.getResources().getDrawable(iconRes);
113 return this.icon;
/external/sl4a/ScriptingLayerForAndroid/src/com/googlecode/android_scripting/activity/
H A DScriptsLiveFolder.java48 private Intent createLiveFolder(Context context, Uri uri, String name, int icon) { argument
53 .fromContext(this, icon));
/external/webrtc/webrtc/modules/audio_device/test/android/audio_device_android_test/gen/org/webrtc/voiceengine/test/
H A DR.java14 public static final int icon=0x7f020000; field in class:R.drawable
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/tester/android/view/
H A DTestSubMenu.java26 public SubMenu setHeaderIcon(Drawable icon) { argument
45 public SubMenu setIcon(Drawable icon) { argument
H A DTestMenuItem.java76 public MenuItem setIcon(Drawable icon) { argument
/external/webrtc/webrtc/voice_engine/test/android/android_test/gen/org/webrtc/voiceengine/test/
H A DR.java14 public static final int icon=0x7f020000; field in class:R.drawable
/external/pdfium/testing/
H A Dembedder_test_timer_handling_delegate.h22 int icon; member in struct:EmbedderTestTimerHandlingDelegate::AlertRecord
34 int icon) override {
36 {GetPlatformWString(message), GetPlatformWString(title), type, icon});
H A Dembedder_test.h46 int icon) {
196 int icon);
43 Alert(FPDF_WIDESTRING message, FPDF_WIDESTRING title, int type, int icon) argument
/external/python/cpython2/Lib/idlelib/
H A DReplaceDialog.py20 icon = "Replace" variable in class:ReplaceDialog
H A DSearchDialogBase.py28 icon = "Search" variable in class:SearchDialogBase
41 icon (of dialog): ditto, use unclear if cannot minimize dialog.
80 top.wm_iconname(self.icon)
H A DGrepDialog.py25 icon = "Grep" variable in class:GrepDialog
/external/python/cpython3/Lib/idlelib/
H A Dsearchbase.py29 icon = "Search" variable in class:SearchDialogBase
42 icon (of dialog): ditto, use unclear if cannot minimize dialog.
81 top.wm_iconname(self.icon)
H A Dgrep.py26 icon = "Grep" variable in class:GrepDialog
H A Dreplace.py27 icon = "Replace" variable in class:ReplaceDialog
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowNotification.java23 public void __constructor__(int icon, CharSequence tickerText, long when) { argument
24 realNotification.icon = icon;
H A DShadowTabSpec.java24 private Drawable icon; field in class:ShadowTabSpec
52 return this.icon;
75 public TabHost.TabSpec setIndicator(CharSequence label, Drawable icon) { argument
77 this.icon = icon;
/external/lzma/CPP/7zip/UI/FileManager/
H A DProgressDialog.cpp64 HICON icon = LoadIcon(g_hInstance, MAKEINTRESOURCE(IconID)); local
65 SetIcon(ICON_BIG, icon);
/external/lzma/CPP/7zip/UI/GUI/
H A DExtractDialog.cpp233 HICON icon = LoadIcon(g_hInstance, MAKEINTRESOURCE(IDI_ICON)); local
234 SetIcon(ICON_BIG, icon);
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
H A DShadowTabHost.java137 private Drawable icon; field in class:ShadowTabHost.ShadowTabSpec
165 return this.icon;
190 public TabSpec setIndicator(CharSequence label, Drawable icon) { argument
192 this.icon = icon;
/external/mdnsresponder/mDNSWindows/DNSServiceBrowser/Windows/Sources/
H A DChooserDialog.cpp367 HICON icon; local
376 // Set up the window icon.
378 icon = AfxGetApp()->LoadIcon( IDR_MAIN_ICON );
379 assert( icon );
380 if( icon )
382 SetIcon( icon, TRUE ); // Set big icon
383 SetIcon( icon, FALSE ); // Set small icon
/external/python/cpython2/Lib/plat-mac/
H A Dfindertools.py304 """_setlocation: Set the location of the icon for the object."""
318 """_getlocation: get the location of the icon for the object."""
376 0 = by icon (default)
533 def icon(object, icondata=None): function
534 """icon sets the icon of object, if no icondata is given,
535 icon will return an AE object with binary data for the current icon.
536 If left untouched, this data can be used to paste the icon on another file.
790 # the file location only works in a window with icon vie
[all...]
/external/sl4a/Common/src/com/googlecode/android_scripting/interpreter/html/
H A DHtmlActivityTask.java304 public void onReceivedIcon(WebView view, Bitmap icon) { argument
307 new BitmapDrawable(mActivity.getResources(), icon));

Completed in 921 milliseconds

123