/external/clang/include/clang/Edit/ |
Rewriters.h | 25 class Commit; 28 const NSAPI &NS, Commit &commit); 31 const NSAPI &NS, Commit &commit, 35 const NSAPI &NS, Commit &commit);
|
/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);
|
/external/llvm/utils/git-svn/ |
git-svnrevert | 5 echo "$0 <commit to revert>" 15 COMMIT=$1 17 SVN_REVISION=$(git svn find-rev "$COMMIT") 19 echo "Error! Could not find an svn revision for commit $COMMIT!" 23 # Grab the one line message for our revert commit message. 24 ONE_LINE_MSG=$(git log --oneline $COMMIT -1 | cut -f2- -d " ") 26 # Revert the commit. 27 git revert --no-commit $COMMIT 2>/dev/nul [all...] |
/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. 47 commit() { function 50 log "HEAD doesn't have a Change-Id, unable to generate a new commit" 58 # 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/ceres-solver/ |
import_ceres_upstream.sh | 25 declare -r commit="$(git log | head -1 | cut -d ' ' -f2)" 42 echo "URL: https://ceres-solver.googlesource.com/ceres-solver/+archive/$commit.tar.gz" >> $temp_readme 43 echo "Version: $commit" >> $temp_readme
|
patch_from_client.sh | 24 declare -r commit="$(git log | head -1)" 41 echo "URL: https://ceres-solver.googlesource.com/ceres-solver/+/$commit" >> $temp_readme 42 echo "Version: $commit" >> $temp_readme
|
/external/chromium_org/ui/base/cocoa/ |
animation_utils.h | 44 [CATransaction commit]; 58 [CATransaction commit];
|
/external/dnsmasq/contrib/wrt/ |
lease_update.sh | 48 ${NVRAM} commit
|
/developers/build/prebuilts/gradle/AppRestrictions/AppRestrictionsSample/src/main/java/com/example/android/apprestrictions/ |
CustomRestrictionsActivity.java | 41 new CustomRestrictionsFragment()).commit();
|
/developers/samples/android/content/multiuser/AppRestrictions/AppRestrictionsSample/src/main/java/com/example/android/apprestrictions/ |
CustomRestrictionsActivity.java | 41 new CustomRestrictionsFragment()).commit();
|
/development/samples/browseable/AppRestrictions/src/com.example.android.apprestrictions/ |
CustomRestrictionsActivity.java | 41 new CustomRestrictionsFragment()).commit();
|
/external/chromium_org/third_party/WebKit/Source/modules/webdatabase/sqlite/ |
SQLiteTransaction.h | 43 void commit();
|
/external/chromium_org/tools/git/ |
graph.sh | 28 commit=$(git rev-list -1 --until="$ago days ago" origin/trunk) 29 git checkout -q -f $commit
|
/cts/tests/sample/src/android/sample/ |
SampleDeviceActivity.java | 52 // Commit the changes - important. 53 editor.commit(); 74 // Commit the changes - important. 75 editor.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...] |
/external/clang/lib/ARCMigrate/ |
ObjCMT.cpp | 18 #include "clang/Edit/Commit.h" 157 edit::Commit commit(*Consumer.Editor); 158 edit::rewriteToObjCLiteralSyntax(E, *Consumer.NSAPIObj, commit, &PMap); 159 Consumer.Editor->commit(commit); 163 edit::Commit commit(*Consumer.Editor); 164 edit::rewriteToObjCSubscriptSyntax(E, *Consumer.NSAPIObj, commit); 165 Consumer.Editor->commit(commit) [all...] |
/external/clang/tools/clang-format/ |
git-clang-format | 18 clang-format on the changes in current files or a specific commit. 35 usage = 'git clang-format [OPTIONS] [<commit>] [--] [<file>...]' 39 and <commit>, which defaults to HEAD. Changes are only applied to the working 44 clangFormat.commit 86 p.add_argument('--commit', 87 default=config.get('clangformat.commit', 'HEAD'), 88 help='default commit to use if none is specified'), 108 # to use some heuristics to determine whether or not <commit> was present. 110 p.add_argument('args', nargs='*', metavar='<commit>', 119 commit, files = interpret_args(opts.args, dash_dash, opts.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/chromium_org/build/git-hooks/ |
pre-commit | 5 echo "You are trying to commit changes to the following submodules:" 1>&2 21 commit the new version to DEPS, instead. 28 You are trying to commit a change to .gitmodules. That is not allowed.
|