HomeSort by relevance Sort by last modified time
    Searched refs:UPDATE (Results 1 - 21 of 21) sorted by null

  /external/webkit/WebKitTools/Scripts/
update-webkit 30 # Update script for WebKit Open Source Project.
63 --chromium also update dependencies of the chromium port
65 -q|--quiet pass -q to svn update for quiet updates
86 system("perl", "WebKitTools/Scripts/update-webkit-chromium") == 0 or die $!;
88 system("perl", "WebKitTools/Scripts/update-webkit-auxiliary-libs") == 0 or die;
97 open UPDATE, "-|", "svn", "update", @svnOptions or die;
99 while (my $line = <UPDATE>) {
107 close UPDATE or die;
  /external/nist-sip/java/javax/sip/message/
Request.java 21 String UPDATE = "UPDATE";
  /packages/providers/ContactsProvider/tests/assets/testUnsynced/
legacy_contacts.sql 92 CREATE TRIGGER contact_methods_UPDATE_typeAndLabel AFTER UPDATE ON contact_methods WHEN (NEW.type != 0 AND NEW.label IS NOT NULL) OR (NEW.type = 0 AND NEW.label IS NULL) BEGIN SELECT RAISE (ABORT, 'exactly one of type or label must be set'); END;
93 CREATE TRIGGER contact_methods_delete DELETE ON contact_methods BEGIN UPDATE people SET _sync_dirty=1 WHERE people._id=old.person;END;
94 CREATE TRIGGER contact_methods_insert INSERT ON contact_methods BEGIN UPDATE people SET _sync_dirty=1 WHERE people._id=new.person;END;
95 CREATE TRIGGER contact_methods_update UPDATE ON contact_methods BEGIN UPDATE people SET _sync_dirty=1 WHERE people._id=old.person;END;
96 CREATE TRIGGER extensions_delete DELETE ON extensions BEGIN UPDATE people SET _sync_dirty=1 WHERE people._id=old.person;END;
97 CREATE TRIGGER extensions_insert INSERT ON extensions BEGIN UPDATE people SET _sync_dirty=1 WHERE people._id=new.person; END;
98 CREATE TRIGGER extensions_update AFTER UPDATE ON extensions BEGIN UPDATE people SET _sync_dirty=1 WHERE people._id=old.person; END;
99 CREATE TRIGGER groupmembership_delete DELETE ON groupmembership BEGIN UPDATE people SET _sync_dirty=1 WHERE people._id=old.person;END
    [all...]
  /packages/apps/Browser/src/com/android/browser/widget/
BookmarkWidgetProvider.java 35 context.startService(new Intent(BookmarkWidgetService.UPDATE, null,
BookmarkWidgetService.java 54 public static final String UPDATE = "com.android.browser.widget.UPDATE";
120 // The current id used by the widget during an update.
147 if (UPDATE.equals(action)) {
176 // widget does not update.
206 // widget does not update.
266 // Update the current id.
339 // deleted or this is the first update).
380 // update the widget.
  /packages/providers/ContactsProvider/tests/assets/test1/
legacy_contacts.sql 124 CREATE TRIGGER contact_methods_UPDATE_typeAndLabel AFTER UPDATE ON contact_methods WHEN (NEW.type != 0 AND NEW.label IS NOT NULL) OR (NEW.type = 0 AND NEW.label IS NULL) BEGIN SELECT RAISE (ABORT, 'exactly one of type or label must be set'); END;
125 CREATE TRIGGER contact_methods_delete DELETE ON contact_methods BEGIN UPDATE people SET _sync_dirty=1 WHERE people._id=old.person;END;
126 CREATE TRIGGER contact_methods_insert INSERT ON contact_methods BEGIN UPDATE people SET _sync_dirty=1 WHERE people._id=new.person;END;
127 CREATE TRIGGER contact_methods_update UPDATE ON contact_methods BEGIN UPDATE people SET _sync_dirty=1 WHERE people._id=old.person;END;
128 CREATE TRIGGER extensions_delete DELETE ON extensions BEGIN UPDATE people SET _sync_dirty=1 WHERE people._id=old.person;END;
129 CREATE TRIGGER extensions_insert INSERT ON extensions BEGIN UPDATE people SET _sync_dirty=1 WHERE people._id=new.person; END;
130 CREATE TRIGGER extensions_update AFTER UPDATE ON extensions BEGIN UPDATE people SET _sync_dirty=1 WHERE people._id=old.person; END;
131 CREATE TRIGGER groupmembership_delete DELETE ON groupmembership BEGIN UPDATE people SET _sync_dirty=1 WHERE people._id=old.person;END
    [all...]
  /packages/providers/ContactsProvider/tests/assets/testSynced/
legacy_contacts.sql 148 CREATE TRIGGER contact_methods_UPDATE_typeAndLabel AFTER UPDATE ON contact_methods WHEN (NEW.type != 0 AND NEW.label IS NOT NULL) OR (NEW.type = 0 AND NEW.label IS NULL) BEGIN SELECT RAISE (ABORT, 'exactly one of type or label must be set'); END;
149 CREATE TRIGGER contact_methods_delete DELETE ON contact_methods BEGIN UPDATE people SET _sync_dirty=1 WHERE people._id=old.person;END;
150 CREATE TRIGGER contact_methods_insert INSERT ON contact_methods BEGIN UPDATE people SET _sync_dirty=1 WHERE people._id=new.person;END;
151 CREATE TRIGGER contact_methods_update UPDATE ON contact_methods BEGIN UPDATE people SET _sync_dirty=1 WHERE people._id=old.person;END;
152 CREATE TRIGGER extensions_delete DELETE ON extensions BEGIN UPDATE people SET _sync_dirty=1 WHERE people._id=old.person;END;
153 CREATE TRIGGER extensions_insert INSERT ON extensions BEGIN UPDATE people SET _sync_dirty=1 WHERE people._id=new.person; END;
154 CREATE TRIGGER extensions_update AFTER UPDATE ON extensions BEGIN UPDATE people SET _sync_dirty=1 WHERE people._id=old.person; END;
155 CREATE TRIGGER groupmembership_delete DELETE ON groupmembership BEGIN UPDATE people SET _sync_dirty=1 WHERE people._id=old.person;END
    [all...]
  /sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/internal/repository/
DocPackage.java 192 // the new doc is an update if the api level is higher (no matter the codename on either)
194 return UpdateInfo.UPDATE;
201 return UpdateInfo.UPDATE;
205 // is a preview, in which case it's also an update (since preview have the api level
209 return UpdateInfo.UPDATE;
Package.java 68 * but just not an update.
77 UPDATE;
453 * Computes whether the given package is a suitable update for the current package.
455 * An update is just that: a new package that supersedes the current one. If the new
457 * current one, it's not an update.
476 return UpdateInfo.UPDATE;
  /frameworks/base/core/java/android/webkit/
WebStorage.java 54 static final int UPDATE = 0;
210 case UPDATE:
251 update(); method
384 public void update() { method in class:WebStorage
388 postMessage(Message.obtain(null, UPDATE));
  /external/chromium/net/http/
http_cache_transaction.h 57 // o If the mode of the transaction is UPDATE, then the transaction may
58 // update existing cache entries, but will never create a new entry or
67 UPDATE = READ_META | WRITE, // READ_WRITE & ~READ_DATA
http_cache_transaction.cc 203 // Downgrade to UPDATE if the request has been externally conditionalized.
208 mode_ = UPDATE;
442 if (mode_ == UPDATE) {
443 // There is no cache entry to update; proceed without caching.
547 // o if we are set to UPDATE, then we are handling an externally
558 case UPDATE:
1020 DCHECK_EQ(UPDATE, mode_);
    [all...]
  /sdk/sdkmanager/libs/sdkuilib/src/com/android/sdkuilib/internal/repository/
RepoSourcesAdapter.java 183 * only update packages. If the list is empty, returns a specific empty node. If there's
284 * @return a non null (but maybe empty) list of new or update packages.
308 if (info == UpdateInfo.UPDATE) {
UpdaterLogic.java 249 if (localPkg.canBeUpdatedBy(remotePkg) == UpdateInfo.UPDATE) {
250 // Found a suitable update. Only accept the remote package
275 // Is this an update?
282 if (lp.canBeUpdatedBy(p) == UpdateInfo.UPDATE) {
  /external/chromium/third_party/zlib/
inflate.c 310 Update the window with the last wsize (normally 32K) bytes written before
377 # define UPDATE(check, buf, len) \
380 # define UPDATE(check, buf, len) adler32(check, buf, len)
534 When returning, a "goto inf_leave" is used to update the total counters,
535 update the check value, and determine whether any progress has been made
538 When there is a window, goto inf_leave will update the window with the last
    [all...]
  /external/qemu/distrib/zlib-1.2.3/
inflate.c 310 Update the window with the last wsize (normally 32K) bytes written before
377 # define UPDATE(check, buf, len) \
380 # define UPDATE(check, buf, len) adler32(check, buf, len)
534 When returning, a "goto inf_leave" is used to update the total counters,
535 update the check value, and determine whether any progress has been made
538 When there is a window, goto inf_leave will update the window with the last
    [all...]
  /external/zlib/
inflate.c 162 /* update state and reset the rest of it */
345 Update the window with the last wsize (normally 32K) bytes written before
412 # define UPDATE(check, buf, len) \
415 # define UPDATE(check, buf, len) adler32(check, buf, len)
569 When returning, a "goto inf_leave" is used to update the total counters,
570 update the check value, and determine whether any progress has been made
573 When there is a window, goto inf_leave will update the window with the last
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/message/
SIPRequest.java 93 * Set of target refresh methods, currently: INVITE, UPDATE, SUBSCRIBE, NOTIFY, REFER
111 targetRefreshMethods.add(Request.UPDATE);
130 putName(Request.UPDATE);
    [all...]
  /development/apps/Term/src/com/android/term/
Term.java     [all...]
  /external/nist-sip/java/gov/nist/javax/sip/
DialogFilter.java 429 } else if (sipRequest.getMethod().equals(Request.UPDATE)) {
431 * Got an UPDATE method and the user dialog does not exist and the user wants to be a
    [all...]
  /prebuilt/common/eclipse/
org.eclipse.jface_3.4.2.M20090107-0800.jar 

Completed in 1234 milliseconds