HomeSort by relevance Sort by last modified time
    Searched defs:edits (Results 1 - 25 of 28) sorted by null

1 2

  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/core/
AndroidTypeMoveParticipant.java 58 import org.eclipse.text.edits.MultiTextEdit;
59 import org.eclipse.text.edits.ReplaceEdit;
60 import org.eclipse.text.edits.TextEdit;
238 List<TextEdit> edits = new ArrayList<TextEdit>(); local
240 addManifestReplacements(edits, root, document);
242 addLayoutReplacements(edits, root, document);
244 if (!edits.isEmpty()) {
246 rootEdit.addChildren(edits.toArray(new TextEdit[edits.size()]));
273 @NonNull List<TextEdit> edits,
    [all...]
AndroidTypeRenameParticipant.java 70 import org.eclipse.text.edits.MultiTextEdit;
71 import org.eclipse.text.edits.ReplaceEdit;
72 import org.eclipse.text.edits.TextEdit;
375 List<TextEdit> edits = new ArrayList<TextEdit>(); local
378 addManifestReplacements(edits, root, document);
380 addValueReplacements(edits, root, document);
383 addLayoutReplacements(edits, root, document);
385 if (!edits.isEmpty()) {
387 rootEdit.addChildren(edits.toArray(new TextEdit[edits.size()]))
    [all...]
RenameResourceParticipant.java 71 import org.eclipse.text.edits.MultiTextEdit;
72 import org.eclipse.text.edits.ReplaceEdit;
73 import org.eclipse.text.edits.TextEdit;
510 List<TextEdit> edits = new ArrayList<TextEdit>(); local
511 addReplacements(edits, root, document, folderType);
512 if (!edits.isEmpty()) {
514 rootEdit.addChildren(edits.toArray(new TextEdit[edits.size()]));
541 @NonNull List<TextEdit> edits,
561 edits.add(new ReplaceEdit(start, end - start, mNewName))
    [all...]
  /external/chromium_org/tools/clang/scripts/
run_tool.py 26 should output edits to stdout in the following format:
28 ==== BEGIN EDITS ====
32 ==== END EDITS ====
34 Any generated edits are applied once the clang tool has finished running
66 """Extracts generated list of edits from the tool's stdout.
76 A dictionary mapping filenames to the associated edits.
79 start_index = lines.index('==== BEGIN EDITS ====')
80 end_index = lines.index('==== END EDITS ====')
81 edits = collections.defaultdict(list)
89 edits[path].append(Edit(edit_type, int(offset), int(length), replacement)
146 def edits(self): member in class:_CompilerDispatcher
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
TypographyFix.java 68 List<TypographyDetector.ReplaceEdit> edits = local
70 for (TypographyDetector.ReplaceEdit edit : edits) {
  /external/chromium_org/media/formats/mp4/
track_run_iterator.cc 229 const std::vector<EditListEntry>& edits = trak->edit.list.edits; local
230 if (!edits.empty()) {
231 if (edits.size() > 1)
234 if (edits[0].media_time < 0) {
237 edit_list_offset = -edits[0].media_time;
box_definitions.h 139 std::vector<EditListEntry> edits; member in struct:media::mp4::EditList
  /external/openfst/src/include/fst/
edit-fst.h 37 // relatively small number of edits (read: mutations), then this implementation
38 // will copy the edited node to an internal MutableFst and perform any edits in
340 // next read in MutabelFstT machine that stores edits
351 MutableFstT *edits = MutableFstT::Read(strm, edits_opts); local
352 if (!edits) {
355 data->edits_ = *edits;
356 delete edits;
371 // number of edits (read: mutations), then this implementation will copy the
372 // edited node to an internal MutableFst and perform any edits in situ on that
614 // mutating methods specifically related to the types of edits provide
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
RefactoringTest.java 37 import org.eclipse.text.edits.MultiTextEdit;
38 import org.eclipse.text.edits.TextEdit;
123 MultiTextEdit edits = (MultiTextEdit) edit; local
124 edits.apply(document);
135 // Ensure that the document is still valid to make sure the edits don't
171 MultiTextEdit edits = (MultiTextEdit) edit; local
172 edits.apply(document);
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.text_3.5.0.v20100601-1300.jar 
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
VisualRefactoring.java 70 import org.eclipse.text.edits.DeleteEdit;
71 import org.eclipse.text.edits.InsertEdit;
72 import org.eclipse.text.edits.MalformedTreeException;
73 import org.eclipse.text.edits.MultiTextEdit;
74 import org.eclipse.text.edits.ReplaceEdit;
75 import org.eclipse.text.edits.TextEdit;
345 /** Produce a list of edits to replace references to the given id with the given new id */
367 List<TextEdit> edits = new ArrayList<TextEdit>(); local
397 edits.add(new ReplaceEdit(start, end - start, referenceId));
403 return edits;
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
GraphicalEditorPart.java 152 import org.eclipse.text.edits.MalformedTreeException;
153 import org.eclipse.text.edits.MultiTextEdit;
154 import org.eclipse.text.edits.ReplaceEdit;
2487 MultiTextEdit edits = new MultiTextEdit(); local
    [all...]
  /external/chromium_org/testing/gtest/src/
gtest.cc 1167 const std::vector<EditType> edits = CalculateOptimalEdits(left, right); local
    [all...]
  /prebuilts/devtools/tools/lib/
lint-checks.jar 
  /prebuilts/gradle-plugin/com/android/tools/lint/lint-checks/22.2.0/
lint-checks-22.2.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/lint/lint-checks/22.4.0/
lint-checks-22.4.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/lint/lint-checks/22.4.2/
lint-checks-22.4.2.jar 
  /prebuilts/gradle-plugin/com/android/tools/lint/lint-checks/22.5.0/
lint-checks-22.5.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/lint/lint-checks/22.5.1/
lint-checks-22.5.1.jar 
  /prebuilts/gradle-plugin/com/android/tools/lint/lint-checks/22.5.3/
lint-checks-22.5.3.jar 
  /prebuilts/gradle-plugin/com/android/tools/lint/lint-checks/22.7.0/
lint-checks-22.7.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/lint/lint-checks/22.7.1/
lint-checks-22.7.1.jar 
  /prebuilts/gradle-plugin/com/android/tools/lint/lint-checks/22.7.3/
lint-checks-22.7.3.jar 
  /prebuilts/gradle-plugin/com/android/tools/lint/lint-checks/22.8.0/
lint-checks-22.8.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/lint/lint-checks/22.9.2/
lint-checks-22.9.2.jar 

Completed in 1930 milliseconds

1 2