Searched refs:Edit (Results 1 - 23 of 23) sorted by relevance

/external/clang/lib/
H A DMakefile13 FrontendTool Tooling Driver Format Edit Rewrite Serialization \
/external/clang/tools/driver/
H A Ddriver.cpp94 /// \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("/") &&
113 Edit
96 ApplyOneQAOverride(raw_ostream &OS, SmallVectorImpl<const char*> &Args, StringRef Edit, std::set<std::string> &SavedStrings) argument
154 OS << "### Adding argument " << Edit << " at end\\n"; local
157 OS << "### Unrecognized edit: " << Edit << "\\n"; local
[all...]
/external/chromium_org/ui/views/controls/textfield/
H A Dtextfield_model.cc20 // Edit holds state information to undo/redo editing changes. Editing operations
23 class Edit { class in namespace:views::internal
31 virtual ~Edit() {}
49 bool Merge(const Edit* edit) {
69 Edit(Type type, function in class:views::internal::Edit
90 virtual bool DoMerge(const Edit* edit) = 0;
108 void MergeReplace(const Edit* edit) {
145 DISALLOW_COPY_AND_ASSIGN(Edit);
148 class InsertEdit : public Edit {
151 : Edit(INSERT_EDI
[all...]
H A Dtextfield_model.h22 // Internal Edit class that keeps track of edits for undo/redo.
23 class Edit;
25 // The types of merge behavior implemented by Edit operations.
55 // Edit related methods.
219 friend class internal::Edit;
249 bool AddOrMergeEditHistory(internal::Edit* edit);
270 typedef std::list<internal::Edit*> EditHistory;
/external/llvm/lib/CodeGen/
H A DSplitKit.cpp335 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
[all...]
H A DInlineSpiller.cpp74 LiveRangeEdit *Edit; member in class:__anon25751::InlineSpiller
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)) {
899 Edit->markRematerialized(RM.ParentVNI);
905 unsigned NewVReg = Edit->createFrom(Original);
908 SlotIndex DefIdx = Edit
[all...]
H A DSplitKit.h200 /// SplitEditor - Edit machine code and LiveIntervals for live range
251 /// Edit - The current parent register and new intervals created.
252 LiveRangeEdit *Edit; member in class:llvm::SplitEditor
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/
H A DAndroid.mk13 lib/Edit \
/external/clang/include/clang/Edit/
H A DCommit.h13 #include "clang/Edit/FileOffset.h"
33 struct Edit { struct in class:clang::edit::Commit
54 SmallVector<Edit, 8> CachedEdits;
109 typedef SmallVectorImpl<Edit>::const_iterator edit_iterator;
/external/clang/lib/Edit/
H A DCommit.cpp10 #include "clang/Edit/Commit.h"
12 #include "clang/Edit/EditedSource.h"
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];
H A DEditedSource.cpp10 #include "clang/Edit/EditedSource.h"
13 #include "clang/Edit/Commit.h"
14 #include "clang/Edit/EditsReceiver.h"
224 const edit::Commit::Edit &edit = *I;
/external/chromium_org/media/formats/mp4/
H A Dbox_definitions.h142 struct MEDIA_EXPORT Edit : Box { struct in namespace:media::mp4
143 DECLARE_BOX_METHODS(Edit);
282 Edit edit;
H A Dbox_definitions.cc329 Edit::Edit() {} function in class:media::mp4::Edit
330 Edit::~Edit() {}
331 FourCC Edit::BoxType() const { return FOURCC_EDTS; }
333 bool Edit::Parse(BoxReader* reader) {
/external/chromium_org/tools/clang/scripts/
H A Drun_tool.py47 Edit = collections.namedtuple( variable
48 'Edit', ('edit_type', 'offset', 'length', 'replacement'))
89 edits[path].append(Edit(edit_type, int(offset), int(length), replacement))
192 edits: A dict mapping filenames to Edit instances that apply to that file.
/external/chromium_org/third_party/mesa/src/docs/
H A DMESA_ycbcr_texture.spec193 Edit table 6.16 on page 231: change the type of TEXTURE_INTERNAL_FORMAT
/external/mesa3d/docs/
H A DMESA_ycbcr_texture.spec193 Edit table 6.16 on page 231: change the type of TEXTURE_INTERNAL_FORMAT
/external/chromium_org/third_party/tcmalloc/chromium/src/windows/
H A Dport.h103 # 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/
H A Dport.h100 # error Do not know how to set up type aliases. Edit port.h for your system.
/external/chromium_org/components/omnibox/
H A Dkeyword_provider_unittest.cc112 TEST_F(KeywordProviderTest, Edit) {
/external/clang/lib/Sema/
H A DSemaExprObjC.cpp21 #include "clang/Edit/Commit.h"
22 #include "clang/Edit/Rewriters.h"
2011 const edit::Commit::Edit &Edit = *I; local
2012 switch (Edit.Kind) {
2014 Builder.AddFixItHint(FixItHint::CreateInsertion(Edit.OrigLoc,
2015 Edit.Text,
2016 Edit.BeforePrev));
2020 FixItHint::CreateInsertionFromRange(Edit.OrigLoc,
2021 Edit
[all...]
/external/libpng/projects/owatcom/
H A Dpngconfig.mak107 $# 1) Edit the 'before' rule of libpng.wpj (from the IDE) to define the
/external/chromium_org/third_party/sqlite/src/contrib/
H A Dsqlitecon.tcl49 menubutton $w.mb.edit -text Edit -menu $w.mb.edit.m
595 # Enable or disable entries in the Edit menu
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.ui.workbench_3.6.1.M20101117-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 871 milliseconds