HomeSort by relevance Sort by last modified time
    Searched defs:sticky (Results 1 - 23 of 23) sorted by null

  /external/compiler-rt/lib/i386/
floatundisf.S 62 sticky: .quad 0x0000000000000000 label
67 #define STICKY sticky-0b(%ecx,%eax,8)
82 movsd STICKY, %xmm1 // (big input) ? 0xfff : 0
  /frameworks/compile/libbcc/runtime/lib/i386/
floatundisf.S 62 sticky: .quad 0x0000000000000000 label
67 #define STICKY sticky-0b(%ecx,%eax,8)
82 movsd STICKY, %xmm1 // (big input) ? 0xfff : 0
  /external/chromium/chrome/browser/chromeos/notifications/
balloon_view.h 45 BalloonViewImpl(bool sticky, bool controls, bool web_ui);
66 // True if the notification is sticky.
67 bool sticky() const { return sticky_; } function in class:chromeos::BalloonViewImpl
120 // A sticky flag. A sticky notification cannot be dismissed by a user.
notification_panel.cc 273 // Returns the size that covers sticky and new notifications.
275 gfx::Rect sticky = sticky_container_->bounds(); local
277 if (sticky.IsEmpty())
280 return sticky.size();
281 return sticky.Union(new_non_sticky).size();
327 // Returns the # of sticky and new notifications.
333 // Returns the # of sticky notifications.
382 return view->sticky() ?
387 // Sticky/non-sticky ballon containers. They're child views an
    [all...]
  /external/compiler-rt/lib/
adddf3.c 79 // Shift the significands to give us round, guard and sticky, and or in the
86 // Shift the significand of b by the difference in exponents, with a sticky
91 const bool sticky = bSignificand << (typeWidth - align); local
92 bSignificand = bSignificand >> align | sticky;
94 bSignificand = 1; // sticky; b is known to be non-zero.
119 const bool sticky = aSignificand & 1; local
120 aSignificand = aSignificand >> 1 | sticky;
132 const bool sticky = aSignificand << (typeWidth - shift); local
133 aSignificand = aSignificand >> shift | sticky;
137 // Low three bits are round, guard, and sticky
    [all...]
addsf3.c 78 // Shift the significands to give us round, guard and sticky, and or in the
85 // Shift the significand of b by the difference in exponents, with a sticky
90 const bool sticky = bSignificand << (typeWidth - align); local
91 bSignificand = bSignificand >> align | sticky;
93 bSignificand = 1; // sticky; b is known to be non-zero.
118 const bool sticky = aSignificand & 1; local
119 aSignificand = aSignificand >> 1 | sticky;
131 const bool sticky = aSignificand << (typeWidth - shift); local
132 aSignificand = aSignificand >> shift | sticky;
136 // Low three bits are round, guard, and sticky
    [all...]
fp_lib.h 129 const bool sticky = *lo << (typeWidth - count); local
130 *lo = *hi << (typeWidth - count) | *lo >> count | sticky;
134 const bool sticky = *hi << (2*typeWidth - count) | *lo; local
135 *lo = *hi >> (count - typeWidth) | sticky;
138 const bool sticky = *hi | *lo; local
139 *lo = sticky;
truncdfsf2.c 147 // Right shift by the denormalization amount with sticky.
151 const bool sticky = significand << (srcBits - shift); local
152 src_rep_t denormalizedSignificand = significand >> shift | sticky;
  /frameworks/base/services/java/com/android/server/am/
BroadcastRecord.java 45 final boolean sticky; // originated from existing sticky data? field in class:BroadcastRecord
46 final boolean initialSticky; // initial broadcast from register to sticky?
84 if (sticky) {
118 if (resultAbort || ordered || sticky || initialSticky) {
121 pw.print(" sticky="); pw.print(sticky);
184 sticky = _sticky;
ActivityManagerService.java 522 * State of all active sticky broadcasts. Keys are the action of the
523 * sticky Intent, values are an ArrayList of all broadcasted intents with
12700 Intent sticky = allSticky != null ? (Intent)allSticky.get(0) : null; local
    [all...]
  /frameworks/base/core/tests/coretests/src/android/app/activity/
BroadcastTest.java 313 Intent sticky = getContext().registerReceiver(null, filter); local
314 assertNotNull("Sticky not found", sticky);
315 assertEquals(LaunchpadActivity.DATA_1, sticky.getStringExtra("test"));
329 Intent sticky = getContext().registerReceiver(null, filter); local
330 assertNull("Sticky not found", sticky);
343 Intent sticky = getContext().registerReceiver(null, filter); local
344 assertNotNull("Sticky not found", sticky);
    [all...]
  /frameworks/base/core/java/android/inputmethodservice/
Keyboard.java 250 /** Whether this key is sticky, i.e., a toggle key */
251 public boolean sticky; field in class:Keyboard.Key
258 /** If this is a sticky key, is it on? */
375 sticky = a.getBoolean(
404 * Changes the pressed state of the key. If it is a sticky key, it will also change the
411 if (sticky) {
488 if (sticky) {
    [all...]
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
Keyboard.java 242 /** Whether this key is sticky, i.e., a toggle key */
243 public boolean sticky; field in class:Keyboard.Key
250 /** If this is a sticky key, is it on? */
368 sticky = a.getBoolean(
400 * Changes the pressed state of the key. If it is a sticky key, it will also change the
407 if (sticky) {
501 if (sticky) {
  /prebuilts/sdk/11/
android.jar 
  /prebuilts/sdk/13/
android.jar 
  /prebuilts/sdk/14/
android.jar 
  /prebuilts/sdk/16/
android.jar 
  /prebuilts/sdk/4/
android.jar 
  /prebuilts/sdk/5/
android.jar 
  /prebuilts/sdk/6/
android.jar 
  /prebuilts/sdk/7/
android.jar 
  /prebuilts/sdk/9/
android.jar 
  /prebuilts/sdk/current/
android.jar 

Completed in 531 milliseconds