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

1 2 3 4 5 6 7 8

  /external/clang/lib/Format/
WhitespaceManager.h 84 /// \brief Represents a change before a token, a break inside a token,
86 struct Change {
91 bool operator()(const Change &C1, const Change &C2) const;
97 Change() {}
99 /// \brief Creates a \c Change.
101 /// The generated \c Change will replace the characters at
108 Change(bool CreateReplacement, SourceRange OriginalWhitespaceRange,
122 // The kind of the token whose whitespace this change replaces, or in which
123 // this change inserts whitespace
    [all...]
WhitespaceManager.cpp 21 bool WhitespaceManager::Change::IsBeforeInFile::
22 operator()(const Change &C1, const Change &C2) const {
28 WhitespaceManager::Change::Change(
58 Change(true, Tok.WhitespaceRange, IndentLevel, Spaces, StartOfTokenColumn,
68 Change(false, Tok.WhitespaceRange, /*IndentLevel=*/0,
81 Changes.push_back(Change(
85 // If we don't add a newline this change doesn't start a comment. Thus,
86 // when we align line comments, we don't need to treat this change as one
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/templates/
TemplatePreviewPage.java 18 import org.eclipse.ltk.core.refactoring.Change;
38 List<Change> changes = mValues.computeChanges();
40 changes.toArray(new Change[changes.size()]));
  /development/samples/SpellChecker/HelloSpellChecker/
Android.mk 8 # TODO: Change sdk version to 16
  /development/samples/SpellChecker/SampleSpellCheckerService/
Android.mk 8 # TODO: Change sdk version to 16
  /external/clang/include/clang/Rewrite/Core/
RewriteBuffer.h 104 void AddInsertDelta(unsigned OrigOffset, int Change) {
105 return Deltas.AddDelta(2*OrigOffset, Change);
110 void AddReplaceDelta(unsigned OrigOffset, int Change) {
111 return Deltas.AddDelta(2*OrigOffset+1, Change);
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-mips-elf/
mode-change-error-1.d 1 #name: Mode Change Error 1
2 #source: mode-change-error-1a.s
3 #source: mode-change-error-1b.s
  /external/ppp/pppd/plugins/radius/etc/
dictionary.microsoft 32 ATTRIBUTE MS-ARAP-PW-Change-Reason 21 integer Microsoft
60 # MS-ARAP-Password-Change-Reason Values
62 VALUE MS-ARAP-PW-Change-Reason Just-Change-Password 1
63 VALUE MS-ARAP-PW-Change-Reason Expired-Password 2
64 VALUE MS-ARAP-PW-Change-Reason Admin-Requires-Password-Change 3
65 VALUE MS-ARAP-PW-Change-Reason Password-Too-Short 4
  /prebuilts/go/darwin-x86/src/sort/
example_multi_test.go 12 // A Change is a record of source code changes, recording user, language, and delta size.
13 type Change struct {
19 type lessFunc func(p1, p2 *Change) bool
23 changes []Change
28 func (ms *multiSorter) Sort(changes []Change) {
54 // could change the functions to return -1, 0, 1 and reduce the
77 var changes = []Change{
93 // Closures that order the Change structure.
94 user := func(c1, c2 *Change) bool {
97 language := func(c1, c2 *Change) bool
    [all...]
  /prebuilts/go/linux-x86/src/sort/
example_multi_test.go 12 // A Change is a record of source code changes, recording user, language, and delta size.
13 type Change struct {
19 type lessFunc func(p1, p2 *Change) bool
23 changes []Change
28 func (ms *multiSorter) Sort(changes []Change) {
54 // could change the functions to return -1, 0, 1 and reduce the
77 var changes = []Change{
93 // Closures that order the Change structure.
94 user := func(c1, c2 *Change) bool {
97 language := func(c1, c2 *Change) bool
    [all...]
  /external/v8/src/compiler/
common-operator-reducer.h 40 Reduction Change(Node* node, Operator const* op, Node* a);
41 Reduction Change(Node* node, Operator const* op, Node* a, Node* b);
js-intrinsic-lowering.h 75 Reduction Change(Node* node, const Operator* op);
76 Reduction Change(Node* node, const Operator* op, Node* a, Node* b);
77 Reduction Change(Node* node, const Operator* op, Node* a, Node* b, Node* c);
78 Reduction Change(Node* node, const Operator* op, Node* a, Node* b, Node* c,
81 Reduction Change(Node* node, Callable const& callable,
simplified-operator-reducer.cc 62 return Change(node, machine()->ChangeInt32ToFloat64(), m.InputAt(0));
65 return Change(node, machine()->ChangeUint32ToFloat64(), m.InputAt(0));
73 return Change(node, machine()->ChangeFloat64ToInt32(), m.InputAt(0));
82 return Change(node, machine()->ChangeFloat64ToUint32(), m.InputAt(0));
118 Reduction SimplifiedOperatorReducer::Change(Node* node, const Operator* op,
simplified-operator-reducer.h 30 Reduction Change(Node* node, const Operator* op, Node* a);
js-intrinsic-lowering.cc 122 return Change(node, javascript()->CreateIterResultObject(), value, done,
159 return Change(node, machine()->Float64ExtractHighWord32());
164 return Change(node, machine()->Float64ExtractLowWord32());
227 return Change(node, common()->Phi(MachineRepresentation::kTagged, 2), vtrue,
319 return Change(node, simplified()->ObjectIsSmi());
327 return Change(node, simplified()->LoadField(AccessBuilder::ForValue()), value,
333 return Change(node, machine()->Word32Clz());
339 return Change(node, machine()->Float64RoundDown().op());
344 return Change(node, machine()->Float64Sqrt());
408 return Change(node, phi_op, vtrue0, vfalse0, merge0)
    [all...]
common-operator-reducer.cc 218 return Change(node, machine()->Float32Abs(), vtrue);
225 return Change(node, machine()->Float32Min().op(), vtrue, vfalse);
230 return Change(node, machine()->Float32Max().op(), vtrue, vfalse);
240 return Change(node, machine()->Float64Abs(), vtrue);
247 return Change(node, machine()->Float64Min().op(), vtrue, vfalse);
252 return Change(node, machine()->Float64Max().op(), vtrue, vfalse);
328 return Change(node, machine()->Float32Abs(), vtrue);
333 return Change(node, machine()->Float32Min().op(), vtrue, vfalse);
336 return Change(node, machine()->Float32Max().op(), vtrue, vfalse);
346 return Change(node, machine()->Float64Abs(), vtrue)
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
ChangeViewRefactoringTest.java 22 import org.eclipse.ltk.core.refactoring.Change;
56 List<Change> changes = refactoring.computeChanges(new NullProgressMonitor());
UnwrapRefactoringTest.java 20 import org.eclipse.ltk.core.refactoring.Change;
55 List<Change> changes = refactoring.computeChanges(new NullProgressMonitor());
WrapInRefactoringTest.java 23 import org.eclipse.ltk.core.refactoring.Change;
56 List<Change> changes = refactoring.computeChanges(new NullProgressMonitor());
UseCompoundDrawableRefactoringTest.java 24 import org.eclipse.ltk.core.refactoring.Change;
105 List<Change> changes = refactoring.computeChanges(new NullProgressMonitor());
108 changes.toArray(new Change[changes.size()]));
ExtractIncludeRefactoringTest.java 27 import org.eclipse.ltk.core.refactoring.Change;
147 List<Change> changes = refactoring.computeChanges(new NullProgressMonitor());
163 for (Change change : changes) {
164 if (change instanceof TextFileChange) {
  /sdk/files/proguard/bin/
proguard.bat 6 rem Change current directory and drive to where the script is, to avoid
proguardgui.bat 6 rem Change current directory and drive to where the script is, to avoid
retrace.bat 6 rem Change current directory and drive to where the script is, to avoid
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/refactorings/core/
RefactoringTestBase.java 35 import org.eclipse.ltk.core.refactoring.Change;
84 Change change = refactoring.createChange(new NullProgressMonitor()); local
85 assertNotNull(change);
86 String explanation = "CHANGES:\n-------\n" + describe(change);
120 public static String describe(Change change) throws Exception {
122 describe(sb, change, 0);
135 protected static void describe(StringBuilder sb, Change change, int indent) throws Exception
    [all...]

Completed in 1021 milliseconds

1 2 3 4 5 6 7 8