Searched refs:End (Results 176 - 200 of 271) sorted by relevance

1234567891011

/external/clang/lib/AST/
H A DStmtPrinter.cpp125 DeclStmt::decl_iterator Begin = S->decl_begin(), End = S->decl_end(); local
127 for ( ; Begin != End; ++Begin)
H A DExpr.cpp1741 SourceLocation Beg = LBraceLoc, End = RBraceLoc;
1753 if (End.isInvalid()) {
1759 End = S->getSourceRange().getEnd();
1764 return SourceRange(Beg, End);
3532 Expr *End = IndexExprs[IndexIdx + 1]; local
3534 End->isTypeDependent() || End->isValueDependent()) {
3538 End->isInstantiationDependent()) {
3544 End->containsUnexpandedParameterPack())
H A DASTContext.cpp5544 UnresolvedSetIterator End) const {
5545 unsigned size = End - Begin;
5553 for (UnresolvedSetIterator I = Begin; I != End; ++I) {
7003 char *End; local
7004 unsigned NumElements = strtoul(Str, &End, 10);
7005 assert(End != Str && "Missing vector size");
7006 Str = End;
7018 char *End; local
7020 unsigned NumElements = strtoul(Str, &End, 10);
7021 assert(End !
7079 char *End; local
[all...]
H A DDeclPrinter.cpp138 Decl** End = Begin + NumDecls; local
151 for ( ; Begin != End; ++Begin) {
/external/llvm/lib/CodeGen/
H A DCriticalAntiDepBreaker.cpp414 MachineBasicBlock::iterator End,
502 for (MachineBasicBlock::iterator I = End, E = Begin;
412 BreakAntiDependencies(const std::vector<SUnit>& SUnits, MachineBasicBlock::iterator Begin, MachineBasicBlock::iterator End, unsigned InsertPosIndex, DbgValueVector &DbgValues) argument
H A DAggressiveAntiDepBreaker.cpp717 MachineBasicBlock::iterator End,
774 for (MachineBasicBlock::iterator I = End, E = Begin;
/external/clang/lib/Lex/
H A DPreprocessingRecord.cpp50 /// \brief Returns a pair of [Begin, End) iterators of preprocessed entities
127 /// \brief Returns a pair of [Begin, End) iterators of preprocessed entities
167 unsigned End = findEndLocalPreprocessedEntity(Range.getEnd()); local
168 return std::make_pair(Begin, End);
/external/llvm/lib/MC/
H A DMCWin64EH.cpp138 streamer.EmitValue(MCSymbolRefExpr::Create(info->End, context), 4);
277 } // End of namespace llvm
/external/qemu/distrib/sdl-1.2.15/src/video/ataricommon/
H A DSDL_ikbdinterrupt.S257 | End of interrupt
/external/v8/src/
H A Dd8.h159 void End(int offset) { end_offset_ = offset; } function in class:v8::SourceGroup
H A Dlithium-allocator.h341 LifetimePosition End() const { function in class:v8::internal::LiveRange
/external/webp/src/enc/
H A Dvp8l.c209 goto End;
233 End:
325 goto End;
364 End:
/external/llvm/include/llvm/Analysis/
H A DDominators.h710 const BasicBlock *End; member in class:llvm::BasicBlockEdge
713 Start(Start_), End(End_) { }
718 return End;
919 } // End llvm namespace
/external/llvm/lib/CodeGen/SelectionDAG/
H A DScheduleDAGSDNodes.cpp146 MachineSDNode::mmo_iterator Begin = 0, End = 0; local
152 End = MN->memoperands_end();
159 MN->setMemRefs(Begin, End);
/external/clang/lib/Frontend/
H A DInitPreprocessor.cpp41 StringRef::size_type End = MacroBody.find_first_of("\n\r"); local
42 if (End != StringRef::npos)
45 Builder.defineMacro(MacroName, MacroBody.substr(0, End));
/external/chromium/net/disk_cache/
H A Dentry_impl.cc126 int End() { return offset_ + Size(); } function in class:disk_cache::EntryImpl::UserBuffer
1256 DCHECK_LT(new_size, user_buffers_[index]->End());
1334 if ((user_buffers_[index]->End() && offset > user_buffers_[index]->End()) ||
1356 if (offset > user_buffers_[index]->End() ||
/external/llvm/lib/TableGen/
H A DTGParser.cpp573 int64_t End; local
587 End = Lex.getCurIntVal();
590 End = -Lex.getCurIntVal();
593 if (End < 0)
598 if (Start < End) {
599 for (; Start <= End; ++Start)
602 for (; Start >= End; --Start)
/external/clang/include/clang/AST/
H A DDeclTemplate.h1319 SourceLocation End = getLocation();
1321 End = getDefaultArgument().getSourceRange().getEnd();
1322 return SourceRange(getTemplateParameters()->getTemplateLoc(), End); local
/external/llvm/lib/Support/
H A DCommandLine.cpp1021 char *End; local
1022 Value = strtod(ArgStart, &End);
1023 if (*End != 0)
1291 } // End anonymous namespace
1393 } // End anonymous namespace
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DExprEngine.h149 void ViewGraph(ExplodedNode** Beg, ExplodedNode** End);
/external/freetype/src/smooth/
H A Dftgrays.c737 goto End;
744 goto End;
786 goto End;
853 End:
2066 /* End: */
/external/openfst/src/include/fst/
H A Dutil.h359 // found, otherwise it equals 'End()'.
397 const_iterator End() const { return set_.end(); } function in class:fst::CompactSet
/external/clang/include/clang/Basic/
H A DSourceManager.h339 /// Start and End specify the expansion range (where the macro is
344 SourceLocation Start, SourceLocation End) {
348 X.ExpansionLocEnd = End.getRawEncoding();
343 create(SourceLocation SpellingLoc, SourceLocation Start, SourceLocation End) argument
/external/harfbuzz/src/
H A Dharfbuzz-dump.c210 Coverage->cf.cf2.RangeRecord[i].End, i);
219 DUMP_FGLYPH (ClassRangeRecord, End);
/external/llvm/lib/Target/Hexagon/
H A DHexagonMachineScheduler.cpp49 /// If this iterator is a debug value, increment until reaching the End or a
52 nextIfDebug(MachineBasicBlock::iterator I, MachineBasicBlock::iterator End) { argument
53 for(; I != End; ++I) {

Completed in 531 milliseconds

1234567891011