Home
last modified time | relevance | path

Searched refs:NextStart (Results 1 – 5 of 5) sorted by relevance

/external/clang/lib/StaticAnalyzer/Core/
DIssueHash.cpp153 size_t NextStart = 0; in NormalizeLine() local
155 while (!Lexer.LexFromRawLexer(Token) && NextStart < 2) { in NormalizeLine()
156 if (Token.isAtStartOfLine() && NextStart++ > 0) in NormalizeLine()
/external/clang/lib/Lex/
DLiteralSupport.cpp1597 const char *NextStart = resyncUTF8(ErrorPtr, Fragment.end()); in CopyStringFragment() local
1598 StringRef NextFragment(NextStart, Fragment.end()-NextStart); in CopyStringFragment()
1607 NextStart = resyncUTF8(ErrorPtr, Fragment.end()); in CopyStringFragment()
1609 ErrorPtr, NextStart); in CopyStringFragment()
1610 NextFragment = StringRef(NextStart, Fragment.end()-NextStart); in CopyStringFragment()
/external/clang/lib/Basic/
DSourceManager.cpp2163 llvm::Optional<unsigned> NextStart) { in dump() argument
2166 if (NextStart) in dump()
2167 out << *NextStart << ">\n"; in dump()
2204 llvm::Optional<unsigned> NextStart; in dump() local
2208 DumpSLocEntry(ID, LoadedSLocEntryTable[Index], NextStart); in dump()
2209 NextStart = LoadedSLocEntryTable[Index].getOffset(); in dump()
2211 NextStart = None; in dump()
/external/v8/src/compiler/
Dregister-allocator.cc547 return use_pos->pos() > pos.NextStart().End(); in CanBeSpilled()
1887 .NextStart(); in AddInitialIntervals()
1998 range->AddUseInterval(position, position.NextStart(), allocation_zone()); in Define()
1999 range->AddUsePosition(NewUsePosition(position.NextStart())); in Define()
2513 last_pos = last_pos.NextStart().End(); in IntervalPredecessorsCoveredByRange()
2576 next_pos = next_pos.NextStart(); in SplitAndSpillRangesDefinedByMemoryOperand()
2589 } else if (pos->pos() > range->Start().NextStart()) { in SplitAndSpillRangesDefinedByMemoryOperand()
3439 if (next_pos.IsGapPosition()) next_pos = next_pos.NextStart(); in TryReuseSpillForPhi()
3450 } else if (pos->pos() > range->Start().NextStart()) { in TryReuseSpillForPhi()
Dregister-allocator.h94 LifetimePosition NextStart() const { in NextStart() function