HomeSort by relevance Sort by last modified time
    Searched full:commit (Results 201 - 225 of 1180) sorted by null

1 2 3 4 5 6 7 891011>>

  /development/samples/Spinner/src/com/android/example/spinner/
SpinnerActivity.java 351 * Commit the changes. Return the result of the commit. The commit fails if Android
352 * failed to commit the changes to persistent storage.
355 return (e.commit());
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src_rss/org/eclipse/releng/services/rss/
RSSFeedPublisherTask.java 35 * cvsRoot - cvs root used to commit the file - eg., username@cvsserver:/cvsroot/path
87 //required for CVS commit (with default)
96 //required for CVS commit
100 //required for CVS commit (with default)
109 //required for CVS commit (with default)
  /external/oprofile/
HACKING 94 Making patches, commit rights
147 You may after a while be given direct commit rights. You should be
149 Your cvs commit message only needs to briefly describe what your change
167 in the last section, you should update the files in oprofile-www and commit.
198 Fix up any conflicts and commit it the changes to the branch. Now move the
  /external/replicaisland/src/com/replica/replicaisland/
MainMenuActivity.java 223 editor.commit();
238 editor.commit();
262 editor.commit();
276 editor.commit();
349 editor.commit();
  /external/webkit/Tools/Scripts/webkitpy/tool/commands/
