/external/v8/tools/gyp/test/include_dirs/src/shadow1/ |
shadow.h | 1 #define SHADOW_STRING "shadow1/shadow.h"
|
/external/v8/tools/gyp/test/include_dirs/src/shadow2/ |
shadow.h | 1 #define SHADOW_STRING "shadow2/shadow.h"
|
/external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/ |
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));
|
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...] |
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));
|
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...] |
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...] |
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);
|
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...] |
PreferenceCategoryTest.java | 20 private ShadowPreferenceCategory shadow; field in class:PreferenceCategoryTest 25 shadow = Robolectric.shadowOf(category); 30 assertThat(shadow, instanceOf(ShadowPreferenceGroup.class));
|
/external/chromium-trace/catapult/third_party/polymer/components/paper-styles/classes/ |
shadow.html | 12 .shadow-transition { 13 transition: box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1); 16 .shadow-elevation-2dp { 17 box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 22 .shadow-elevation-3dp { 23 box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.14), 28 .shadow-elevation-4dp { 29 box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 34 .shadow-elevation-6dp { 35 box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.14) [all...] |
/external/chromium-trace/catapult/third_party/polymer/components/paper-styles/ |
shadow.html | 17 --shadow-transition: { 18 transition: box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1); 21 --shadow-none: { 22 box-shadow: none; 27 --shadow-elevation-2dp: { 28 box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 33 --shadow-elevation-3dp: { 34 box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.14), 39 --shadow-elevation-4dp: { 40 box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14) [all...] |
/external/compiler-rt/test/msan/ |
cxa_atexit.cc | 3 // PR17377: C++ module destructors get stale argument shadow. 9 // This destructor get stale argument shadow left from the call to f(). 25 // This call poisons TLS shadow for the first function argument.
|
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/ |
ShadowSQLiteCloseable.java | 9 * Shadow for {@code SQLiteCloseable}. Though {@code SQLiteCloseable} is an abstract 10 * class, a shadow is necessary. Its methods that are overridden in subclasses 11 * require this shadow in order to be properly instrumented.
|
ShadowPaint.java | 11 * Shadow of {@code Paint} that has some extra accessors so that tests can tell whether a {@code Paint} object was 129 * @return shadow radius (Paint related shadow, not Robolectric Shadow) 138 * @return shadow Dx (Paint related shadow, not Robolectric Shadow) 147 * @return shadow Dx (Paint related shadow, not Robolectric Shadow) [all...] |
package.html | 7 Provides shadow implementations of classes in the Android SDK. All of the classes in this package ("Shadow" classes) are 10 Shadow class.
|
/external/v8/tools/gyp/test/include_dirs/src/ |
includes.c | 6 #include "shadow.h" 15 cflag and an include_dir of shadow2. Including shadow.h should get 16 the shadow.h from the include_dir. */
|
/external/chromium-trace/catapult/third_party/polymer/components/iron-resizable-behavior/test/ |
test-elements.html | 81 <dom-module id="x-resizable-in-shadow"> 97 is: 'x-resizable-in-shadow' 113 <x-resizable-in-shadow id="shadow1c"></x-resizable-in-shadow> 115 <x-resizable-in-shadow id="shadow1d"></x-resizable-in-shadow> 125 <x-resizable-in-shadow id="shadow2c"></x-resizable-in-shadow> 127 <x-resizable-in-shadow id="shadow2d"></x-resizable-in-shadow> [all...] |
/external/chromium-trace/catapult/third_party/polymer/components/iron-selector/test/ |
index.html | 30 'activate-event.html?dom=shadow', 31 'basic.html?dom=shadow', 32 'multi.html?dom=shadow', 33 'next-previous.html?dom=shadow', 34 'selected-attribute.html?dom=shadow', 35 'template-repeat.html?dom=shadow', 36 'content.html?dom=shadow', 37 'excluded-local-names.html?dom=shadow'
|
/external/chromium-trace/catapult/third_party/polymer/components/paper-material/ |
paper-material-shared-styles.html | 11 <link rel="import" href="../paper-styles/shadow.html"> 22 @apply(--shadow-elevation-2dp); 26 @apply(--shadow-elevation-4dp); 30 @apply(--shadow-elevation-6dp); 34 @apply(--shadow-elevation-8dp); 38 @apply(--shadow-elevation-16dp);
|
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/widget/ |
FrameLayoutWithShadows.java | 192 View shadow = getChildAt(i); local 193 if (shadow instanceof ShadowView) { 194 shadow.setAlpha(alpha); 200 * prune shadow views whose related view was detached from FrameLayoutWithShadows 207 View shadow = getChildAt(i); local 208 if (shadow instanceof ShadowView) { 209 ShadowView shadowView = (ShadowView) shadow; 222 * Perform a layout of the shadow views. This is done as part of the layout 229 View shadow = getChildAt(i); local 230 if (!(shadow instanceof ShadowView)) 310 final Drawable shadow; local [all...] |
/external/chromium-trace/catapult/third_party/polymer/components/iron-collapse/test/ |
index.html | 25 'basic.html?dom=shadow', 26 'horizontal.html?dom=shadow', 27 'a11y.html?dom=shadow', 28 'nested.html?dom=shadow', 29 'flex.html?dom=shadow'
|
/external/clang/test/SemaCXX/ |
warn-sysheader-macro.cpp | 11 #define SHADOW(a) __extension__({ int v = a; v; }) 27 int i = SHADOW(SHADOW(1));
|