Searched refs:theme (Results 1 - 25 of 89) sorted by relevance

1234

/external/llvm/docs/_themes/llvm-theme/
H A Dtheme.conf0 [theme]
3 stylesheet = llvm-theme.css
/external/webkit/Source/WebCore/platform/brew/
H A DScrollbarThemeBrew.cpp33 DEFINE_STATIC_LOCAL(ScrollbarThemeBrew, theme, ());
34 return &theme;
/external/webkit/Source/WebCore/platform/efl/
H A DScrollbarThemeEfl.cpp39 static ScrollbarThemeEfl theme; local
40 return &theme;
H A DScrollbarEfl.cpp74 EINA_LOG_ERR("Unknown message id '%d' from scroll bar theme.", id);
79 EINA_LOG_ERR("Message id '%d' of incorrect type from scroll bar theme. "
116 String theme(edjeThemeRecursive());
118 if (theme.isEmpty()) {
119 EINA_LOG_ERR("Could not load theme '%s': no theme path set.", group);
124 if (!edje_object_file_set(object, theme.utf8().data(), group)) {
127 EINA_LOG_ERR("Could not load theme '%s' from file '%s': #%d '%s'",
128 group, theme.utf8().data(), err, errmessage);
/external/chromium/chrome/browser/extensions/
H A Dextension_install_ui_browsertest.cc21 // Checks that a theme info bar is currently visible and issues an undo to
22 // revert to the previous theme.
41 // Install theme once and undo to verify we go back to default theme.
42 FilePath theme_crx = PackExtension(test_data_dir_.AppendASCII("theme"));
44 const Extension* theme = GetTheme(); local
45 ASSERT_TRUE(theme);
46 std::string theme_id = theme->id();
50 // Set the same theme twice and undo to verify we go back to default theme
71 const Extension* theme = GetTheme(); local
[all...]
H A Dtheme_installed_infobar_delegate.cc38 bool ThemeInstalledInfoBarDelegate::MatchesTheme(const Extension* theme) const {
39 return theme && (theme->id() == theme_id_);
71 // TODO(aa): Reply with the theme's icon, but this requires reading it
101 // If the new theme is different from what this info bar is associated
113 // "undo" the theme change that triggered this notification
H A Dtheme_installed_infobar_delegate.h17 // When a user installs a theme, we display it immediately, but provide an
26 // Returns true if the given theme is the same as the one associated with this
28 bool MatchesTheme(const Extension* theme) const;
55 // Name of theme that's just been installed.
58 // ID of theme that's just been installed.
61 // Used to undo theme install.
/external/chromium/chrome/browser/ui/views/
H A Dtheme_helpers.cc29 CTheme theme; local
30 if (theme.IsThemingSupported())
31 theme.OpenThemeData(NULL, L"REBAR");
32 // On Windows XP+, if using a Theme, we can ask the theme to render the
34 if (!theme.IsThemeNull()) {
37 theme.DrawThemeBackground(dc, 0, 0, &rect, NULL);
40 // On Windows 2000 or Windows XP+ with the Classic theme selected, we need
77 CTheme theme; local
78 if (theme.IsThemingSupported())
79 theme
[all...]
H A Dtheme_background.cc25 // Never theme app and popup windows.
34 ui::ThemeProvider* theme = ThemeServiceFactory::GetForProfile(profile); local
37 background = theme->GetBitmapNamed(
41 background = theme->GetBitmapNamed(
/external/webkit/Source/WebCore/rendering/
H A DRenderMeter.cpp50 setWidth(theme()->meterSizeForBounds(this, frameRect()).width());
56 setHeight(theme()->meterSizeForBounds(this, frameRect()).height());
H A DRenderProgress.cpp85 m_animationDuration = theme()->animationDurationForProgressBar(this);
86 m_animationRepeatInterval = theme()->animationRepeatIntervalForProgressBar(this);
H A DRenderMediaControls.cpp63 RenderTheme* theme = o->theme(); local
64 if (!theme->isEnabled(o) || theme->isReadOnlyControl(o))
66 if (theme->isPressed(o))
68 if (theme->isFocused(o))
/external/webkit/Source/WebCore/platform/
H A DScrollbar.cpp65 ScrollbarTheme* theme)
69 , m_theme(theme)
115 int oldThumbPosition = theme()->thumbPosition(this);
119 setPressedPos(m_pressedPos + theme()->thumbPosition(this) - oldThumbPosition);
145 theme()->invalidateParts(this, ForwardTrackPart | BackTrackPart | ThumbPart);
161 if (context->updatingControlTints() && theme()->supportsControlTints()) {
169 if (!theme()->paint(this, context, damageRect))
175 autoscrollPressedPart(theme()->autoscrollTimerDelay());
180 int thumbPos = scrollbar->theme()->trackPosition(scrollbar) + scrollbar->theme()
64 Scrollbar(ScrollableArea* scrollableArea, ScrollbarOrientation orientation, ScrollbarControlSize controlSize, ScrollbarTheme* theme) argument
[all...]
/external/webkit/Source/WebCore/html/shadow/
H A DMediaControlRootElement.cpp101 if (mediaElement->document()->page()->theme()->usesMediaControlStatusDisplay()) {
150 if (mediaElement->document()->page()->theme()->supportsClosedCaptioning()) {
169 if (mediaElement->document()->page()->theme()->usesMediaControlVolumeSlider()) {
246 transitionValue = String::format("opacity %.1gs", document()->page()->theme()->mediaControlsFadeInDuration());
263 transitionValue = String::format("opacity %.1gs", document()->page()->theme()->mediaControlsFadeOutDuration());
287 if (isfinite(duration) || page->theme()->hasOwnDisabledStateHandlingFor(MediaSliderPart)) {
295 if (m_mediaElement->hasAudio() || page->theme()->hasOwnDisabledStateHandlingFor(MediaMuteButtonPart))
351 // Allow the theme to format the time.
353 m_currentTimeDisplay->setInnerText(page->theme()->formatMediaControlsCurrentTime(now, duration), ec);
355 m_timeRemainingDisplay->setInnerText(page->theme()
[all...]
H A DMeterShadowElement.cpp61 return meterRenderer && !meterRenderer->theme()->supportsMeter(meterRenderer->style()->appearance()) && HTMLDivElement::rendererIsNeeded(style);
/external/webkit/Source/WebCore/platform/qt/
H A DScrollbarQt.cpp80 int position = theme()->trackPosition(this) + theme()->thumbPosition(this) + theme()->thumbLength(this) / 2;
/external/webkit/Source/WebCore/platform/gtk/
H A DWidgetRenderingContext.cpp74 RenderThemeGtk* theme = static_cast<RenderThemeGtk*>(RenderTheme::defaultTheme().get()); local
79 if (!theme->m_themePartsHaveRGBAColormap && graphicsContext->gdkWindow()) {
107 gScratchBuffer = gdk_pixmap_new(0, width, height, gdk_colormap_get_visual(theme->m_colormap)->depth);
108 gdk_drawable_set_colormap(gScratchBuffer, theme->m_colormap);
121 RenderThemeGtk* theme = static_cast<RenderThemeGtk*>(RenderTheme::defaultTheme().get()); local
122 if (!theme->m_themePartsHaveRGBAColormap && m_graphicsContext->gdkWindow())
H A DRenderThemeGtk3.cpp71 g_signal_connect(settings, "notify::gtk-theme-name", G_CALLBACK(gtkStyleChangedCallback), 0);
198 static void paintToggle(const RenderThemeGtk* theme, GType widgetType, RenderObject* renderObject, const PaintInfo& paintInfo, const IntRect& rect) argument
207 if (!theme->isEnabled(renderObject) || theme->isReadOnlyControl(renderObject))
209 else if (theme->isHovered(renderObject))
211 if (theme->isIndeterminate(renderObject))
213 else if (theme->isChecked(renderObject))
215 if (theme->isPressed(renderObject))
224 if (theme->isFocused(renderObject)) {
258 static void renderButton(RenderTheme* theme, GtkStyleContex argument
747 paintSpinArrowButton(RenderTheme* theme, GtkStyleContext* context, RenderObject* renderObject, const PaintInfo& paintInfo, const IntRect& rect, GtkArrowType arrowType) argument
[all...]
H A DRenderThemeGtk2.cpp31 // but some theme engines require it to ensure proper rendering of focus indicators.
133 static GtkStateType getGtkStateType(RenderThemeGtk* theme, RenderObject* object) argument
135 if (!theme->isEnabled(object) || theme->isReadOnlyControl(object))
137 if (theme->isPressed(object))
139 if (theme->isHovered(object))
144 static void setToggleSize(const RenderThemeGtk* theme, RenderStyle* style, GtkWidget* widget) argument
158 static void paintToggle(RenderThemeGtk* theme, RenderObject* renderObject, const PaintInfo& info, const IntRect& rect, GtkWidget* widget) argument
162 // checked state. Every GTK+ theme I tested merely looks at the shadow type (and not the
164 gtk_widget_set_sensitive(widget, theme
[all...]
/external/chromium/base/
H A Dmime_util_xdg.cc41 // In seconds, specified by icon theme specs.
55 // The default theme.
61 // theme name from threads that aren't allowed to call
85 // IconTheme represents an icon theme as defined by the xdg icon theme spec.
90 // A theme consists of multiple sub-directories, like '32x32' and 'scalable'.
121 // the icon in the parent theme.
124 // Load a theme with the name |theme_name| into memory. Returns null if theme
133 // Whether the theme loade
229 scoped_ptr<IconTheme> theme; local
[all...]
/external/webkit/Tools/EWebLauncher/
H A Dmain.c121 ('t', "theme", "path to read the theme file from."),
155 const char *theme; member in struct:_ELauncher
164 static int browserCreate(const char *url, const char *theme, const char *userAgent, Eina_Rectangle geometry, const char *engine, const char *backingStore, unsigned char isFlattening, unsigned char isFullscreen, const char *databasePath);
590 app->theme, app->userAgent, geometry, app-> backingStore,
655 browserCreate(const char *url, const char *theme, const char *userAgent, Eina_Rectangle geometry, const char *engine, const char *backingStore, unsigned char isFlattening, unsigned char isFullscreen, const char *databasePath) argument
683 app->theme = theme;
704 ewk_view_theme_set(app->browser, theme);
790 findThemePath(const char *theme) argument
824 char *theme = NULL; local
[all...]
/external/replicaisland/src/com/replica/replicaisland/
H A DLevelBuilder.java121 int theme) {
124 switch(theme) {
119 addTileMapLayer(GameObject background, int priority, float scrollSpeed, int width, int height, int tileWidth, int tileHeight, TiledWorld world, int theme) argument
/external/webkit/Source/WebCore/platform/android/
H A DTemporaryLinkStubs.cpp419 static ScrollbarTheme theme; local
420 return &theme;
/external/webkit/Source/WebCore/platform/chromium/
H A DScrollbarThemeChromiumLinux.cpp42 static ScrollbarThemeChromiumLinux theme; local
43 return &theme;
/external/webkit/Source/WebCore/platform/haiku/
H A DScrollbarThemeHaiku.cpp45 static ScrollbarThemeHaiku theme; local
46 return &theme;

Completed in 4986 milliseconds

1234