download_unittest.py 120 expected_stderr = '\nWARNING: Builders ["Builder2"] are red, please watch your commit carefully.\nSee http://dummy_buildbot_host/console?category=core\n\nBuilding WebKit\nRunning Python unit tests\nRunning Perl unit tests\nRunning JavaScriptCore tests\nRunning run-webkit-tests\nCommitted r49824: <http://trac.webkit.org/changeset/49824>\nUpdating bug 42\n'
130 MOCK run_and_throw_if_fail: ['mock-check-webkit-style', '--git-commit', 'MOCK git commit', '--diff-files', 'MockFile1']
194 Any committer can land this patch automatically by marking it commit-queue+. The commit-queue will build and test the patch before landing to ensure that the rollout will be successful. This process takes approximately 15 minutes.
download.py 101 steps.Commit,
104 long_help = """land commits the current working copy diff (just as svn or git commit would).
125 steps.Commit,
265 steps.Commit,
390 help_text = "Revert the given revision(s) in the working copy and optionally commit the revert and re-open the original bug"
405 steps.Commit,
  /frameworks/av/media/libeffects/testlibs/
AudioEqualizer.h 105 // Sets gain value. Actual change will only take place upon commit().
118 // commit().
130 // Sets bandwidth value. Actual change will only take place upon commit().
167 // Change will not be applied until commit() is called.
177 void commit(bool immediate = false);
  /frameworks/base/docs/html/training/basics/fragments/
fragment-ui.jd 106 {@link android.support.v4.app.FragmentTransaction#commit()}.</p>
140 .add(R.id.fragment_container, firstFragment).commit();
161 android.support.v4.app.FragmentTransaction#addToBackStack addToBackStack()} before you commit the
185 // Commit the transaction
186 transaction.commit();
  /external/chromium/net/tools/testserver/
chromiumsync_test.py 255 # Commit a new item.
258 # Commit an item whose parent is another item (referenced via the
259 # pre-commit ID).
262 # Commit a sibling of the second item.
272 "Commit result didn't make a defensive copy.")
274 "Commit result didn't make a defensive copy.")
293 # Do this in a new commit session, meaning we'll reference items from
294 # the first batch by their post-commit, server IDs.
316 'Ids should be stable after first commit')
323 "Commit result didn't make a defensive copy."
    [all...]
  /external/e2fsprogs/e2fsck/
recovery.c 261 * any existing commit records in the log. */
390 * making sure that each transaction has a commit block in the
416 * either the next descriptor block or the final commit
567 jbd_debug(3, "Commit block for #%u found\n",
569 /* How to differentiate between interrupted commit
586 * Commit block found Commit block not found
593 * before commit block
597 * "Interrupted Commit".)
600 /* Found an expected commit block: if checksum
    [all...]
  /docs/source.android.com/src/source/
submit-patches.md 51 Once you have modified the source files (and validated them, please) commit the changes to your local repository:
54 $ git commit -s
56 Provide a detailed description of the change in your commit message. This description will be pushed to the public AOSP repository, so please follow our guidelines for writing changelist descriptions:
69 A unique change ID and your name and email as provided during `repo init` will be automatically added to your commit message.
86 Suppose a reviewer has looked at your patch and requested a small modification. You can amend your commit within git, which will result in a new patch on gerrit with the same change ID as the original.
91 $ git commit --amend
145 - Within Gerrit use Publish Comments to mark the commit as "Verified" or "Fails," and add a message explaining what problems were identified.
  /external/chromium/chrome/browser/sync/protocol/
sync.proto 64 // This item's identifier. In a commit of a new item, this will be a
65 // client-generated ID. If the commit succeeds, the server will generate
92 // current version on the server does not match |version|, the commit will
172 // contexts; to specify a position in a client-to-server commit context,
199 // where a client does not receive or process the commit response for
237 // If present in Commit updates for the entity, it will be ignored.
247 // commit-related traffic with extensions-related mutations to the
396 COMMIT = 1;
403 optional CommitMessage commit = 4;
559 optional CommitResponse commit = 1
    [all...]
  /external/webkit/Tools/Scripts/webkitpy/common/net/bugzilla/
bugzilla_unittest.py 60 <flag name="commit-queue"
78 'commit-queue' : '+',
107 <short_desc>bug to test webkit-patch&apos;s and commit-queue&apos;s failures</short_desc>
130 <thetext>bug to test webkit-patch and commit-queue failures
132 Ignore this bug. Just for testing failure modes of webkit-patch and the commit-queue.</thetext>
176 "title" : u"bug to test webkit-patch's and commit-queue's failures",
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/tree/
UiElementDetail.java 118 * Instructs it to commit the new (modified) data back into the model.
121 public void commit(boolean onSave) { method in class:UiElementDetail
128 mCurrentUiElementNode.commit();
134 AdtPlugin.log(e, "Detail node failed to commit XML attribute!"); //$NON-NLS-1$
234 // Before changing the table, commit all dirty state.
236 commit(false);
  /development/samples/WiFiDirectServiceDiscovery/src/com/example/android/wifidirect/discovery/
WiFiServiceDiscoveryActivity.java 103 .add(R.id.container_root, servicesList, "services").commit();
111 getFragmentManager().beginTransaction().remove(frag).commit();
338 .replace(R.id.container_root, chatFragment).commit();
  /external/chromium/chrome/browser/history/
history_backend.h 332 friend class CommitLaterTask; // The commit task needs to call Commit().
416 // ScheduleCommit). This function does the commit to write any new changes to
420 void Commit();
422 // Schedules a commit to happen in the future. We do this so that many
424 // already a commit scheduled for the future, this will do nothing.
427 // Cancels the scheduled commit, if any. If there is no scheduled commit,
543 // A commit has been scheduled to occur sometime in the future. We can check
544 // non-null-ness to see if there is a commit scheduled in the future, and w
    [all...]
  /external/chromium/chrome/browser/sync/engine/
get_commit_ids_command.cc 30 // are not in the correct order for commit.
44 VLOG(1) << "Debug commit batch result:" << verified_commit_ids[i];
248 // We commit deleted moves under deleted items as moves when collapsing
  /external/mesa3d/docs/
repository.html 108 and to LF on commit.
170 git add &lt;files to commit&gt;
171 git commit
  /external/nist-sip/java/gov/nist/javax/sip/parser/
RSeqParser.java 131 * CVS: If we are doing pre-commit code reviews and someone else has
154 * CVS: If we are doing pre-commit code reviews and someone else has
192 * CVS: If we are doing pre-commit code reviews and someone else has
  /frameworks/base/telephony/java/com/android/internal/telephony/cdma/
CDMALTEPhone.java 197 // commit and log the result.
198 if (! editor.commit()) {
199 Log.e(LOG_TAG, "failed to commit network selection preference");
  /development/samples/ApiDemos/src/com/example/android/apis/app/
FragmentContextMenu.java 44 getFragmentManager().beginTransaction().add(android.R.id.content, content).commit();
FragmentDialogOrActivity.java 45 ft.commit();
RedirectGetter.java 80 if (editor.commit()) {
  /development/samples/Support4Demos/src/com/example/android/supportv4/app/
FragmentContextMenuSupport.java 45 android.R.id.content, content).commit();
FragmentDialogOrActivitySupport.java 44 ft.commit();

Completed in 725 milliseconds

1 2 3 4 5 6 7 891011>>