/external/apache-harmony/beans/src/test/support/java/org/apache/harmony/beans/tests/support/ |
StandardBean.java | 31 private StandardBean bean = null; field in class:StandardBean 49 return bean; 52 public void setPeer(StandardBean bean) { 53 this.bean = bean;
|
/external/proguard/examples/annotations/examples/ |
Bean.java | 4 * This bean illustrates the use of annotations for configuring ProGuard. 7 * javac -classpath ../lib/annotations.jar Bean.java 15 public class Bean
|
/prebuilts/tools/common/proguard/proguard4.7/examples/annotations/examples/ |
Bean.java | 4 * This bean illustrates the use of annotations for configuring ProGuard. 7 * javac -classpath ../lib/annotations.jar Bean.java 15 public class Bean
|
/libcore/luni/src/test/java/libcore/java/util/beans/ |
PropertyChangeSupportTest.java | 35 Object bean = new Object(); local 36 PropertyChangeSupport support = new PropertyChangeSupport(bean); 40 PropertyChangeEvent nullToNull = new PropertyChangeEvent(bean, "a", null, null); 46 Object bean = new Object(); local 47 PropertyChangeSupport support = new PropertyChangeSupport(bean); 51 PropertyChangeEvent xToX = new PropertyChangeEvent(bean, "a", "x", new String("x")); 57 Object bean = new Object(); local 58 PropertyChangeEvent eventA = new PropertyChangeEvent(bean, "a", false, true); 59 PropertyChangeEvent eventB = new PropertyChangeEvent(bean, "b", false, true); 60 PropertyChangeEvent eventC = new PropertyChangeEvent(bean, "c", false, true) 107 Object bean = new Object(); local 163 Object bean = new Object(); local 181 Object bean = new Object(); local 197 Object bean = new Object(); local 236 Object bean = "bean"; local [all...] |
/development/sdk/ |
platform_source.prop_template | 4 Platform.CodeName=Jelly Bean
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/ |
BeanBag.java | 138 public class Bean extends ImageView { 158 public Bean(Context context, AttributeSet as) { 163 return String.format("<bean (%.1f, %.1f) (%d x %d)>", 172 BitmapDrawable bean = (BitmapDrawable) getContext().getResources().getDrawable(beanId); local 173 Bitmap beanBits = bean.getBitmap(); 178 bean.setAlpha(0x80); 180 this.setImageDrawable(bean); 233 public float overlap(Bean other) { 285 Bean nv = new Bean(getContext(), null) [all...] |
/frameworks/base/docs/html/ |
index.jd | 17 <a href="{@docRoot}about/versions/jelly-bean.html"><img src="{@docRoot}images/home/android-jellybean.png" ></a> 20 <h1>Jelly Bean now available!</h1> 21 <p>Android 4.1 (Jelly Bean) builds on what's great about Android 26 <p><a href="{@docRoot}about/versions/jelly-bean.html" class="button">More 27 about Jelly Bean</a></p>
|
/frameworks/base/docs/html/about/ |
about_toc.cs | 10 <div class="nav-section-header"><a href="<?cs var:toroot ?>about/versions/jelly-bean.html"> 11 <span class="en">Jelly Bean</span></a></div>
|
/frameworks/compile/slang/ |
slang_version.h | 24 // JB -> Jelly Bean
|
/libcore/luni/src/main/java/java/beans/ |
PropertyChangeListener.java | 29 * The source bean calls this method when an event is raised.
|
IndexedPropertyChangeEvent.java | 35 * the changed bean.
|
PropertyChangeEvent.java | 42 * the changed bean.
|
PropertyChangeSupport.java | 62 * Creates a new instance that uses the source bean as source for any event. 65 * the bean used as source for all events. 76 * new value. As source the bean used to initialize this instance is used. 93 * value, new value and index. As source the bean used to initialize this
|
/external/apache-xml/src/main/java/org/apache/xalan/processor/ |
WhitespaceInfoPaths.java | 33 * Bean property to allow setPropertiesFromAttributes to
|
/external/antlr/antlr-3.4/runtime/ActionScript/project/lib/ |
FlexAntTasks.jar | |
/frameworks/base/docs/html/design/patterns/ |
new.jd | 4 <h2>Jelly Bean - Android 4.1</h2> 17 <p>The base notification layout has not changed, so app notifications designed for versions earlier than Jelly Bean still look and work the same. Check the updated <a href="{@docRoot}design/patterns/notifications.html">Notifications</a> page for more details.</p>
|
notifications.jd | 6 <h4>New in Jelly Bean</h4> 7 <p>In Jelly Bean, notifications received their most important structural and functional update since the beginning of Android.</p> 26 <p>The information arrangement of the base layout has not changed in Jelly Bean, so app notifications designed for versions earlier than Jelly Bean still look and work the same.</p> 37 <p>With Jelly Bean you have the option to provide more event detail. You can use this to show the first few lines of a message or show a larger image preview. This provides the user with additional context, and - in some cases - may allow the user to read a message in its entirety. The user can pinch-zoom or two-finger glide in order to toggle between base and expanded layouts. For single event notifications, Android provides two expanded layout templates (text and image) for you to re-use in your application.</p> 44 <p>Starting with Jelly Bean, Android supports optional actions that are displayed at the bottom of the notification. With actions, users can handle the most common tasks for a particular notification from within the notification shade without having to open the originating application. This speeds up interaction and, in conjunction with "swipe-to-dismiss", helps users to streamline their notification triaging experience.</p> 86 <p>Starting with Jelly Bean, Android now supports a priority flag for notifications. It allows you to influence where your notification will appear in comparison to other notifications and help to make sure that users always see their most important notifications first. You can choose from the following priority levels when posting a notification:</p>
|
/external/webkit/Tools/iExploder/iexploder-1.7.2/src/mime-types/ |
webkit | 37 application/x-java-bean
|
/frameworks/base/core/java/android/text/method/ |
KeyListener.java | 34 * targetting Jelly Bean or later, and will only deliver it for some
|
/frameworks/base/core/java/com/android/internal/app/ |
PlatLogoActivity.java | 78 tv.setText("JELLY BEAN");
|
/libcore/luni/src/main/java/java/util/logging/ |
LoggingMXBean.java | 25 * The ObjectName for identifying the {@code LoggingMXBean} in a bean server is
|
/external/guava/guava/src/com/google/common/collect/ |
ImmutableMultiset.java | 504 * public static final ImmutableMultiset<Bean> BEANS = 505 * new ImmutableMultiset.Builder<Bean>() 506 * .addCopies(Bean.COCOA, 4) 507 * .addCopies(Bean.GARDEN, 6) 508 * .addCopies(Bean.RED, 8) 509 * .addCopies(Bean.BLACK_EYED, 10)
|
ImmutableSortedMultiset.java | 455 * public static final ImmutableSortedMultiset<Bean> BEANS = 456 * new ImmutableSortedMultiset.Builder<Bean>() 457 * .addCopies(Bean.COCOA, 4) 458 * .addCopies(Bean.GARDEN, 6) 459 * .addCopies(Bean.RED, 8) 460 * .addCopies(Bean.BLACK_EYED, 10)
|
/prebuilts/tools/common/proguard/proguard4.7/docs/manual/ |
examples.html | 45 <li><a href="#beans">Processing bean classes</a></li> 121 classes</a>, <a href="#beans">bean classes</a>, <a 144 classes</a>, <a href="#beans">bean classes</a>, <a 487 classes</a>, <a href="#beans">bean classes</a>, <a 512 classes</a>, <a href="#beans">bean classes</a>, <a 631 classes</a>, <a href="#beans">bean classes</a>, <a 701 classes</a>, <a href="#beans">bean classes</a>, <a [all...] |
/development/samples/SpellChecker/HelloSpellChecker/src/com/example/android/hellospellchecker/ |
HelloSpellCheckerActivity.java | 70 // It is recommended for an application running on Jelly Bean or later
|