HomeSort by relevance Sort by last modified time
    Searched refs:commit (Results 226 - 250 of 1878) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /prebuilts/clang/host/linux-x86/clang-4479392/include/llvm/DebugInfo/PDB/Native/
PDBStringTableBuilder.h 42 Error commit(BinaryStreamWriter &Writer) const;
  /prebuilts/clang/host/linux-x86/clang-4579689/include/llvm/DebugInfo/CodeView/
DebugSubsection.h 42 virtual Error commit(BinaryStreamWriter &Writer) const = 0;
  /prebuilts/clang/host/linux-x86/clang-4579689/include/llvm/DebugInfo/PDB/Native/
NamedStreamMap.h 40 Error commit(BinaryStreamWriter &Writer) const;
PDBStringTableBuilder.h 42 Error commit(BinaryStreamWriter &Writer) const;
SymbolStream.h 39 Error commit();
  /prebuilts/clang/host/linux-x86/clang-4630689/include/llvm/DebugInfo/CodeView/
DebugSubsection.h 42 virtual Error commit(BinaryStreamWriter &Writer) const = 0;
  /prebuilts/clang/host/linux-x86/clang-4630689/include/llvm/DebugInfo/PDB/Native/
NamedStreamMap.h 40 Error commit(BinaryStreamWriter &Writer) const;
PDBStringTableBuilder.h 42 Error commit(BinaryStreamWriter &Writer) const;
SymbolStream.h 39 Error commit();
  /prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/DebugInfo/CodeView/
DebugSubsection.h 42 virtual Error commit(BinaryStreamWriter &Writer) const = 0;
  /prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/DebugInfo/PDB/Native/
NamedStreamMap.h 40 Error commit(BinaryStreamWriter &Writer) const;
PDBStringTableBuilder.h 42 Error commit(BinaryStreamWriter &Writer) const;
SymbolStream.h 39 Error commit();
  /prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/DebugInfo/CodeView/
DebugSubsection.h 42 virtual Error commit(BinaryStreamWriter &Writer) const = 0;
  /prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/DebugInfo/PDB/Native/
NamedStreamMap.h 40 Error commit(BinaryStreamWriter &Writer) const;
PDBStringTableBuilder.h 42 Error commit(BinaryStreamWriter &Writer) const;
SymbolStream.h 39 Error commit();
  /frameworks/support/fragment/src/androidTest/java/androidx/fragment/app/
FragmentViewTests.java 70 fm.beginTransaction().add(R.id.fragmentContainer, fragment1).addToBackStack(null).commit();
76 fm.beginTransaction().add(R.id.fragmentContainer, fragment2).addToBackStack(null).commit();
87 .commit();
117 fm.beginTransaction().add(R.id.fragmentContainer1, fragment1).addToBackStack(null).commit();
122 fm.beginTransaction().add(R.id.fragmentContainer2, fragment2).addToBackStack(null).commit();
132 .commit();
159 fm.beginTransaction().add(R.id.fragmentContainer, fragment1).commit();
169 .commit();
196 .commit();
201 fm.beginTransaction().remove(fragment4).addToBackStack(null).commit();
981 .commit(); method
990 .commit(); method
    [all...]
  /prebuilts/checkstyle/
checkstyle.py 68 ERROR_UNCOMMITTED = 'You need to commit all modified files before running Checkstyle\n'
91 def RunCheckstyleOnACommit(commit,
95 """Runs Checkstyle checks on a given commit.
97 It will run Checkstyle on the changed Java files in a specified commit SHA-1
98 and if that is None it will fallback to check the latest commit of the
102 commit: A full 40 character SHA-1 of a commit to check.
113 explicit_commit = commit is not None
116 commit = git.last_commit()
117 print 'Running Checkstyle on %s commit' % commi
    [all...]
  /bionic/tools/bionicbb/
gerrit.py 29 call('/changes/{}/revisions/{}/commit'.format(change_id, revision)))
52 commit = change['current_revision']
53 return change['revisions'][commit]['fetch']['http']['ref']
  /developers/build/prebuilts/gradle/ActivityInstrumentation/Application/src/main/java/com/example/android/activityinstrumentation/
MainActivity.java 94 // The methods below commit the ID of the currently selected item in the spinner
97 // Note: A common mistake here is to forget to call .commit(). Try removing this
101 mPrefs.edit().putInt(PREF_SPINNER_POS, position).commit();
106 mPrefs.edit().remove(PREF_SPINNER_POS).commit();
  /developers/samples/android/testing/ActivityInstrumentation/Application/src/main/java/com/example/android/activityinstrumentation/
MainActivity.java 94 // The methods below commit the ID of the currently selected item in the spinner
97 // Note: A common mistake here is to forget to call .commit(). Try removing this
101 mPrefs.edit().putInt(PREF_SPINNER_POS, position).commit();
106 mPrefs.edit().remove(PREF_SPINNER_POS).commit();
  /development/samples/browseable/ActivityInstrumentation/src/com.example.android.activityinstrumentation/
MainActivity.java 94 // The methods below commit the ID of the currently selected item in the spinner
97 // Note: A common mistake here is to forget to call .commit(). Try removing this
101 mPrefs.edit().putInt(PREF_SPINNER_POS, position).commit();
106 mPrefs.edit().remove(PREF_SPINNER_POS).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/Frontend/Rewrite/
FixItRewriter.cpp 20 #include "clang/Edit/Commit.h"
148 edit::Commit commit(Editor);
155 commit.insertFromRange(Hint.RemoveRange.getBegin(),
159 commit.remove(Hint.RemoveRange);
163 commit.replace(Hint.RemoveRange, Hint.CodeToInsert);
165 commit.insert(Hint.RemoveRange.getBegin(), Hint.CodeToInsert,
169 bool CanRewrite = Info.getNumFixItHints() > 0 && commit.isCommitable();
183 if (!Editor.commit(commit)) {
    [all...]

Completed in 597 milliseconds

1 2 3 4 5 6 7 8 91011>>