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

1 2

  /external/clang/lib/
Makefile 13 FrontendTool Tooling Driver Format Edit Rewrite Serialization \
  /external/clang/tools/driver/
driver.cpp 92 /// \param OS - The stream to write edit information to.
94 /// \param Edit - The override command to perform.
98 StringRef Edit,
102 if (Edit[0] == '^') {
104 SaveStringInSet(SavedStrings, Edit.substr(1));
107 } else if (Edit[0] == '+') {
109 SaveStringInSet(SavedStrings, Edit.substr(1));
112 } else if (Edit[0] == 's' && Edit[1] == '/' && Edit.endswith("/") &
    [all...]
  /external/chromium_org/ui/views/controls/textfield/
textfield_model.cc 20 // Edit holds state information to undo/redo editing changes. Editing operations
22 // Commit() marks an edit as an independent operation that shouldn't be merged.
23 class Edit {
31 virtual ~Edit() {}
33 // Revert the change made by this edit in |model|.
40 // Apply the change of this edit to the |model|.
47 // Try to merge the |edit| into this edit and returns true on success. The
48 // merged edit will be deleted after redo and should not be reused.
49 bool Merge(const Edit* edit)
684 Edit* edit = new DeleteEdit(mergeable, old_text, old_text_start, backward); local
710 Edit* edit = new ReplaceEdit(merge_type, local
726 Edit* edit = new InsertEdit(mergeable, new_text, GetCursorPosition()); local
    [all...]
textfield_model.h 22 // Internal Edit class that keeps track of edits for undo/redo.
23 class Edit;
25 // The types of merge behavior implemented by Edit operations.
27 // The edit should not usually be merged with next edit.
29 // The edit should be merged with next edit when possible.
31 // The edit should be merged with the prior edit, even if marked DO_NOT_MERGE.
55 // Edit related methods
    [all...]
  /external/llvm/lib/CodeGen/
SplitKit.cpp 335 Edit(nullptr),
342 Edit = &LRE;
357 Edit->anyRematerializable(nullptr);
378 assert(Edit->getParent().getVNInfoAt(Idx) == ParentVNI && "Bad Parent VNI");
379 LiveInterval *LI = &LIS.getInterval(Edit->get(RegIdx));
424 LiveInterval *LI = &LIS.getInterval(Edit->get(RegIdx));
437 LiveInterval *LI = &LIS.getInterval(Edit->get(RegIdx));
445 if (Edit->canRematerializeAt(RM, UseIdx, true)) {
446 Def = Edit->rematerializeAt(MBB, I, LI->reg, RM, TRI, Late);
451 .addReg(Edit->getReg())
    [all...]
InlineSpiller.cpp 74 LiveRangeEdit *Edit;
226 /// Edit->getReg().
228 unsigned Reg = Edit->getReg();
272 unsigned Reg = Edit->getReg();
651 if (Edit->getReg() == Original)
675 if (DefMI && Edit->checkRematerializable(VNI, DefMI, AA)) {
878 if (!Edit->canRematerializeAt(RM, UseIdx, false)) {
    [all...]
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
  /external/clang/
Android.mk 13 lib/Edit \
  /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/clang/lib/Edit/
Commit.cpp 10 #include "clang/Edit/Commit.h"
12 #include "clang/Edit/EditedSource.h"
17 using namespace edit;
19 SourceLocation Commit::Edit::getFileLocation(SourceManager &SM) const {
26 CharSourceRange Commit::Edit::getFileRange(SourceManager &SM) const {
31 CharSourceRange Commit::Edit::getInsertFromRange(SourceManager &SM) const {
182 Edit data;
197 Edit data;
212 Edit data;
282 Edit &act = CachedEdits[i]
    [all...]
EditedSource.cpp 10 #include "clang/Edit/EditedSource.h"
13 #include "clang/Edit/Commit.h"
14 #include "clang/Edit/EditsReceiver.h"
20 using namespace edit;
222 for (edit::Commit::edit_iterator
224 const edit::Commit::Edit &edit = *I; local
225 switch (edit.Kind) {
226 case edit::Commit::Act_Insert
    [all...]
  /external/chromium_org/media/formats/mp4/
box_definitions.h 142 struct MEDIA_EXPORT Edit : Box {
143 DECLARE_BOX_METHODS(Edit);
282 Edit edit; member in struct:media::mp4::Track
box_definitions.cc 314 for (std::vector<EditListEntry>::iterator edit = edits.begin();
315 edit != edits.end(); ++edit) {
317 RCHECK(reader->Read8(&edit->segment_duration) &&
318 reader->Read8s(&edit->media_time));
320 RCHECK(reader->Read4Into8(&edit->segment_duration) &&
321 reader->Read4sInto8s(&edit->media_time));
323 RCHECK(reader->Read2s(&edit->media_rate_integer) &&
324 reader->Read2s(&edit->media_rate_fraction));
329 Edit::Edit() {
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/examples/api/bookmarks/basic/
popup.js 47 $('<span>[<a id="editlink" href="#">Edit</a> <a id="deletelink" ' +
49 var edit = bookmarkNode.children ? $('<table><tr><td>Name</td><td>' +
52 // Show add and edit links when hover over.
79 $('#adddialog').empty().append(edit).dialog({autoOpen: false,
95 edit.val(anchor.text());
96 $('#editdialog').empty().append(edit).dialog({autoOpen: false,
97 closeOnEscape: true, title: 'Edit Title', modal: true,
101 title: edit.val()
103 anchor.text(edit.val());
  /sdk/eclipse/plugins/com.android.ide.eclipse.ddms/src/com/android/ide/eclipse/ddms/i18n/
messages.properties 84 LogCatView_Edit_Filter=Edit Filter
85 LogCatView_Edit_Filter_Tooltip=Edit Filter
  /external/chromium_org/chrome/browser/resources/options/
autofill_options.js 116 * 'Edit address' overlay and modifying the overlay title.
128 * 'Edit credit card' overlay and modifying the overlay title.
169 * @param {string} guid The GUID of the address to edit.
180 * @param {string} guid The GUID of the credit card to edit.
188 * Shows the 'Edit address' overlay, using the data in |address| to fill the
201 * Shows the 'Edit credit card' overlay, using the data in |credit_card| to
  /external/chromium_org/tools/clang/scripts/
run_tool.py 47 Edit = collections.namedtuple(
48 'Edit', ('edit_type', 'offset', 'length', 'replacement'))
89 edits[path].append(Edit(edit_type, int(offset), int(length), replacement))
91 print 'Unable to parse edit: %s' % line
192 edits: A dict mapping filenames to Edit instances that apply to that file.
201 # subsequent edits don't need to have their offsets updated with each edit
207 for edit in reversed(v):
208 if edit == last_edit:
210 last_edit = edit
211 contents[edit.offset:edit.offset + edit.length] = edit.replacemen
    [all...]
  /external/chromium_org/third_party/mesa/src/docs/
MESA_ycbcr_texture.spec 193 Edit table 6.16 on page 231: change the type of TEXTURE_INTERNAL_FORMAT
  /external/mesa3d/docs/
MESA_ycbcr_texture.spec 193 Edit table 6.16 on page 231: change the type of TEXTURE_INTERNAL_FORMAT
  /external/chromium_org/third_party/tcmalloc/chromium/src/windows/
port.h 103 # error Do not know how to set up type aliases. Edit port.h for your system.
  /external/chromium_org/third_party/tcmalloc/vendor/src/windows/
port.h 100 # error Do not know how to set up type aliases. Edit port.h for your system.
  /external/chromium_org/components/omnibox/
keyword_provider_unittest.cc 112 TEST_F(KeywordProviderTest, Edit) {
  /external/clang/lib/Sema/
SemaExprObjC.cpp 21 #include "clang/Edit/Commit.h"
22 #include "clang/Edit/Rewriters.h"
    [all...]
  /external/libpng/projects/owatcom/
pngconfig.mak 56 instructions consult and edit projects/openwatcom/pngconfig.dfa
107 $# 1) Edit the 'before' rule of libpng.wpj (from the IDE) to define the
  /external/chromium_org/third_party/sqlite/src/contrib/
sqlitecon.tcl 17 # In addition, a new SQL function named "edit()" is created. This function
22 # the result of the edit() function. This allows text fields of SQL tables
25 # UPDATE table1 SET dscr = edit(dscr) WHERE rowid=15;
49 menubutton $w.mb.edit -text Edit -menu $w.mb.edit.m
50 pack $w.mb.file $w.mb.edit -side left -padx 8 -pady 1
53 sqlitecon::create_child $w $prompt $w.mb.edit.m
55 $db function edit ::sqlitecon::_edit
59 # window. It also creates an edit menu named "$editmenu" if $editmenu!=""
    [all...]

Completed in 671 milliseconds

1 2