HomeSort by relevance Sort by last modified time
    Searched full:update (Results 501 - 525 of 9150) sorted by null

<<21222324252627282930>>

  /sdk/templates/other/AppWidget/root/src/app_package/
AppWidget.java.ftl 18 // There may be multiple widgets active, so update all of them
58 // Instruct the widget manager to update the widget
  /cts/tests/tests/provider/src/android/provider/cts/
ContactsContract_DataUsageTest.java 46 // Update just 1 data item at a time.
54 // Go back and update the previous data item again.
95 * Updates multiple data ids at once. And asserts the update returned success.
105 int result = mResolver.update(uri, new ContentValues(), null, null);
110 * Updates a single data item usage. Asserts the update was successful. Asserts the usage
117 int result = mResolver.update(uri, new ContentValues(), null, null);
  /development/samples/Wiktionary/src/com/example/android/wiktionary/
WordWidget.java 41 * an update we spawn a background {@link Service} to perform the API queries.
46 // To prevent any ANR timeouts, we perform the update in a service
53 // Build the widget update for today
56 // Push update for this widget to the home screen
75 * Build a widget update to show the current Wiktionary
105 // Build an update that holds the updated widget contents
  /development/samples/WiktionarySimple/src/com/example/android/simplewiktionary/
WordWidget.java 41 * an update we spawn a background {@link Service} to perform the API queries.
47 // To prevent any ANR timeouts, we perform the update in a service
54 // Build the widget update for today
57 // Push update for this widget to the home screen
64 * Build a widget update to show the current Wiktionary
96 // Build an update that holds the updated widget contents
  /external/bison/
