HomeSort by relevance Sort by last modified time
    Searched full:shadow (Results 76 - 100 of 1579) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/robolectric/src/test/java/com/xtremelabs/robolectric/
WithoutTestDefaultsRunner.java 13 // Don't do any resource loading or shadow class binding, because that's what we're trying to test here.
  /external/chromium/base/
at_exit.cc 16 // use the shadow version of the constructor. We don't protect this for
66 AtExitManager::AtExitManager(bool shadow) : next_manager_(g_top_manager) {
67 DCHECK(shadow || !g_top_manager);
  /external/chromium/chrome/browser/ui/cocoa/bookmarks/
bookmark_bar_folder_window.h 16 // This window is borderless but has a shadow, at least initially.
17 // Once the down scroll arrow is shown, the shadow is turned off and
19 // area of the menu and which provides the shadow.
  /external/chromium_org/chrome/browser/ui/cocoa/bookmarks/
bookmark_bar_folder_window.h 12 // This window is borderless but has a shadow, at least initially.
13 // Once the down scroll arrow is shown, the shadow is turned off and
15 // area of the menu and which provides the shadow.
  /external/chromium_org/ppapi/c/documentation/
tabs.css 37 text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.9);
50 text-shadow: 0px 1px 1px rgba(0, 0, 0, 1.0);
58 text-shadow: 0px 1px 1px rgba(0, 0, 0, 1.0);
  /external/chromium_org/ppapi/cpp/documentation/
tabs.css 37 text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.9);
50 text-shadow: 0px 1px 1px rgba(0, 0, 0, 1.0);
58 text-shadow: 0px 1px 1px rgba(0, 0, 0, 1.0);
  /external/chromium_org/third_party/WebKit/PerformanceTests/ShadowDOM/
ShadowReprojection.html 29 shadowRoot.innerHTML = '<div id="host2"><shadow><content></content></shadow></div>';
57 description: "Measure performance of shadow reprojection and distribution",
  /external/eigen/doc/
eigendoxy_tabs.css 37 text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.9);
50 text-shadow: 0px 1px 1px rgba(0, 0, 0, 1.0);
58 text-shadow: 0px 1px 1px rgba(0, 0, 0, 1.0);
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
AnimationSetTest.java 20 private ShadowAnimationSet shadow; field in class:AnimationSetTest
25 shadow = shadowOf(set);
38 List<Animation> list = shadow.getAnimations();
  /frameworks/base/docs/html/reference/renderscript/
tabs.css 37 text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.9);
50 text-shadow: 0px 1px 1px rgba(0, 0, 0, 1.0);
58 text-shadow: 0px 1px 1px rgba(0, 0, 0, 1.0);
  /external/chromium_org/chrome/common/extensions/docs/examples/apps/calculator/tests/
manual.css 21 text-shadow: rgba(0, 0, 0, 0.5) 2px 2px 1px;
103 text-shadow: rgba(0, 0, 0, 1) 1px 1px 1px;
108 text-shadow: none;
113 text-shadow: rgba(0, 0, 0, 1) 1px 1px 1px;
118 text-shadow: none;
  /external/chromium_org/third_party/WebKit/Source/core/dom/shadow/
