/external/pdfium/core/include/fpdfdoc/ |
fpdf_vt.h | 108 EndPos.Default(); 113 EndPos = end; 123 EndPos = end; 127 FX_BOOL IsExist() const { return BeginPos != EndPos; } 130 return wr.BeginPos != BeginPos || wr.EndPos != EndPos; 134 if (BeginPos.WordCmp(EndPos) > 0) { 135 CPVT_WordPlace place = EndPos; 136 EndPos = BeginPos; 143 CPVT_WordPlace EndPos; [all...] |
/external/clang/lib/Lex/ |
PPLexerChange.cpp | 276 const char *EndPos = CurLexer->BufferEnd; 277 if (EndPos != CurLexer->BufferStart && 278 (EndPos[-1] == '\n' || EndPos[-1] == '\r')) { 279 --EndPos; 282 if (EndPos != CurLexer->BufferStart && 283 (EndPos[-1] == '\n' || EndPos[-1] == '\r') && 284 EndPos[-1] != EndPos[0] [all...] |
/external/clang/lib/Frontend/Rewrite/ |
RewriteMacros.cpp | 171 unsigned EndPos; 174 EndPos = RawOffs+RawTok.getLength(); 188 RB.InsertTextBefore(EndPos, "*/");
|
/build/soong/androidmk/parser/ |
makething.go | 15 EndPos() scanner.Position 51 endPos scanner.Position 58 func (m makeThing) EndPos() scanner.Position { 59 return m.endPos
|
/external/pdfium/fpdfsdk/src/fxedit/ |
fxet_edit.cpp | 563 m_pEdit->SetSel(m_wrSel.BeginPos, m_wrSel.EndPos); 574 m_pEdit->SetSel(m_wrSel.BeginPos, m_wrSel.EndPos); 600 m_pEdit->SetSel(m_wrSel.BeginPos, m_wrSel.EndPos); 616 m_pEdit->PaintInsertText(m_wrSel.BeginPos, m_wrSel.EndPos); 617 m_pEdit->SetSel(m_wrSel.BeginPos, m_wrSel.EndPos); 686 m_pEdit->SetSel(m_wrPlace.BeginPos, m_wrPlace.EndPos); 698 m_pEdit->SetSel(m_wrPlace.BeginPos, m_wrPlace.EndPos); 725 m_pEdit->SetSel(m_wrPlace.BeginPos, m_wrPlace.EndPos); 737 m_pEdit->SetSel(m_wrPlace.BeginPos, m_wrPlace.EndPos); 932 SetCaret(m_SelState.EndPos); [all...] |
fxet_ap.cpp | 83 if (pRange && place.WordCmp(pRange->EndPos) > 0) 190 if (pRange && place.WordCmp(pRange->EndPos) > 0)
|
fxet_pageobjs.cpp | 120 if (pRange && place.WordCmp(pRange->EndPos) > 0) 198 if (pRange && place.WordCmp(pRange->EndPos) > 0) 203 place.WordCmp(wrSelect.EndPos) <= 0; 323 if (pRange && place.WordCmp(pRange->EndPos) > 0) 334 place.WordCmp(wrSelect.EndPos) <= 0; 497 if (pRange && place.WordCmp(pRange->EndPos) > 0) 560 if (pRange && place.WordCmp(pRange->EndPos) > 0) 643 if (pRange && place.WordCmp(pRange->EndPos) > 0)
|
/external/pdfium/fpdfsdk/src/pdfwindow/ |
PWL_Edit.cpp | 308 CPVT_WordRange wrSelAfter(wrSelect.EndPos, wrWhole.EndPos); 543 ptPopup = GetWordRightBottomPoint(wrLatin.EndPos); 642 m_pEdit->WordPlaceToWordIndex(wrLatin.EndPos)); 647 m_pEdit->WordPlaceToWordIndex(wrLatin.EndPos)); 652 m_pEdit->WordPlaceToWordIndex(wrLatin.EndPos)); 657 m_pEdit->WordPlaceToWordIndex(wrLatin.EndPos)); 662 m_pEdit->WordPlaceToWordIndex(wrLatin.EndPos)); 1090 if (wr1.EndPos.WordCmp(wr2.EndPos) < 0) [all...] |
PWL_Utils.cpp | 116 if (wr2.EndPos.WordCmp(wr1.BeginPos) < 0 || 117 wr2.BeginPos.WordCmp(wr1.EndPos) > 0) 119 if (wr1.EndPos.WordCmp(wr2.BeginPos) < 0 || 120 wr1.BeginPos.WordCmp(wr2.EndPos) > 0) 129 if (wr1.EndPos.WordCmp(wr2.EndPos) < 0) { 130 wrRet.EndPos = wr1.EndPos; 132 wrRet.EndPos = wr2.EndPos; [all...] |
/external/pdfium/fpdfsdk/include/fxedit/ |
fxet_edit.h | 178 Set(range.BeginPos, range.EndPos); 182 return CPVT_WordRange(BeginPos, EndPos); 187 EndPos.Default(); 192 EndPos = end; 197 void SetEndPos(const CPVT_WordPlace& end) { EndPos = end; } 199 FX_BOOL IsExist() const { return BeginPos != EndPos; } 202 return wr.BeginPos != BeginPos || wr.EndPos != EndPos; 205 CPVT_WordPlace BeginPos, EndPos;
|
/build/blueprint/parser/ |
modify.go | 36 Pos: value.EndPos,
|
parser.go | 497 value.EndPos = p.scanner.Position 513 value.EndPos = p.scanner.Position 643 EndPos scanner.Position 684 s += fmt.Sprintf("@%d:%s-%d:%s[%s]", p.Pos.Offset, p.Pos, p.EndPos.Offset, p.EndPos, 691 s += fmt.Sprintf("@%d:%s-%d:%s{%s}", p.Pos.Offset, p.Pos, p.EndPos.Offset, p.EndPos,
|
sort.go | 47 nextPos := value.EndPos
|
parser_test.go | 120 EndPos: mkpos(63, 4, 19), 176 EndPos: mkpos(58, 6, 4),
|
printer.go | 122 p.printList(value.ListValue, value.Pos, value.EndPos) 124 p.printMap(value.MapValue, value.Pos, value.EndPos) 131 func (p *printer) printList(list []Value, pos, endPos scanner.Position) { 134 if len(list) > 1 || pos.Line != endPos.Line { 142 p.unindent(endPos) 148 p.printToken("]", endPos) 151 func (p *printer) printMap(list []*Property, pos, endPos scanner.Position) { 154 if len(list) > 0 || pos.Line != endPos.Line { 162 p.unindent(endPos) 164 p.printToken("}", endPos) [all...] |
/external/pdfium/core/src/fpdfdoc/ |
doc_vt.cpp | 235 int32_t nRight = range.EndPos.nWordIndex + 1; 288 if (PlaceRange.EndPos.WordCmp(SecEndPos) <= 0) { 290 PlaceRange.EndPos.nWordIndex); 294 } else if (PlaceRange.EndPos.WordCmp(SecEndPos) <= 0) { 295 ClearLeftWords(PlaceRange.EndPos.nWordIndex); 950 if (CSection* pSection = m_SectionArray.GetAt(PlaceRange.EndPos.nSecIndex)) { 951 bLastSecPos = (PlaceRange.EndPos == pSection->GetEndWordPlace()); [all...] |
/external/llvm/lib/IR/ |
GCOV.cpp | 198 uint32_t EndPos = Buff.getCursor() + LineTableLength * 4; 215 if (Buff.getCursor() != (EndPos - sizeof(uint32_t))) { 226 while (Buff.getCursor() < (EndPos - 2 * sizeof(uint32_t))) {
|
/prebuilts/go/darwin-x86/src/go/ast/ |
import.go | 161 s.EndPos = pos[i].End
|
ast.go | 833 EndPos token.Pos // end of spec (overrides Path.Pos if nonzero) 868 if s.EndPos != 0 { 869 return s.EndPos
|
/prebuilts/go/linux-x86/src/go/ast/ |
import.go | 161 s.EndPos = pos[i].End
|
ast.go | 833 EndPos token.Pos // end of spec (overrides Path.Pos if nonzero) 868 if s.EndPos != 0 { 869 return s.EndPos
|
/prebuilts/go/darwin-x86/src/cmd/fix/ |
fix.go | 636 newImport.EndPos = prev.Pos() 678 gen.Specs[j-1].(*ast.ImportSpec).EndPos = impspec.End() 703 imp.EndPos = imp.End()
|
/prebuilts/go/linux-x86/src/cmd/fix/ |
fix.go | 636 newImport.EndPos = prev.Pos() 678 gen.Specs[j-1].(*ast.ImportSpec).EndPos = impspec.End() 703 imp.EndPos = imp.End()
|
/external/llvm/utils/TableGen/ |
AsmMatcherEmitter.cpp | [all...] |
/build/soong/androidmk/cmd/androidmk/ |
androidmk.go | 49 func (f *bpFile) setPos(pos, endPos scanner.Position) { 58 f.prevLine = endPos.Line 99 file.setPos(t.Pos(), t.EndPos())
|