HomeSort by relevance Sort by last modified time
    Searched defs:commit (Results 176 - 200 of 658) sorted by null

1 2 3 4 5 6 78 91011>>

  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Support/
BinaryStreamRef.h 169 Error commit() { return Stream->commit(); } function in class:llvm::WritableBinaryStreamRef
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Support/
BinaryStreamRef.h 169 Error commit() { return Stream->commit(); } function in class:llvm::WritableBinaryStreamRef
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/uimodel/
UiAbstractTextAttributeNode.java 102 public void commit() { method in class:UiAbstractTextAttributeNode
UiAttributeNode.java 76 * the section and then should set to false when the commit() method completed.
165 public abstract void commit(); method in class:UiAttributeNode
UiSeparatorAttributeNode.java 58 * the section and then should set to false when the commit() method completed.
143 public void commit() { method in class:UiSeparatorAttributeNode
144 // No value to commit.
UiTextValueNode.java 83 public void commit() { method in class:UiTextValueNode
  /tools/loganalysis/src/com/android/loganalysis/parser/
AbstractSectionParser.java 82 protected void commit() { method in class:AbstractSectionParser
  /development/samples/browseable/RuntimePermissions/src/com.example.android.system.runtimepermissions/
MainActivity.java 244 .commit(); method
256 .commit(); method
376 transaction.commit();
  /external/jcommander/src/test/java/com/beust/jcommander/command/
CommandAliasTest.java 63 CommandCommit commit = new CommandCommit(); local
64 jc.addCommand("commit", commit, "ci", "cmt");
67 Assert.assertEquals(jc.getParsedCommand(), "commit");
69 Assert.assertEquals(commit.amend.booleanValue(), true);
70 Assert.assertEquals(commit.author, "jack");
71 Assert.assertEquals(commit.files, Arrays.asList("file1.txt"));
80 CommandCommit commit = new CommandCommit(); local
81 jc.addCommand("commit", commit, "ci", "cmt")
95 CommandCommit commit = new CommandCommit(); local
119 CommandCommit commit = new CommandCommit(); local
138 CommandCommit commit = new CommandCommit(); local
156 CommandCommit commit = new CommandCommit(); local
    [all...]
  /developers/build/prebuilts/gradle/Geofencing/Application/src/main/java/com/example/android/wearable/geofencing/
SimpleGeofenceStore.java 96 // Commit the changes.
97 prefs.commit();
110 prefs.commit();
  /developers/build/prebuilts/gradle/WatchFace/Wearable/src/main/java/com/example/android/wearable/watchface/config/
ColorSelectionRecyclerViewAdapter.java 113 editor.commit();
  /developers/samples/android/wearable/wear/Geofencing/Application/src/main/java/com/example/android/wearable/geofencing/
SimpleGeofenceStore.java 96 // Commit the changes.
97 prefs.commit();
110 prefs.commit();
  /developers/samples/android/wearable/wear/WatchFace/Wearable/src/main/java/com/example/android/wearable/watchface/config/
ColorSelectionRecyclerViewAdapter.java 113 editor.commit();
  /development/samples/ApiDemos/src/com/example/android/apis/app/
FragmentCustomAnimations.java 56 ft.add(R.id.simple_fragment, newFragment).commit();
84 ft.commit();
FragmentLayout.java 77 getFragmentManager().beginTransaction().add(android.R.id.content, details).commit();
159 ft.commit();
  /development/samples/browseable/Geofencing/Application/src/com.example.android.wearable.geofencing/
SimpleGeofenceStore.java 96 // Commit the changes.
97 prefs.commit();
110 prefs.commit();
  /development/samples/training/TabCompat/src/com/example/android/tabcompat/lib/
CompatTabHoneycomb.java 87 ft.commit();
95 ft.commit();
103 ft.commit();
TabHelperEclair.java 86 ft.commit();
120 ft.commit();
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/Core/
FileHook.py 144 self.commit()
146 def commit(self): member in class:RecoverMgr
  /external/autotest/client/common_lib/
revision_control.py 38 """Exception raised for git commit errors."""
208 def commit(self, msg='default'): member in class:GitRepo
210 Commit changes to repo with the supplied commit msg.
212 @param msg: A message that goes with the commit.
214 rv = self.gitcmd('commit -a -m %s' % msg)
217 raise GitCommitError('Unable to commit', rv)
334 Get the top commit hash of the current local git branch.
336 @return: Top commit hash of local git branch
345 Get the top commit hash of the current remote git branch
    [all...]
  /external/autotest/server/hosts/
host_info.py 25 store.commit(host_info)
232 def commit(self, info): member in class:CachingHostInfoStore
237 |get_uncached| methods, update it as needed and then commit.
261 """Actual implementation to commit host_info to the store.
328 @param info: The HostInfo object to commit.
  /external/glide/library/src/main/java/com/bumptech/glide/load/engine/cache/
DiskLruCacheWrapper.java 93 editor.commit();
  /external/guice/extensions/persist/src/com/google/inject/persist/jpa/
JpaLocalTxnInterceptor.java 73 //commit transaction only if rollback didnt occur
75 txn.commit();
88 //everything was normal so commit the txn (do not move into try block above as it
91 txn.commit();
124 * Returns True if rollback DID NOT HAPPEN (i.e. if commit should continue).
132 boolean commit = true;
139 commit = false;
144 // (i.e. commit and throw anyway)
146 commit = true;
152 if (!commit) {
    [all...]
  /external/ims/rcs/presencepolling/src/com/android/service/ims/presence/
PresencePreferences.java 77 editor.commit();
96 editor.commit();
115 editor.commit();
134 editor.commit();
SharedPrefUtil.java 50 eabPref.putBoolean(INIT_DONE, initDone).commit();
64 eabPref.putLong(CONTACT_CHANGED_PREF_KEY, time).commit();
78 eabPref.putLong(CONTACT_PROFILE_CHANGED_PREF_KEY, time).commit();
92 eabPref.putLong(CONTACT_DELETE_PREF_KEY, time).commit();
103 eabPref.commit();
116 eabPref.commit();

Completed in 1500 milliseconds

1 2 3 4 5 6 78 91011>>