HomeSort by relevance Sort by last modified time
    Searched refs:Offs (Results 1 - 15 of 15) sorted by null

  /external/clang/include/clang/Edit/
FileOffset.h 21 unsigned Offs;
23 FileOffset() : Offs(0) { }
24 FileOffset(FileID fid, unsigned offs) : FID(fid), Offs(offs) { }
29 unsigned getOffset() const { return Offs; }
33 NewOffs.Offs += offset;
38 return LHS.FID == RHS.FID && LHS.Offs == RHS.Offs;
46 return LHS.Offs < RHS.Offs
    [all...]
EditedSource.h 58 bool canInsertInOffset(SourceLocation OrigLoc, FileOffset Offs);
73 bool commitInsert(SourceLocation OrigLoc, FileOffset Offs, StringRef text,
75 bool commitInsertFromRange(SourceLocation OrigLoc, FileOffset Offs,
82 FileEditsTy::iterator getActionForOffset(FileOffset Offs);
Commit.h 112 FileOffset Offs, StringRef text, bool beforePreviousInsertions);
113 void addInsertFromRange(SourceLocation OrigLoc, FileOffset Offs,
116 void addRemove(SourceLocation OrigLoc, FileOffset Offs, unsigned Len);
121 bool canInsertInOffset(SourceLocation OrigLoc, FileOffset Offs);
122 bool canRemoveRange(CharSourceRange range, FileOffset &Offs, unsigned &Len);
124 FileOffset &Offs, unsigned &Len);
  /external/clang/lib/Edit/
Commit.cpp 48 FileOffset Offs;
49 if ((!afterToken && !canInsert(loc, Offs)) ||
50 ( afterToken && !canInsertAfterToken(loc, Offs, loc))) {
55 addInsert(loc, Offs, text, beforePreviousInsertions);
69 FileOffset Offs;
70 if ((!afterToken && !canInsert(loc, Offs)) ||
71 ( afterToken && !canInsertAfterToken(loc, Offs, loc))) {
82 addInsertFromRange(loc, Offs, RangeOffs, RangeLen, beforePreviousInsertions);
87 FileOffset Offs;
89 if (!canRemoveRange(range, Offs, Len))
    [all...]
EditedSource.cpp 31 bool EditedSource::canInsertInOffset(SourceLocation OrigLoc, FileOffset Offs) {
32 FileEditsTy::iterator FA = getActionForOffset(Offs);
34 if (FA->first != Offs)
54 FileOffset Offs, StringRef text,
56 if (!canInsertInOffset(OrigLoc, Offs))
69 FileEdit &FA = FileEdits[Offs];
86 FileOffset Offs,
140 return commitInsert(OrigLoc, Offs, StrVec.str(), beforePreviousInsertions);
268 SourceLocation Loc, FileOffset offs,
276 StringRef buffer = SM.getBufferData(offs.getFID(), &Invalid)
346 FileOffset offs = I->first; local
    [all...]
  /external/clang/include/clang/Basic/
SourceManagerInternals.h 49 static LineEntry get(unsigned Offs, unsigned Line, int Filename,
53 E.FileOffset = Offs;
SourceManager.h     [all...]
  /external/libvpx/libvpx/vp8/common/ppc/
loopfilter_filters_altivec.asm 840 .macro hread_uv Dest, U, V, Offs, VMask
841 lvx \U, \Offs, r3
842 lvx \V, \Offs, r4
846 .macro hwrite_uv New, U, V, Offs, Umask, Vmask
849 stvx \U, \Offs, r3 ;# Write to frame buffer
850 stvx \V, \Offs, r4
1139 .macro RLV Offs
1140 stw r0, (\Offs*4)(r5)
1144 .macro WLV Offs
1145 lwz r0, (\Offs*4)(r5
    [all...]
  /external/clang/lib/Basic/
SourceManager.cpp     [all...]
  /external/clang/lib/CodeGen/
CGCall.cpp     [all...]
  /external/clang/lib/Frontend/
ASTUnit.cpp     [all...]
  /external/llvm/include/llvm/CodeGen/
SelectionDAG.h 407 unsigned Align = 0, int Offs = 0, bool isT=false,
415 unsigned Align = 0, int Offs = 0, bool isT=false,
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineCompares.cpp 422 Value *Offs = ConstantInt::get(Idx->getType(), -FirstTrueElement);
423 Idx = Builder->CreateAdd(Idx, Offs);
436 Value *Offs = ConstantInt::get(Idx->getType(), -FirstFalseElement);
437 Idx = Builder->CreateAdd(Idx, Offs);
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
TargetLowering.cpp     [all...]
SelectionDAGBuilder.cpp     [all...]

Completed in 388 milliseconds