/external/clang/include/clang/Edit/ |
Rewriters.h | 18 class Commit; 21 const NSAPI &NS, Commit &commit); 24 const NSAPI &NS, Commit &commit); 27 const NSAPI &NS, Commit &commit);
|
/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...] |
/external/clang/lib/Edit/ |
RewriteObjCFoundationAPI.cpp | 15 #include "clang/Edit/Commit.h" 59 const NSAPI &NS, Commit &commit) { 85 commit.replaceWithInner(Msg->getSourceRange(), 173 static void maybePutParensOnReceiver(const Expr *Receiver, Commit &commit) { 176 commit.insertWrap("(", RecRange, ")"); 181 Commit &commit) { 192 commit.replaceWithInner(CharSourceRange::getCharRange(MsgRange.getBegin() [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();
|
/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
|
/development/samples/training/TabCompat/src/com/example/android/tabcompat/lib/ |
CompatTabHoneycomb.java | 87 ft.commit(); 95 ft.commit(); 103 ft.commit();
|
/frameworks/av/media/libeffects/testlibs/ |
AudioPeakingFilter.cpp | 55 commit(true); 62 commit(true); 87 void AudioPeakingFilter::commit(bool immediate) { function in class:android::AudioPeakingFilter
|
AudioShelvingFilter.cpp | 61 commit(true); 67 commit(true); 89 void AudioShelvingFilter::commit(bool immediate) { function in class:android::AudioShelvingFilter
|
/cts/tests/tests/preference2/src/android/preference2/cts/ |
FragmentPreferences.java | 35 new PrefsFragment()).commit();
|
PreferenceFragmentActivity.java | 38 transaction.commit();
|
/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();
|
/tools/motodev/src/plugins/android.codeutils/templates/activity_samples/endless_list_usingfragment/ |
endless_list_activity.java | 41 ft.commit();
|
/development/samples/training/basic/FragmentBasics/src/com/example/fragments/ |
MainActivity.java | 51 .add(R.id.fragment_container, firstFragment).commit(); 83 // Commit the transaction 84 transaction.commit();
|
/external/clang/lib/ARCMigrate/ |
ObjCMT.cpp | 19 #include "clang/Edit/Commit.h" 130 edit::Commit commit(*Consumer.Editor); 131 edit::rewriteToObjCLiteralSyntax(E, *Consumer.NSAPIObj, commit); 132 Consumer.Editor->commit(commit); 136 edit::Commit commit(*Consumer.Editor); 137 edit::rewriteToObjCSubscriptSyntax(E, *Consumer.NSAPIObj, commit); 138 Consumer.Editor->commit(commit) [all...] |
/external/clang/lib/Rewrite/Frontend/ |
FixItRewriter.cpp | 17 #include "clang/Edit/Commit.h" 143 edit::Commit commit(Editor); 150 commit.insertFromRange(Hint.RemoveRange.getBegin(), 154 commit.remove(Hint.RemoveRange); 158 commit.replace(Hint.RemoveRange, Hint.CodeToInsert); 160 commit.insert(Hint.RemoveRange.getBegin(), Hint.CodeToInsert, 164 bool CanRewrite = Info.getNumFixItHints() > 0 && commit.isCommitable(); 178 if (!Editor.commit(commit)) { [all...] |
/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);
|
/cts/tests/tests/content/src/android/content/cts/ |
SharedPreferencesTest.java | 58 prefs.edit().clear().commit(); 78 prefs.edit().putString("foo", "bar").commit(); method 97 // Do some initial operation on editor. No commit needed. 101 // No commit needed. 115 prefs.edit().commit(); 120 editor.commit(); 131 editor.commit(); 213 prefs.edit().putString("foo", "bar").commit(); method 224 prefs.edit().putString("foo", "bar").commit(); method 233 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...] |
/external/llvm/unittests/Support/ |
FileOutputBufferTest.cpp | 49 // TEST 1: Verify commit case. 59 // Commit buffer. 60 ASSERT_NO_ERROR(Buffer->commit()); 80 // Do *not* commit buffer. 98 // Commit buffer, but size down to smaller size 99 ASSERT_NO_ERROR(Buffer->commit(5000)); 121 // Commit buffer. 122 ASSERT_NO_ERROR(Buffer->commit());
|