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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/ash/wm/
resize_shadow_controller.cc 26 ResizeShadow* shadow = GetShadowForWindow(window); local
27 if (!shadow)
28 shadow = CreateShadow(window);
29 shadow->ShowForHitTest(hit_test);
33 ResizeShadow* shadow = GetShadowForWindow(window); local
34 if (shadow)
35 shadow->Hide();
47 ResizeShadow* shadow = GetShadowForWindow(window); local
48 if (shadow)
49 shadow->Layout(new_bounds)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
ShadowData.cpp 54 static inline void calculateShadowExtent(const ShadowData* shadow, int additionalOutlineSize, int& shadowLeft, int& shadowRight, int& shadowTop, int& shadowBottom)
57 int blurAndSpread = shadow->blur() + shadow->spread() + additionalOutlineSize;
58 if (shadow->style() == Normal) {
59 shadowLeft = min(shadow->x() - blurAndSpread, shadowLeft);
60 shadowRight = max(shadow->x() + blurAndSpread, shadowRight);
61 shadowTop = min(shadow->y() - blurAndSpread, shadowTop);
62 shadowBottom = max(shadow->y() + blurAndSpread, shadowBottom);
65 shadow = shadow->next()
    [all...]
ShadowData.h 38 // This class holds information about shadows for the text-shadow and box-shadow properties.
65 void setNext(PassOwnPtr<ShadowData> shadow) { m_next = shadow; }
98 inline PassOwnPtr<ShadowData> cloneShadow(const ShadowData* shadow)
100 return shadow ? shadow->clone() : nullptr;
103 inline PassOwnPtr<ShadowData> cloneShadow(const OwnPtr<ShadowData>& shadow)
105 return cloneShadow(shadow.get());
  /external/chromium_org/chrome/browser/resources/chromeos/
bluetooth_pair_device.css 11 box-shadow: none;
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
DisplayTest.java 18 ShadowDisplay shadow = Robolectric.shadowOf(display); local
20 shadow.setDensity(1.5f);
21 shadow.setDensityDpi(DisplayMetrics.DENSITY_MEDIUM);
22 shadow.setScaledDensity(1.6f);
23 shadow.setWidth(1024);
24 shadow.setHeight(600);
25 shadow.setXdpi(183.0f);
26 shadow.setYdpi(184.0f);
InputMethodManagerTest.java 20 private ShadowInputMethodManager shadow; field in class:InputMethodManagerTest
25 shadow = Robolectric.shadowOf(manager);
30 assertThat(shadow.isSoftInputVisible(), equalTo(false));
33 assertThat(shadow.isSoftInputVisible(), equalTo(true));
36 assertThat(shadow.isSoftInputVisible(), equalTo(false));
TranslateAnimationTest.java 18 private ShadowTranslateAnimation shadow; field in class:TranslateAnimationTest
23 shadow = shadowOf(animation);
28 assertThat(shadow.getFromXType(), equalTo(1));
29 assertThat(shadow.getFromXValue(), equalTo(2f));
30 assertThat(shadow.getToXType(), equalTo(3));
31 assertThat(shadow.getToXValue(), equalTo(4f));
32 assertThat(shadow.getFromYType(), equalTo(5));
33 assertThat(shadow.getFromYValue(), equalTo(6f));
34 assertThat(shadow.getToYType(), equalTo(7));
35 assertThat(shadow.getToYValue(), equalTo(8f))
    [all...]
SslErrorHandlerTest.java 21 private ShadowSslErrorHandler shadow; field in class:SslErrorHandlerTest
26 shadow = Robolectric.shadowOf(handler);
31 assertThat(shadow, instanceOf(ShadowHandler.class));
36 assertThat(shadow.wasCancelCalled(), equalTo(false));
38 assertThat(shadow.wasCancelCalled(), equalTo(true));
43 assertThat(shadow.wasProceedCalled(), equalTo(false));
45 assertThat(shadow.wasProceedCalled(), equalTo(true));
PreferenceActivityTest.java 25 private ShadowPreferenceActivity shadow; field in class:PreferenceActivityTest
30 shadow = Robolectric.shadowOf(activity);
35 shadow.setListView( new ListView( new Activity() ) );
41 assertThat(shadow, instanceOf(ShadowListActivity.class));
51 assertThat(shadow.getPreferencesResId(), equalTo(-1));
53 assertThat(shadow.getPreferencesResId(), equalTo(R.xml.preferences));
PreferenceTest.java 32 private ShadowPreference shadow; field in class:PreferenceTest
44 shadow = Robolectric.shadowOf( preference );
52 shadow = Robolectric.shadowOf(preference);
53 assertThat(shadow.getContext(), sameInstance(context));
54 assertThat(shadow.getAttrs(), sameInstance((AttributeSet)attrs));
55 assertThat(shadow.getDefStyle(), equalTo(defStyle));
58 shadow = Robolectric.shadowOf(preference);
59 assertThat(shadow.getContext(), sameInstance( context ));
60 assertThat(shadow.getAttrs(), sameInstance((AttributeSet)attrs));
61 assertThat(shadow.getDefStyle(), equalTo(0));
    [all...]
DialogPreferenceTest.java 26 private ShadowDialogPreference shadow; field in class:DialogPreferenceTest
38 shadow = Robolectric.shadowOf(preference);
46 shadow = Robolectric.shadowOf(preference);
47 assertThat(shadow.getContext(), sameInstance(context));
48 assertThat(shadow.getAttrs(), sameInstance((AttributeSet) attrs));
49 assertThat(shadow.getDefStyle(), equalTo(defStyle));
52 shadow = Robolectric.shadowOf(preference);
53 assertThat(shadow.getContext(), sameInstance(context));
54 assertThat(shadow.getAttrs(), sameInstance((AttributeSet) attrs));
55 assertThat(shadow.getDefStyle(), equalTo(0))
    [all...]
SensorManagerTest.java 22 private ShadowSensorManager shadow; field in class:SensorManagerTest
27 shadow = shadowOf(sensorManager);
33 shadow = null;
40 assertTrue(shadow.hasListener(listener));
56 assertFalse(shadow.hasListener(listener));
63 assertFalse(shadow.hasListener(listener));
68 assertTrue(shadow.createSensorEvent() instanceof SensorEvent);
PreferenceCategoryTest.java 20 private ShadowPreferenceCategory shadow; field in class:PreferenceCategoryTest
25 shadow = Robolectric.shadowOf(category);
30 assertThat(shadow, instanceOf(ShadowPreferenceGroup.class));
RatingBarTest.java 24 private ShadowRatingBar shadow; field in class:RatingBarTest
31 shadow = Robolectric.shadowOf(ratingBar);
39 assertThat(shadow.getOnRatingBarChangeListener(), sameInstance(listener));
41 assertThat(shadow.getOnRatingBarChangeListener(), nullValue());
61 ShadowRatingBar shadow = Robolectric.shadowOf(ratingBar); local
62 assertThat(shadow, instanceOf(ShadowAbsSeekBar.class));
PendingIntentTest.java 39 ShadowPendingIntent shadow = shadowOf(pendingIntent); local
40 assertThat(shadow.isActivityIntent(), is(false));
41 assertThat(shadow.isBroadcastIntent(), is(true));
42 assertThat(shadow.isServiceIntent(), is(false));
43 assertThat(intent, equalTo(shadow.getSavedIntent()));
44 assertThat(Robolectric.application, equalTo(shadow.getSavedContext()));
51 ShadowPendingIntent shadow = shadowOf(pendingIntent); local
52 assertThat(shadow.isActivityIntent(), is(true));
53 assertThat(shadow.isBroadcastIntent(), is(false));
54 assertThat(shadow.isServiceIntent(), is(false))
63 ShadowPendingIntent shadow = shadowOf(pendingIntent); local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/
ContainerNodeAlgorithms.cpp 30 #include "core/dom/shadow/ElementShadow.h"
49 if (ElementShadow* shadow = toElement(node)->shadow()) {
50 ShadowRootVector roots(shadow);
86 if (ElementShadow* shadow = toElement(node)->shadow()) {
87 ShadowRootVector roots(shadow);
105 if (ElementShadow* shadow = toElement(node)->shadow()) {
106 ShadowRootVector roots(shadow);
    [all...]
TreeScopeAdopter.cpp 32 #include "core/dom/shadow/ElementShadow.h"
33 #include "core/dom/shadow/ShadowRoot.h"
73 for (ShadowRoot* shadow = node->youngestShadowRoot(); shadow; shadow = shadow->olderShadowRoot()) {
74 shadow->setParentTreeScope(m_newScope);
76 moveTreeToNewDocument(shadow, oldDocument, newDocument);
87 for (ShadowRoot* shadow = node->youngestShadowRoot(); shadow; shadow = shadow->olderShadowRoot()
    [all...]
  /libcore/libart/src/main/java/java/lang/
Object.java 133 private transient Class<?> shadow$_klass_;
134 private transient int shadow$_monitor_;
140 if (shadow$_klass_.isFinalizable()) {
250 return shadow$_klass_;
  /external/chromium_org/chrome/browser/resources/local_ntp/
most_visited_thumbnail.css 27 .shadow {
33 .shadow {
34 box-shadow: inset 0 2px 3px rgba(0, 0, 0, 0.09);
  /external/chromium_org/ui/gfx/
shadow_value.cc 56 const ShadowValue& shadow = shadows[i]; local
59 int blur = static_cast<int>(shadow.blur() / 2 + 0.5);
61 left = std::max(left, blur - shadow.x());
62 top = std::max(top, blur - shadow.y());
63 right = std::max(right, blur + shadow.x());
64 bottom = std::max(bottom, blur + shadow.y());
  /external/chromium/chrome/browser/chromeos/login/
rounded_rect_painter.cc 81 int shadow,
88 shadow / 2, SkBlurMaskFilter::kNormal_BlurStyle);
92 SkIntToScalar(x + shadow / 2), SkIntToScalar(y + shadow / 2),
93 SkIntToScalar(x + w - shadow / 2), SkIntToScalar(y + h - shadow / 2));
107 int shadow = border->shadow; local
119 if (border->shadow > 0) {
125 shadow, shadow_color)
180 int shadow = border_->shadow; local
    [all...]
  /external/compiler-rt/lib/asan/
asan_poisoning.h 12 // Shadow memory poisoning by ASan RTL and by user application.
21 // Poisons the shadow memory for "size" bytes starting from "addr".
24 // Poisons the shadow memory for "redzone_size" bytes starting from
46 u8 *shadow = (u8*)MEM_TO_SHADOW(aligned_addr); local
47 for (uptr i = 0; i < redzone_size; i += SHADOW_GRANULARITY, shadow++) {
49 *shadow = 0; // fully addressable
51 *shadow = (SHADOW_GRANULARITY == 128) ? 0xff : value; // unaddressable
54 *shadow = static_cast<u8>(size - i);
  /external/chromium_org/ui/views/corewm/
shadow_controller.cc 20 #include "ui/views/corewm/shadow.h"
54 // Returns the shadow style to be applied to |losing_active| when it is losing
57 Shadow::Style GetShadowStyleForWindowLosingActive(
66 return Shadow::STYLE_ACTIVE;
68 return Shadow::STYLE_INACTIVE;
104 typedef std::map<aura::Window*, linked_ptr<Shadow> > WindowShadowMap;
113 // Checks if |window| is visible and contains a property requesting a shadow.
116 // Returns |window|'s shadow from |window_shadows_|, or NULL if no shadow
118 Shadow* GetShadowForWindow(aura::Window* window)
170 Shadow* shadow = GetShadowForWindow(window); local
183 Shadow* shadow = GetShadowForWindow(gained_active); local
188 Shadow* shadow = GetShadowForWindow(lost_active); local
218 Shadow* shadow = GetShadowForWindow(window); local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/Resources/pagepopups/chromium/
pickerCommonChromium.css 32 box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08),
36 text-shadow: 0 1px 0 rgb(240, 240, 240);
47 box-shadow: 0 1px 0 rgba(0, 0, 0, 0.12), inset 0 1px 2px rgba(255, 255, 255, 0.95);
53 box-shadow: none;
54 text-shadow: none;
60 box-shadow: 0 1px 0 rgba(80, 80, 80, 0.08), inset 0 1px 2px rgba(255, 255, 255, 0.75);
  /external/chromium_org/chrome/browser/resources/chromeos/login/
screen_account_picker.css 14 box-shadow: none;

Completed in 303 milliseconds

1 2 3 4 5 6 7 8 91011>>