HomeSort by relevance Sort by last modified time
    Searched refs:commit (Results 1 - 25 of 278) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/webkit/Tools/Scripts/webkitpy/common/checkout/
commitinfo_unittest.py 50 commit = CommitInfo(123, "committer@example.com", changelog_data, committer_list)
52 self.assertEqual(commit.revision(), 123)
53 self.assertEqual(commit.bug_id(), 1234)
54 self.assertEqual(commit.author_name(), "Committer")
55 self.assertEqual(commit.author_email(), "author@example.com")
56 self.assertEqual(commit.author(), author)
57 self.assertEqual(commit.reviewer_text(), "Reviewer")
58 self.assertEqual(commit.reviewer(), reviewer)
59 self.assertEqual(commit.committer(), committer)
60 self.assertEqual(commit.committer_email(), "committer@example.com"
    [all...]
  /frameworks/base/core/jni/
android_nio_utils.h 51 * @param commit JNI_FALSE if the pointer was just read, and JNI_TRUE if
55 jboolean commit);
59 AutoBufferPointer(JNIEnv* env, jobject nioBuffer, jboolean commit);
android_nio_utils.cpp 54 jboolean commit) {
56 commit ? 0 : JNI_ABORT);
62 jboolean commit) {
64 fCommit = commit;
  /external/dnsmasq/contrib/wrt/
lease_update.sh 48 ${NVRAM} commit
  /external/webkit/Source/WebCore/platform/sql/
SQLiteTransaction.h 43 void commit();
SQLiteTransaction.cpp 67 void SQLiteTransaction::commit() function in class:WebCore::SQLiteTransaction
71 m_inProgress = !m_db.executeCommand("COMMIT");
101 // the auto-commit flag should be off in the middle of a transaction
  /external/dbus/
autogen.sh 16 if [ -f .git/hooks/pre-commit.sample -a ! -f .git/hooks/pre-commit ] ; then
17 echo "Activating pre-commit hook."
18 cp -av .git/hooks/pre-commit.sample .git/hooks/pre-commit
19 chmod -c +x .git/hooks/pre-commit
  /frameworks/base/media/libeffects/testlibs/
AudioPeakingFilter.cpp 57 commit(true);
64 commit(true);
89 void AudioPeakingFilter::commit(bool immediate) { function in class:android::AudioPeakingFilter
AudioShelvingFilter.cpp 63 commit(true);
69 commit(true);
91 void AudioShelvingFilter::commit(bool immediate) { function in class:android::AudioShelvingFilter
AudioPeakingFilter.h 62 // Sets gain value. Actual change will only take place upon commit().
70 // Sets bandwidth value. Actual change will only take place upon commit().
78 // Sets frequency value. Actual change will only take place upon commit().
96 void commit(bool immediate = false);
  /development/samples/ApiDemos/src/com/example/android/apis/preference/
FragmentPreferences.java 37 new PrefsFragment()).commit();
  /frameworks/ex/common/java/com/android/common/
SharedPreferencesCompat.java 26 * falling back to commit when apply isn't available.
50 editor.commit();
  /packages/apps/Music/src/com/android/music/
SharedPreferencesCompat.java 26 * falling back to commit when apply isn't available.
52 editor.commit();
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/compat/
SharedPreferencesCompat.java 26 * falling back to commit when apply isn't available.
51 editor.commit();
  /external/webkit/Source/JavaScriptCore/wtf/
OSAllocator.h 51 // These methods are symmetric; they commit or decommit a region of VM (uncommitted VM should
53 // Clients should only call commit on uncommitted regions and decommit on committed regions.
54 static void commit(void*, size_t, bool writable, bool executable);
73 commit(base, commitSize, writable, executable);
PageReservation.h 43 Before using memory it must be committed by calling commit, which is passed start
46 memory to its devommitted state. Commit should only be called on memory that is
77 void commit(void* start, size_t size) function in class:WTF::PageReservation
85 OSAllocator::commit(start, size, m_writable, m_executable);
OSAllocatorSymbian.cpp 96 // Commit what was previously reserved via reserveUncommitted()
97 void OSAllocator::commit(void* address, size_t bytes, bool, bool executable) function in class:WTF::OSAllocator
99 // For code chunks, we commit (early) in reserveUncommitted(), so NOOP
102 dataAllocatorInstance()->commit(address, bytes);
116 commit(base, bytes, writable, executable);
121 // The PageAllocatorSymbian class helps map OSAllocator calls for reserve/commit/decommit
130 // - OSAllocator::commit() actually calls RChunk.commit() and commits *all or part* of the region
177 // Actually commit memory from the OS, after a previous call to reserve()
178 bool PageAllocatorSymbian::commit(void* address, size_t bytes) function in class:WTF::PageAllocatorSymbian
    [all...]
PageAllocatorSymbian.h 85 bool commit(void*, size_t);
  /cts/tests/tests/content/src/android/content/cts/
SharedPreferencesTest.java 64 prefs.edit().clear().commit();
84 prefs.edit().putString("foo", "bar").commit(); method
103 // Do some initial operation on editor. No commit needed.
107 // No commit needed.
121 prefs.edit().commit();
126 editor.commit();
137 editor.commit();
219 prefs.edit().putString("foo", "bar").commit(); method
230 prefs.edit().putString("foo", "bar").commit(); method
239 prefs.edit().clear().commit();
    [all...]
  /external/apache-harmony/auth/src/test/java/common/org/apache/harmony/auth/tests/module/
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...]
  /development/samples/training/multiscreen/newsreader/src/com/example/android/newsreader/
ArticleActivity.java 58 getSupportFragmentManager().beginTransaction().add(android.R.id.content, f).commit();
  /external/skia/include/core/
SkBounder.h 80 virtual void commit();
  /external/webkit/Source/WebCore/storage/
SQLTransactionSync.h 64 ExceptionCode commit();
  /frameworks/base/core/java/com/android/internal/util/
JournaledFile.java 60 * Call {@link #commit} to commit the changes, or {@link #rollback} to forget the changes.
87 * Commit changes.
89 public void commit() { method in class:JournaledFile
91 throw new IllegalStateException("no file to commit");
  /frameworks/base/libs/rs/
rsLocklessFifo.h 58 void commit(uint32_t command, uint32_t bytes);

Completed in 758 milliseconds

1 2 3 4 5 6 7 8 91011>>