Home
last modified time | relevance | path

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

/external/clang/lib/StaticAnalyzer/Core/
DIssueHash.cpp150 size_t NextStart = 0; in NormalizeLine() local
152 while (!Lexer.LexFromRawLexer(Token) && NextStart < 2) { in NormalizeLine()
153 if (Token.isAtStartOfLine() && NextStart++ > 0) in NormalizeLine()
/external/clang/lib/Lex/
DLiteralSupport.cpp1583 const char *NextStart = resyncUTF8(ErrorPtr, Fragment.end()); in CopyStringFragment() local
1584 StringRef NextFragment(NextStart, Fragment.end()-NextStart); in CopyStringFragment()
1593 NextStart = resyncUTF8(ErrorPtr, Fragment.end()); in CopyStringFragment()
1595 ErrorPtr, NextStart); in CopyStringFragment()
1596 NextFragment = StringRef(NextStart, Fragment.end()-NextStart); in CopyStringFragment()
/external/clang/lib/Basic/
DSourceManager.cpp2148 llvm::Optional<unsigned> NextStart) { in dump() argument
2151 if (NextStart) in dump()
2152 out << *NextStart << ">\n"; in dump()
2189 llvm::Optional<unsigned> NextStart; in dump() local
2193 DumpSLocEntry(ID, LoadedSLocEntryTable[Index], NextStart); in dump()
2194 NextStart = LoadedSLocEntryTable[Index].getOffset(); in dump()
2196 NextStart = None; in dump()
/external/v8/src/compiler/
Dregister-allocator.cc556 return use_pos->pos() > pos.NextStart().End(); in CanBeSpilled()
1880 .NextStart(); in AddInitialIntervals()
1981 range->AddUseInterval(position, position.NextStart(), allocation_zone()); in Define()
1982 range->AddUsePosition(NewUsePosition(position.NextStart())); in Define()
2398 last_pos = last_pos.NextStart().End(); in IntervalPredecessorsCoveredByRange()
2457 next_pos = next_pos.NextStart(); in SplitAndSpillRangesDefinedByMemoryOperand()
2464 } else if (pos->pos() > range->Start().NextStart()) { in SplitAndSpillRangesDefinedByMemoryOperand()
3196 if (next_pos.IsGapPosition()) next_pos = next_pos.NextStart(); in TryReuseSpillForPhi()
3207 } else if (pos->pos() > range->Start().NextStart()) { in TryReuseSpillForPhi()
Dregister-allocator.h92 LifetimePosition NextStart() const { in NextStart() function