/external/clang/lib/ |
Makefile | 13 FrontendTool Tooling Driver Format Edit ARCMigrate Rewrite \
|
/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/chromium_org/ui/views/controls/textfield/ |
textfield_views_model.h | 29 // Internal Edit class that keeps track of edits for undo/redo. 30 class Edit; 34 // The edit should not be merged with next edit. It still may 35 // be merged with an edit with MERGE_WITH_PREVIOUS. 37 // The edit can be merged with next edit when possible. 39 // Does the edit have to be merged with previous edit? 40 // This forces the merge even if the previous edit is marke [all...] |
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/llvm/lib/CodeGen/ |
SplitKit.cpp | 336 Edit(0), 343 Edit = &LRE; 358 Edit->anyRematerializable(0); 379 assert(Edit->getParent().getVNInfoAt(Idx) == ParentVNI && "Bad Parent VNI"); 380 LiveInterval *LI = Edit->get(RegIdx); 425 Edit->get(RegIdx)->addRange(LiveRange(Def, Def.getDeadSlot(), VNI)); 437 LiveInterval *LI = 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 | 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...] |
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; 224 for (edit::Commit::edit_iterator 226 const edit::Commit::Edit &edit = *I; local 227 switch (edit.Kind) { 228 case edit::Commit::Act_Insert [all...] |
/external/dropbear/debian/ |
dropbear.postinst | 31 Dropbear will not start by default. Edit this file to change this behaviour.
|
/external/chromium_org/media/mp4/ |
box_definitions.h | 138 struct MEDIA_EXPORT Edit : Box { 139 DECLARE_BOX_METHODS(Edit); 256 Edit edit; member in struct:media::mp4::Track
|
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...] |
/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/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/chromium/chrome/browser/autocomplete/ |
keyword_provider_unittest.cc | 84 TEST_F(KeywordProviderTest, Edit) {
|
/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/chrome/browser/autocomplete/ |
keyword_provider_unittest.cc | 96 TEST_F(KeywordProviderTest, Edit) {
|
/external/chromium_org/tools/metrics/actions/ |
extract_actions.py | 381 actions.add('FileBrowser.PhotoEditor.Edit')
|
/external/clang/lib/Sema/ |
SemaExprObjC.cpp | 21 #include "clang/Edit/Commit.h" 22 #include "clang/Edit/Rewriters.h" [all...] |