HomeSort by relevance Sort by last modified time
    Searched defs:commit (Results 126 - 150 of 385) sorted by null

1 2 3 4 56 7 8 91011>>

  /cts/apps/CtsVerifier/src/com/android/cts/verifier/nfc/hce/
SimpleReaderActivity.java 166 editor.commit();
174 editor.commit();
  /development/samples/ApiDemos/src/com/example/android/apis/app/
FragmentTabsFragment.java 187 ft.commit();
211 ft.commit();
  /development/samples/Support7Demos/src/com/example/android/supportv7/app/
ActionBarFragmentMenu.java 73 ft.commit();
106 ft.commit();
118 ft.commit();
176 ft.commit();
  /development/samples/training/device-management-policy/src/com/example/training/deviceadmin/
Policy.java 85 editor.commit();
164 prefs.edit().clear().commit();
  /external/apache-harmony/auth/src/test/java/common/org/apache/harmony/auth/tests/module/
JndiLoginModuleTest.java 95 * {@link org.apache.harmony.auth.module.JndiLoginModule#commit()}.
103 module.commit();
113 assertFalse("Commit shouldn't be successful", module.commit());
175 module.commit();
212 module.commit();
227 module.commit();
246 module.commit();
261 module.commit();
279 module.commit();
    [all...]
KeyStoreLoginModuleTest.java 89 module.commit();
106 assertFalse("Commit shouldn't be successful", module.commit());
158 module.commit();
LdapLoginModuleTest.java 94 * Test method for {@link org.apache.harmony.auth.module.LdapLoginModule#commit()}.
103 module.commit();
113 assertFalse("Commit shouldn't be successful", module.commit());
174 module.commit();
197 module.commit();
227 module.commit();
243 module.commit();
259 module.commit();
271 module.commit();
    [all...]
  /external/apache-harmony/sql/src/test/java/org/apache/harmony/sql/tests/java/sql/
TestHelper_Connection1.java 50 public void commit() throws SQLException { method in class:TestHelper_Connection1
  /external/chromium/chrome/browser/sync/engine/
process_commit_response_command_unittest.cc 118 // Create a new unsynced item in the database, and synthesize a commit
119 // record and a commit response for it in the syncer session. If item_id
144 // ProcessCommitResponseCommand looks at both the commit message as well
145 // as the commit response, so we need to synthesize both here.
146 sync_pb::ClientToServerMessage* commit = local
148 commit->set_message_contents(ClientToServerMessage::COMMIT);
150 commit->mutable_commit()->add_entries());
177 for (int i = 0; i < commit->commit().entries_size(); ++i)
    [all...]
  /external/chromium_org/base/test/android/javatests/src/org/chromium/base/test/util/
InMemorySharedPreferences.java 17 * It keeps all state in memory, and there is no difference between apply() and commit().
206 public boolean commit() { method in class:InMemorySharedPreferences.InMemoryEditor
  /external/chromium_org/sync/android/java/src/org/chromium/sync/notifier/
InvalidationPreferences.java 33 * Finally, call {@link #commit(EditContext)} to save the changes to stable storage.
96 public boolean commit(EditContext editContext) { method in class:InvalidationPreferences
97 if (!editContext.editor.commit()) {
98 Log.w(TAG, "Failed to commit invalidation preferences");
  /external/clang/lib/Edit/
EditedSource.cpp 13 #include "clang/Edit/Commit.h"
220 bool EditedSource::commit(const Commit &commit) { function in class:EditedSource
221 if (!commit.isCommitable())
224 for (edit::Commit::edit_iterator
225 I = commit.edit_begin(), E = commit.edit_end(); I != E; ++I) {
226 const edit::Commit::Edit &edit = *I;
228 case edit::Commit::Act_Insert
    [all...]
  /external/replicaisland/src/com/replica/replicaisland/
KeyboardConfigDialogPreference.java 199 editor.commit();
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/tester/android/content/
TestSharedPreferences.java 150 public boolean commit() { method in class:TestSharedPreferences.TestSharedPreferencesEditor
172 commit(); method
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/tester/android/util/
TestFragmentTransaction.java 163 public int commit() { method in class:TestFragmentTransaction
171 return commit();
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
DialogFragmentTest.java 115 t.commit();
FragmentTransactionTest.java 89 txn.add(111, fragment).commit(); method
100 txn.add(111, fragment, "tag1").commit(); method
111 txn.add(fragment, "tag1").commit();
122 txn.replace(111, fragment).commit(); method
133 txn.replace(111, fragment, "tag1").commit(); method
153 txn.add(fragment, "tag1").commit();
172 txn.attach(fragment).commit();
179 txn.hide(fragment).commit();
186 txn.show(fragment).commit();
202 txn.hide(fragment).commit();
    [all...]
  /frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/exif/
ExifModifier.java 70 protected boolean commit() throws IOException, ExifInvalidFormatException { method in class:ExifModifier
  /frameworks/base/tests/appwidgets/AppWidgetHostTest/src/com/android/tests/appwidgethost/
AppWidgetHostActivity.java 95 prefs.commit();
  /hardware/qcom/display/msm8960/liboverlay/
overlay.cpp 122 bool Overlay::commit(utils::eDest dest) { function in class:overlay::Overlay
127 if(mPipeBook[index].mPipe->commit()) {
145 //Queue only if commit() has succeeded (and the bit set)
  /hardware/qcom/display/msm8974/liboverlay/
overlay.cpp 136 bool Overlay::commit(utils::eDest dest) { function in class:overlay::Overlay
141 if(mPipeBook[index].mPipe->commit()) {
166 //Queue only if commit() has succeeded (and the bit set)
321 //Commit
326 ALOGE("%s: commit failed", __func__);
overlayMdssRot.cpp 119 bool MdssRot::commit() { function in class:overlay::MdssRot
124 ALOGE("MdssRot commit failed!");
  /hardware/qcom/display/msm8x26/liboverlay/
overlay.cpp 122 bool Overlay::commit(utils::eDest dest) { function in class:overlay::Overlay
127 if(mPipeBook[index].mPipe->commit()) {
145 //Queue only if commit() has succeeded (and the bit set)
  /libcore/luni/src/main/java/java/sql/
Connection.java 113 * Commits all of the changes made since the last {@code commit} or
116 * connection objects in {@code auto-commit} mode leads to an error.
120 * connection instance is in auto-commit mode.
122 public void commit() throws SQLException; method in interface:Connection
204 * the {@code auto-commit} operating mode.
206 * @return {@code true} if {@code auto-commit} is on, otherwise {@code
621 * operation when in auto-commit mode.
625 * called while in auto-commit mode of operation.
631 * set. This method should only be used when auto-commit mode is disabled.
641 * Sets this connection's auto-commit mode {@code on} or {@code off}
    [all...]
  /packages/apps/Camera2/src/com/android/camera/exif/
ExifModifier.java 70 protected boolean commit() throws IOException, ExifInvalidFormatException { method in class:ExifModifier

Completed in 1570 milliseconds

1 2 3 4 56 7 8 91011>>