ElementShadow.cpp 28 #include "core/dom/shadow/ElementShadow.h"
33 #include "core/dom/shadow/ContentDistribution.h"
34 #include "core/html/shadow/HTMLContentElement.h"
35 #include "core/html/shadow/HTMLShadowElement.h"
153 // addShadowRoot() affects apply-author-styles. However, we know that the youngest shadow root has not had any children yet.
154 // The youngest shadow root's apply-author-styles is default (false). So we can just set m_applyAuthorStyles false.
283 if (ElementShadow* shadow = shadowWhereNodeCanBeDistributed(*point))
284 shadow->setNeedsDistributionRecalc();
303 // Only allow reprojecting older shadow roots between the same type to
309 if (ElementShadow* shadow = shadowWhereNodeCanBeDistributed(*shadowInsertionPoint)
    [all...]
InsertionPoint.cpp 32 #include "core/dom/shadow/InsertionPoint.h"
38 #include "core/dom/shadow/ElementShadow.h"
39 #include "core/html/shadow/HTMLContentElement.h"
40 #include "core/html/shadow/HTMLShadowElement.h"
162 // Slow path only when there are more than one shadow elements in a shadow tree. That should be a rare case.
241 // Since this insertion point is no longer visible from the shadow subtree, it need to clean itself up.
285 ElementShadow* shadow = shadowWhereNodeCanBeDistributed(*current); local
286 if (!shadow || shadow == lastElementShadow
304 ElementShadow* shadow = shadowWhereNodeCanBeDistributed(*current); local
    [all...]
ElementShadow.h 30 #include "core/dom/shadow/InsertionPoint.h"
31 #include "core/dom/shadow/SelectRuleFeatureSet.h"
32 #include "core/dom/shadow/ShadowRoot.h"
116 if (ElementShadow* shadow = this->shadow())
117 return shadow->youngestShadowRoot();
  /external/chromium_org/ui/webui/resources/css/
bubble.css 60 .bubble-shadow {
62 box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
72 box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.15);
84 .bubble-shadow,
89 .bubble-shadow,
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/bytecode/
ShadowWrangler.java 83 if (debug) System.out.println("shadow " + realClass + " with " + shadowClass);
126 System.out.println("No Shadow method found for " + clazz.getSimpleName() + "." + methodName + "(" +
159 Object shadow = readField(instance, field); local
161 if (shadow != null) {
162 return shadow;
168 System.out.println("creating new " + shadowClassName + " as shadow for " + instance.getClass().getName());
173 shadow = constructor.newInstance(instance);
175 shadow = shadowClass.newInstance();
177 field.set(instance, shadow);
179 injectRealObjectOn(shadow, shadowClass, instance)
294 private Object shadow; field in class:ShadowWrangler.InvocationPlan
    [all...]
  /external/chromium/chrome/browser/ui/cocoa/
hover_close_button.mm 61 // Give the 'x' an inner shadow for depth. If the button is in a hover state
62 // (circle behind it), then adjust the shadow accordingly (not as harsh).
63 NSShadow* shadow = [[[NSShadow alloc] init] autorelease];
66 [shadow setShadowColor:[NSColor colorWithCalibratedWhite:0.15
68 [shadow setShadowOffset:NSMakeSize(0.0, 0.0)];
69 [shadow setShadowBlurRadius:2.5];
70 [xPath_ fillWithInnerShadow:shadow];
  /external/chromium_org/third_party/WebKit/Source/core/editing/
TextIteratorTest.cpp 39 #include "core/dom/shadow/ShadowRoot.h"
192 static const char* shadowContent = "<span>shadow</span>";
193 // TextIterator doesn't emit "input" nor "shadow" since (1) the renderer for <input> is not created; and
194 // (2) we don't (yet) recurse into shadow trees.
211 static const char* shadowContent = "<span>shadow</span>";
213 "Hello, ", // TextIterator doesn't emit "text" since its renderer is not created. The shadow tree is ignored.
227 static const char* shadowContent1 = "<span>first shadow</span>";
228 static const char* shadowContent2 = "<span>second shadow</span>";
245 static const char* shadowContent1 = "<span>first <span id=\"host-in-shadow\">shadow</span></span>"
    [all...]
  /external/chromium_org/chrome/browser/resources/gaia_auth/
offline.css 69 -webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
72 box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
79 -webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,0.3);
81 box-shadow: inset 0 1px 2px rgba(0,0,0,0.3);
97 -webkit-box-shadow: none;
98 box-shadow: none;
137 -webkit-box-shadow: 0 1px 1px rgba(0,0,0,0.1);
143 box-shadow: 0 1px 1px rgba(0,0,0,0.1);
149 -webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
153 box-shadow: inset 0 1px 2px rgba(0,0,0,0.1)
    [all...]
  /external/chromium_org/ui/views/bubble/
bubble_border.h 57 enum Shadow {
83 BubbleBorder(Arrow arrow, Shadow shadow, SkColor color);
132 // Get the shadow type.
133 Shadow shadow() const { return shadow_; } function in class:views::BubbleBorder
141 // '(' represents shadow around the '{' edge: ((({ ^ })))
150 // and bubble content size; calculated from shadow and arrow image dimensions.
154 // Get the border exterior thickness, including stroke and shadow, in pixels.
178 Shadow shadow_
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/resources/
pickerButton.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/base/
at_exit.cc 18 // statically linked version of this library). Testing may use the shadow
77 AtExitManager::AtExitManager(bool shadow) : next_manager_(g_top_manager) {
78 DCHECK(shadow || !g_top_manager);
  /external/chromium_org/chrome/browser/resources/chromeos/
slow.css 19 box-shadow: 0 2px 2px #AAA;
40 box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08),
46 text-shadow: 0 1px 0 rgb(240, 240, 240);
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/plugin_settings/domui/css/
select.css 11 -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
40 -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
47 -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
  /external/chromium_org/v8/test/mjsunit/
global-load-from-nested-eval.js 38 // Shadow variable with a with statement.
46 // Shadow variable with an eval-introduced variable.
56 // Eval that does not shadow.

Completed in 273 milliseconds

1 2 34 5 6 7 8 91011>>