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

1 2 3 4 5 6 7 8 91011>>

  /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"
45 const NSAPI &NS, Commit &commit) {
68 commit.replaceWithInner(Msg->getSourceRange(),
80 static void maybePutParensOnReceiver(const Expr *Receiver, Commit &commit) {
84 commit.insertWrap("(", RecRange, ")");
88 static bool rewriteToSubscriptGet(const ObjCMessageExpr *Msg, Commit &commit) {
99 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
  /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();
  /development/samples/training/bitmapfun/src/com/example/android/bitmapfun/ui/
ImageGridActivity.java 36 ft.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();
  /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 18 #include "clang/Edit/Commit.h"
129 edit::Commit commit(*Consumer.Editor);
130 edit::rewriteToObjCLiteralSyntax(E, *Consumer.NSAPIObj, commit);
131 Consumer.Editor->commit(commit);
135 edit::Commit commit(*Consumer.Editor);
136 edit::rewriteToObjCSubscriptSyntax(E, *Consumer.NSAPIObj, commit);
137 Consumer.Editor->commit(commit)
    [all...]
  /external/clang/lib/Rewrite/
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...]
  /development/samples/training/bitmapfun/src/com/example/android/bitmapfun/util/
RetainFragment.java 51 fm.beginTransaction().add(mRetainFragment, TAG).commit();
  /development/samples/training/multiscreen/newsreader/src/com/example/android/newsreader/
ArticleActivity.java 58 getSupportFragmentManager().beginTransaction().add(android.R.id.content, f).commit();

Completed in 1303 milliseconds

1 2 3 4 5 6 7 8 91011>>