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

1 2 3 4 5 6 7 8 91011>>

  /external/clang/include/clang/Edit/
Rewriters.h 19 class Commit;
22 const NSAPI &NS, Commit &commit);
25 const NSAPI &NS, Commit &commit,
29 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...]
  /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/libvpx/libvpx/tools/
ftfy.sh 9 This script applies a whitespace transformation to the commit at HEAD. If no
15 --amend Squashes the changes into the commit at HEAD
16 This option will also reformat the commit message.
17 --commit Creates a new commit containing only the whitespace changes
18 --msg-only Reformat the commit message only, ignore the patch itself.
46 commit() { function
49 log "HEAD doesn't have a Change-Id, unable to generate a new commit"
57 # Commit, preserving authorship from the parent commit
    [all...]
  /external/clang/lib/Edit/
RewriteObjCFoundationAPI.cpp 20 #include "clang/Edit/Commit.h"
60 const NSAPI &NS, Commit &commit) {
86 commit.replaceWithInner(Msg->getSourceRange(),
174 static void maybePutParensOnReceiver(const Expr *Receiver, Commit &commit) {
177 commit.insertWrap("(", RecRange, ")");
182 Commit &commit) {
193 commit.replaceWithInner(CharSourceRange::getCharRange(MsgRange.getBegin()
    [all...]
  /external/dnsmasq/contrib/wrt/
lease_update.sh 48 ${NVRAM} commit
  /developers/samples/android/content/multiuser/AppRestrictions/AppRestrictions/src/main/java/com/example/android/apprestrictions/
CustomRestrictionsActivity.java 41 new CustomRestrictionsFragment()).commit();
  /external/webkit/Source/WebCore/platform/sql/
SQLiteTransaction.h 43 void commit();
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
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...]
  /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();
  /external/smack/src/org/apache/harmony/javax/security/auth/spi/
LoginModule.java 33 boolean commit() throws LoginException; method in interface:LoginModule
  /frameworks/ex/common/java/com/android/common/
SharedPreferencesCompat.java 26 * falling back to commit when apply isn't available.
50 editor.commit();
  /hardware/qcom/display/libgralloc/
fb_priv.h 48 struct mdp_display_commit commit; member in struct:private_module_t
  /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/bison/build-aux/
do-release-commit-and-tag 4 # the date, release-type and version string in the NEWS file. That commit
38 recorded. Commit that result with a log entry marking the release,
141 *) die 'this tree is dirty; commit your changes first';;
169 | git commit -F - -a || die 'git commit failed'
  /external/clang/lib/ARCMigrate/
ObjCMT.cpp 17 #include "clang/Edit/Commit.h"
135 edit::Commit commit(*Consumer.Editor);
136 edit::rewriteToObjCLiteralSyntax(E, *Consumer.NSAPIObj, commit, &PMap);
137 Consumer.Editor->commit(commit);
141 edit::Commit commit(*Consumer.Editor);
142 edit::rewriteToObjCSubscriptSyntax(E, *Consumer.NSAPIObj, commit);
143 Consumer.Editor->commit(commit)
    [all...]
  /external/clang/lib/Rewrite/Frontend/
FixItRewriter.cpp 20 #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);

Completed in 1204 milliseconds

1 2 3 4 5 6 7 8 91011>>