HomeSort by relevance Sort by last modified time
    Searched full:keep (Results 2926 - 2950 of 11137) sorted by null

<<111112113114115116117118119120>>

  /prebuilts/ndk/9/sources/cxx-stl/EH/gabi++/include/
cxxabi.h 294 * ARM EHABI requires the unwind library to keep track of exceptions
295 * during cleanups. These support nesting, so we need to keep a list of
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
pyfpe.h 112 * variables need to be declared with the "volatile" type qualifier to keep
122 * variable (PyFPE_counter) to keep track of any recursion. If an exception
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/encodings/
idna.py 213 # Keep potentially unfinished label until the next call
254 # Keep potentially unfinished label until the next call
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_metaclass.py 14 This fixer also tries very hard to keep original indenting and spacing
158 # find metaclasses, keep the last one
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
pyfpe.h 112 * variables need to be declared with the "volatile" type qualifier to keep
122 * variable (PyFPE_counter) to keep track of any recursion. If an exception
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/encodings/
idna.py 213 # Keep potentially unfinished label until the next call
254 # Keep potentially unfinished label until the next call
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_metaclass.py 14 This fixer also tries very hard to keep original indenting and spacing
158 # find metaclasses, keep the last one
  /system/core/libutils/
LinearTransform.cpp 87 // Divide again. Keep the remainder around in order to round properly.
127 // Compute abs(val - basis_64). Keep track of whether or not this delta
  /device/generic/goldfish/opengl/system/gralloc/
gralloc.cpp 157 // Keep around original requested format for later validation
261 // keep space for postCounter
266 // keep space for image on guest memory if SW access is needed
696 // Keep locked region if locked for s/w write access.
863 // Keep locked region if locked for s/w write access.
893 // Create host connection and keep it in the TLS.
  /external/chromium/net/socket/
tcp_client_socket_win.cc 691 // Enable TCP Keep-Alive to prevent NAT routers from timing out TCP
695 1, // TCP keep-alive on.
696 45000, // Wait 45s until sending first TCP keep-alive packet.
697 45000, // Wait 45s between sending TCP keep-alive packets.
703 DCHECK(!rv) << "Could not enable TCP Keep-Alive for socket: " << socket_
706 // Disregard any failure in disabling nagle or enabling TCP Keep-Alive.
  /external/chromium_org/chrome/browser/background/
background_mode_manager.cc 204 // Keep the browser alive until extensions are done loading - this is needed
218 // If the -keep-alive-for-test flag is passed, then always keep chrome running
322 // Extensions are loaded, so we don't need to manually keep the browser
529 // keep-alive (which can shutdown Chrome) before the message loop has
678 // use the browser process to keep track of it.
  /external/chromium_org/third_party/icu/source/common/
locdispnames.cpp 518 /* keep preflighting */
544 /* keep preflighting */
570 /* keep preflighting */
609 /* keep preflighting */
624 /* keep preflighting */
700 /* keep preflighting */
ucnv_u7.c 187 cnv->fromUnicodeStatus=(cnv->fromUnicodeStatus&0xf0000000)|0x1000000; /* keep version, inDirectMode=TRUE */
337 bytes[0]=b; /* keep this byte in case an error occurs */
348 bytes[0]=b; /* keep this byte in case an error occurs */
691 cnv->fromUnicodeStatus=(cnv->fromUnicodeStatus&0xf0000000)|0x1000000; /* keep version, inDirectMode=TRUE */
695 (cnv->fromUnicodeStatus&0xf0000000)| /* keep version*/
    [all...]
  /external/proguard/src/proguard/optimize/
Optimizer.java 126 // Check if we have at least some keep commands.
127 if (configuration.keep == null &&
131 throw new IOException("You have to specify '-keep' options for the optimization step.");
232 ClassSpecificationVisitorFactory.createClassPoolVisitor(configuration.keep,
246 // We also keep all classes that are involved in .class constructs.
253 // We also keep all classes that are involved in Class.forName constructs.
    [all...]
  /frameworks/base/docs/html/design/patterns/
notifications.jd 11 <p>The notification system allows your app to keep the user informed about events, such as new chat messages or a calendar event. Think of notifications as a news channel that alerts the user to important events as they happen or a log that chronicles events while the user is not paying attention.</p>
110 <td>The default priority. Keep all notifications that don't fall into any of the other categories at this priority level.</td>
150 <p style="margin-top:0;">Keep your icons visually simple and avoid excessive detail that is hard to discern.</p>
155 <p>Many Android devices contain a tiny lamp, called the notification <acronym title="Light-Emitting Diode">LED</acronym>, which is used to keep the user informed about events while the screen is off. Notifications with a priority level of MAX, HIGH, or DEFAULT should cause the LED to glow, while those with lower priority (LOW and MIN) should not.</p>
206 user with a small amount of updated information and to keep them engaged with your application is to
237 <p>Ongoing notifications keep users informed about an ongoing process in the background. For example, music players announce the currently playing track in the notification system and continue to do so until the user stops the playback. They can also be used to show the user feedback for longer tasks like downloading a file, or encoding a video. Ongoing notifications cannot be manually removed from the notification drawer.</p></p>
  /frameworks/base/docs/html/training/efficient-downloads/
efficient-network-access.jd 65 <p>In practice, this means an app that transfers unbundled data for 1 second every 18 seconds will keep the wireless radio perpetually active, moving it back to high power just as it was about to become idle. As a result, every minute it will consume battery at the high power state for 18 seconds, and at the low power state for the remaining 42 seconds.</p>
67 <p>By comparison, the same app that bundles transfers of 3 seconds of every minute will keep the radio in the high power state for only 8 seconds, and will keep it in the low power state for only an additional 12 seconds.</p>
116 <p>An app that pings the server every 20 seconds, just to acknowledge that the app is running and visible to the user, will keep the radio powered on indefinitely, resulting in a significant battery cost for almost no actual data transfer.</p>
126 <p>Take a news application that uses the prefetching routine described above. The news reader collects analytics information to understand the reading patterns of its users and to rank the most popular stories. To keep the news fresh, it checks for updates every hour. To conserve bandwidth, rather than download full photos for each article, it prefetches only thumbnails and downloads the full photos when they are selected.</p>
161 <p>The Apache {@code HttpClient} and {@code URLConnection} libraries automatically tag sockets based on the current {@code getThreadStatsTag()} value. These libraries also tag and untag sockets when recycled through keep-alive pools.</p>
  /external/libppp/src/
command.c 2787 unsigned keep; \/* Keep this opt *\/ local
2839 unsigned keep; \/* Keep these bits *\/ local
3070 unsigned keep, add; local
    [all...]
  /external/wpa_supplicant_8/src/drivers/
nl80211_copy.h     [all...]
  /external/chromium_org/content/renderer/pepper/
pepper_plugin_instance_impl.cc 604 // returned, then it needs to keep its own reference on the stack.
609 // Keep a reference on the stack. See NOTE above.
    [all...]
  /external/chromium_org/third_party/icu/source/data/
makedata.mak 12 # Keep the following in sync with the version - see common/unicode/uversion.h
643 <<KEEP
780 <<KEEP
802 <<KEEP
824 <<KEEP
846 <<KEEP
868 <<KEEP
885 <<KEEP
901 <<KEEP
913 <<KEEP
    [all...]
  /external/icu4c/data/
makedata.mak 12 # Keep the following in sync with the version - see common/unicode/uvernum.h
646 <<KEEP
791 <<KEEP
813 <<KEEP
835 <<KEEP
857 <<KEEP
879 <<KEEP
896 <<KEEP
    [all...]