HomeSort by relevance Sort by last modified time
    Searched defs:Edit (Results 1 - 11 of 11) sorted by null

  /external/chromium_org/tools/clang/scripts/
run_tool.py 46 Edit = collections.namedtuple(
47 'Edit', ('edit_type', 'offset', 'length', 'replacement'))
87 edits[path].append(Edit(edit_type, int(offset), int(length), replacement))
89 print 'Unable to parse edit: %s' % line
190 edits: A dict mapping filenames to Edit instances that apply to that file.
199 # subsequent edits don't need to have their offsets updated with each edit
205 for edit in reversed(v):
206 if edit == last_edit:
208 last_edit = edit
209 contents[edit.offset:edit.offset + edit.length] = edit.replacemen
    [all...]
  /external/clang/include/clang/Edit/
Commit.h 13 #include "clang/Edit/FileOffset.h"
22 namespace edit { namespace in namespace:clang
33 struct Edit {
54 SmallVector<Edit, 8> CachedEdits;
109 typedef SmallVectorImpl<Edit>::const_iterator edit_iterator;
  /external/chromium_org/ui/views/controls/textfield/
textfield_views_model.cc 27 // An edit object holds enough information/state to undo/redo the
30 // mark an edit as an independent edit and it shouldn't be merged.
33 class Edit {
41 virtual ~Edit() {
44 // Revert the change made by this edit in |model|.
51 // Apply the change of this edit to the |model|.
58 // Try to merge the |edit| into this edit. Returns true if merge was
59 // successful, or false otherwise. Merged edit will be deleted afte
713 Edit* edit = new DeleteEdit(mergeable, text, old_text_start, backward); local
738 Edit* edit = new ReplaceEdit(merge_type, local
754 Edit* edit = new InsertEdit(mergeable, text, GetCursorPosition()); local
    [all...]
  /external/clang/tools/driver/
driver.cpp 90 /// \param OS - The stream to write edit information to.
92 /// \param Edit - The override command to perform.
96 StringRef Edit,
100 if (Edit[0] == '^') {
102 SaveStringInSet(SavedStrings, Edit.substr(1));
105 } else if (Edit[0] == '+') {
107 SaveStringInSet(SavedStrings, Edit.substr(1));
110 } else if (Edit[0] == 's' && Edit[1] == '/' && Edit.endswith("/") &
    [all...]
  /external/llvm/lib/CodeGen/
SplitKit.h 200 /// SplitEditor - Edit machine code and LiveIntervals for live range
251 /// Edit - The current parent register and new intervals created.
252 LiveRangeEdit *Edit;
254 /// Index into Edit of the currently open interval.
269 /// Edit.get(RegAssign.lookup(Idx)) is the register that should be live at
279 /// 1. No entry - the value is not mapped to Edit.get(RegIdx).
281 /// Edit.get(RegIdx). Each value is represented by a minimal live range at
344 /// rewriteAssigned - Rewrite all uses of Edit.getReg() to assigned registers.
417 /// @param LRMap When not null, this vector will map each live range in Edit
InlineSpiller.cpp 72 LiveRangeEdit *Edit;
226 /// Edit->getReg().
228 unsigned Reg = Edit->getReg();
271 unsigned Reg = Edit->getReg();
636 if (Edit->getReg() == Original)
660 if (DefMI && Edit->checkRematerializable(VNI, DefMI, AA)) {
861 if (!Edit->canRematerializeAt(RM, UseIdx, false)) {
882 Edit->markRematerialized(RM.ParentVNI);
888 LiveInterval &NewLI = Edit->createFrom(Original);
892 SlotIndex DefIdx = Edit->rematerializeAt(*MI->getParent(), MI, NewLI.reg, RM
    [all...]
  /external/chromium_org/media/mp4/
box_definitions.cc 272 for (std::vector<EditListEntry>::iterator edit = edits.begin();
273 edit != edits.end(); ++edit) {
275 RCHECK(reader->Read8(&edit->segment_duration) &&
276 reader->Read8s(&edit->media_time));
278 RCHECK(reader->Read4Into8(&edit->segment_duration) &&
279 reader->Read4sInto8s(&edit->media_time));
281 RCHECK(reader->Read2s(&edit->media_rate_integer) &&
282 reader->Read2s(&edit->media_rate_fraction));
287 Edit::Edit() {
    [all...]
box_definitions.h 138 struct MEDIA_EXPORT Edit : Box {
139 DECLARE_BOX_METHODS(Edit);
256 Edit edit; member in struct:media::mp4::Track
  /external/clang/lib/Sema/
SemaExprObjC.cpp 21 #include "clang/Edit/Commit.h"
22 #include "clang/Edit/Rewriters.h"
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.ui.workbench_3.6.1.M20101117-0800.jar 
  /prebuilts/tools/common/eclipse/
org.eclipse.ui.workbench_3.6.2.M20110210-1200.jar 

Completed in 1010 milliseconds