cfg.mk 17 # Update version, then recompile so that tests/bison --version be
30 # don't want to wait on a recompile because of an update to $(VERSION). Thus,
60 update-copyright: update-b4-copyright update-package-copyright-year
61 update-copyright-env = \
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/signers/
RSADigestSigner.java 119 * update the internal digest with the byte b
121 public void update( method in class:RSADigestSigner
124 digest.update(input);
128 * update the internal digest with the byte array in
130 public void update( method in class:RSADigestSigner
135 digest.update(input, inOff, length);
  /external/chromium/chrome/browser/resources/options/
about_page.js 30 * [["Check for update...", 1000], ["Chrome OS is up to date", 0]]
74 // Update the Default Browsers section based on the current state.
86 * Updates the status message like "Checking for update...".
114 // Update the status message.
141 // Ok, so set release track and update selected channel.
201 $('updateIcon').className= 'update-icon ' + state;
  /external/libvpx/libvpx/vp8/common/
blockd.h 245 /* 0 (do not update) 1 (update) the macroblock segmentation map. */
248 /* 0 (do not update) 1 (update) the macroblock segmentation feature data. */
251 /* 0 (do not update) 1 (update) the macroblock segmentation feature data. */
  /external/llvm/lib/CodeGen/
RegisterClassInfo.cpp 36 bool Update = false;
43 Update = true;
48 if (Update || CSR != CalleeSaved) {
56 Update = true;
63 Update = true;
68 if (Update)
  /external/openfst/src/include/fst/
heap.h 20 // in heap using a key. The key can be used to do an in-place update of
35 // \brief A templated heap implementation that support in-place update
44 // to later update the specific value in the heap.
79 // Update a value at position given by the key. The pos array is first
83 void Update(int key, const T& val) {
182 // Insert (update) element at subtree rooted at index i
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
heap.h 18 // in heap using a key. The key can be used to do an in place update of
31 // \brief A templated heap implementation that support in place update
40 // to later update the specific value in the heap.
73 // update a value at position given by the key. The pos array is first
77 void Update(int key, const T& val) {
169 // insert(update) element at subtree rooted at index i
  /external/webkit/Source/WebCore/loader/appcache/
ApplicationCacheGroup.h 79 void update(Frame*, ApplicationCacheUpdateOption); // FIXME: Frame should not be needed when updating without browsing context.
149 // ApplicationCache object, so this may be null even when update status is not Idle.
152 // List of pending master entries, used during the update process to ensure that new master entries are cached.
164 // The total number of items to be processed to update the cache group and the number that have been done.
169 // FIXME: An update started by a particular frame should not stop if it is destroyed, but there are other frames associated with the same cache group.
176 // During update, this is used to handle asynchronously arriving results.
  /frameworks/av/media/libstagefright/codecs/amrnb/common/include/
cnst_vad.h 58 /* Constants for background spectrum update */
59 #define ALPHA_UP1 (Word16)((1.0 - 0.95)*MAX_16) /* Normal update, upwards: */
60 #define ALPHA_DOWN1 (Word16)((1.0 - 0.936)*MAX_16) /* Normal update, downwards */
61 #define ALPHA_UP2 (Word16)((1.0 - 0.985)*MAX_16) /* Forced update, upwards */
62 #define ALPHA_DOWN2 (Word16)((1.0 - 0.943)*MAX_16) /* Forced update, downwards */
63 #define ALPHA3 (Word16)((1.0 - 0.95)*MAX_16) /* Update downwards */
  /frameworks/av/media/libstagefright/codecs/amrwbenc/inc/
wb_vad_c.h 47 /* Time constants for background spectrum update */
48 #define ALPHA_UP1 (Word16)((1.0 - 0.95)*MAX_16) /* Normal update, upwards: */
49 #define ALPHA_DOWN1 (Word16)((1.0 - 0.936)*MAX_16) /* Normal update, downwards */
50 #define ALPHA_UP2 (Word16)((1.0 - 0.985)*MAX_16) /* Forced update, upwards */
51 #define ALPHA_DOWN2 (Word16)((1.0 - 0.943)*MAX_16) /* Forced update, downwards */
52 #define ALPHA3 (Word16)((1.0 - 0.95)*MAX_16) /* Update downwards */
  /libcore/luni/src/main/java/java/util/concurrent/atomic/
AtomicInteger.java 101 * @param update the new value
105 public final boolean compareAndSet(int expect, int update) {
106 return unsafe.compareAndSwapInt(this, valueOffset, expect, update);
118 * @param update the new value
121 public final boolean weakCompareAndSet(int expect, int update) {
122 return unsafe.compareAndSwapInt(this, valueOffset, expect, update);
AtomicLong.java 115 * @param update the new value
119 public final boolean compareAndSet(long expect, long update) {
120 return unsafe.compareAndSwapLong(this, valueOffset, expect, update);
132 * @param update the new value
135 public final boolean weakCompareAndSet(long expect, long update) {
136 return unsafe.compareAndSwapLong(this, valueOffset, expect, update);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ext/pb_ds/detail/ov_tree_map_/
constructors_destructor_fn_imps.hpp 157 update(PB_DS_node_begin_imp(), (node_update* )this);
210 update(PB_DS_node_begin_imp(), (node_update* )this);
258 update(node_iterator /*it*/, null_node_update_pointer) function in class:PB_DS_CLASS_C_DEC
265 update(node_iterator nd_it, Node_Update* p_update) function in class:PB_DS_CLASS_C_DEC
270 update(nd_it.get_l_child(), p_update);
271 update(nd_it.get_r_child(), p_update);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/ext/pb_ds/detail/ov_tree_map_/
constructors_destructor_fn_imps.hpp 157 update(PB_DS_node_begin_imp(), (node_update* )this);
210 update(PB_DS_node_begin_imp(), (node_update* )this);
258 update(node_iterator /*it*/, null_node_update_pointer) function in class:PB_DS_CLASS_C_DEC
265 update(node_iterator nd_it, Node_Update* p_update) function in class:PB_DS_CLASS_C_DEC
270 update(nd_it.get_l_child(), p_update);
271 update(nd_it.get_r_child(), p_update);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/ext/pb_ds/detail/ov_tree_map_/
constructors_destructor_fn_imps.hpp 157 update(PB_DS_node_begin_imp(), (node_update* )this);
210 update(PB_DS_node_begin_imp(), (node_update* )this);
258 update(node_iterator /*it*/, null_node_update_pointer) function in class:PB_DS_CLASS_C_DEC
265 update(node_iterator nd_it, Node_Update* p_update) function in class:PB_DS_CLASS_C_DEC
270 update(nd_it.get_l_child(), p_update);
271 update(nd_it.get_r_child(), p_update);
  /prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/ov_tree_map_/
constructors_destructor_fn_imps.hpp 157 update(PB_DS_node_begin_imp(), (node_update* )this);
210 update(PB_DS_node_begin_imp(), (node_update* )this);
258 update(node_iterator /*it*/, null_node_update_pointer) function in class:PB_DS_CLASS_C_DEC
265 update(node_iterator nd_it, Node_Update* p_update) function in class:PB_DS_CLASS_C_DEC
270 update(nd_it.get_l_child(), p_update);
271 update(nd_it.get_r_child(), p_update);
  /prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/ov_tree_map_/
constructors_destructor_fn_imps.hpp 157 update(PB_DS_node_begin_imp(), (node_update* )this);
210 update(PB_DS_node_begin_imp(), (node_update* )this);
258 update(node_iterator /*it*/, null_node_update_pointer) function in class:PB_DS_CLASS_C_DEC
265 update(node_iterator nd_it, Node_Update* p_update) function in class:PB_DS_CLASS_C_DEC
270 update(nd_it.get_l_child(), p_update);
271 update(nd_it.get_r_child(), p_update);
  /prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/ov_tree_map_/
constructors_destructor_fn_imps.hpp 157 update(PB_DS_node_begin_imp(), (node_update* )this);
210 update(PB_DS_node_begin_imp(), (node_update* )this);
258 update(node_iterator /*it*/, null_node_update_pointer) function in class:PB_DS_CLASS_C_DEC
265 update(node_iterator nd_it, Node_Update* p_update) function in class:PB_DS_CLASS_C_DEC
270 update(nd_it.get_l_child(), p_update);
271 update(nd_it.get_r_child(), p_update);
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/include/ext/pb_ds/detail/ov_tree_map_/
constructors_destructor_fn_imps.hpp 157 update(PB_DS_node_begin_imp(), (node_update* )this);
210 update(PB_DS_node_begin_imp(), (node_update* )this);
258 update(node_iterator /*it*/, null_node_update_pointer) function in class:PB_DS_CLASS_C_DEC
265 update(node_iterator nd_it, Node_Update* p_update) function in class:PB_DS_CLASS_C_DEC
270 update(nd_it.get_l_child(), p_update);
271 update(nd_it.get_r_child(), p_update);
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/ext/pb_ds/detail/ov_tree_map_/
constructors_destructor_fn_imps.hpp 157 update(PB_DS_node_begin_imp(), (node_update* )this);
210 update(PB_DS_node_begin_imp(), (node_update* )this);
258 update(node_iterator /*it*/, null_node_update_pointer) function in class:PB_DS_CLASS_C_DEC
265 update(node_iterator nd_it, Node_Update* p_update) function in class:PB_DS_CLASS_C_DEC
270 update(nd_it.get_l_child(), p_update);
271 update(nd_it.get_r_child(), p_update);
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/ext/pb_ds/detail/ov_tree_map_/
constructors_destructor_fn_imps.hpp 145 update(PB_DS_node_begin_imp(), (node_update*)this);
193 update(PB_DS_node_begin_imp(), (node_update* )this);
241 update(node_iterator, null_node_update_pointer) function in class:PB_DS_CLASS_C_DEC
248 update(node_iterator nd_it, Node_Update* p_update) function in class:PB_DS_CLASS_C_DEC
253 update(nd_it.get_l_child(), p_update);
254 update(nd_it.get_r_child(), p_update);

Completed in 3617 milliseconds

<<21222324252627282930>>