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

1234567891011>>

/external/clang/lib/StaticAnalyzer/Core/
H A DBugReporter.cpp264 const Stmt *End = CF->getEndLocation().asStmt(); local
268 } else if (End && isa<CXXDefaultInitExpr>(End)) {
644 const PathDiagnosticLocation &End = PDB.getEnclosingStmtLocation(S); local
647 << End.asLocation().getExpansionLineNumber();
649 Start, End, os.str()));
659 PathDiagnosticLocation End(S, SMgr, LC);
665 << End.asLocation().getExpansionLineNumber();
669 << End.asLocation().getExpansionLineNumber();
696 << End
705 const PathDiagnosticLocation &End = PDB.ExecutionContinues(os, N); local
717 PathDiagnosticLocation End = PDB.ExecutionContinues(os, N); local
735 PathDiagnosticLocation End = PDB.ExecutionContinues(N); local
769 PathDiagnosticLocation End = PDB.ExecutionContinues(N); local
781 PathDiagnosticLocation End = PDB.ExecutionContinues(N); local
804 PathDiagnosticLocation End = PDB.ExecutionContinues(os, N); local
813 PathDiagnosticLocation End = PDB.ExecutionContinues(N); local
832 PathDiagnosticLocation End = PDB.ExecutionContinues(os, N); local
840 PathDiagnosticLocation End = PDB.ExecutionContinues(N); local
852 PathDiagnosticLocation End = PDB.ExecutionContinues(N); local
3454 BugReport::ranges_iterator Beg, End; local
[all...]
/external/chromium_org/base/test/expectations/
H A Dparser.cc149 return SkipWhitespace(&Parser::End);
152 Parser::StateFunc Parser::End() { function in class:test_expectations::Parser
/external/chromium_org/third_party/mesa/src/docs/
H A DMESA_window_pos.spec112 Begin and End.
/external/chromium_org/third_party/openmax_dl/dl/sp/src/arm/armv7/
H A DomxSP_FFTInv_CCSToR_F32_Sfs_s.S123 B End
213 End:
/external/clang/lib/Lex/
H A DHeaderMap.cpp62 const char *S = Str.begin(), *End = Str.end(); local
64 for (; S != End; S++)
/external/clang/tools/clang-format-vs/ClangFormat/
H A DClangFormatPackage.cs88 int end = view.Selection.End.Position.GetContainingLine().End.Position;
/external/llvm/lib/Bitcode/Writer/
H A DValueEnumerator.h127 void getFunctionConstantRange(unsigned &Start, unsigned &End) const {
129 End = FirstInstID;
178 } // End llvm namespace
/external/llvm/lib/Target/Mips/
H A DMipsLongBranch.cpp128 ReverseIter End = MBB->rend(); local
129 ReverseIter LastBr = getNonDebugInstr(MBB->rbegin(), End);
132 if ((LastBr == End) ||
136 ReverseIter FirstBr = getNonDebugInstr(std::next(LastBr), End);
140 if ((FirstBr == End) ||
183 ReverseIter End = MBB->rend(); local
184 ReverseIter Br = getNonDebugInstr(MBB->rbegin(), End);
186 if ((Br != End) && !Br->isIndirectBranch() &&
/external/mesa3d/docs/
H A DMESA_window_pos.spec112 Begin and End.
/external/chromium_org/cc/debug/
H A Dring_buffer.h104 // for (RingBuffer<T, kSize>::Iterator it = ring_buffer.End(); it; --it) {}
105 Iterator End() const { function in class:cc::RingBuffer
/external/chromium_org/gpu/command_buffer/service/
H A Dgpu_tracer.cc126 void GPUTrace::End() { function in class:gpu::gles2::GPUTrace
230 // End Trace for all active markers
235 markers_[n][i].trace_->End();
272 bool GPUTracer::End(GpuTracerSource source) { function in class:gpu::gles2::GPUTracer
283 trace->End();
/external/chromium_org/third_party/openmax_dl/dl/sp/src/arm/neon/
H A DomxSP_FFTFwd_RToCCS_S16S32_Sfs_s.S151 End:
H A DomxSP_FFTInv_CCSToR_F32_Sfs_s.S167 B End
282 BLT End
286 End:
/external/chromium_org/ui/gfx/animation/
H A Dlinear_animation.cc56 void LinearAnimation::End() { function in class:gfx::LinearAnimation
/external/clang/unittests/AST/
H A DMatchVerifier.h197 SourceLocation End = R.getEnd(); local
200 unsigned EndLine = Result.SourceManager->getSpellingLineNumber(End);
201 unsigned EndColumn = Result.SourceManager->getSpellingColumnNumber(End);
210 End.print(Msg, *Result.SourceManager);
/external/clang/unittests/ASTMatchers/Dynamic/
H A DParserTest.cpp104 EXPECT_EQ(EndLine, Range.End.Line);
106 EXPECT_EQ(EndColumn, Range.End.Column);
107 return Range.Start.Line == StartLine && Range.End.Line == EndLine &&
108 Range.Start.Column == StartColumn && Range.End.Column == EndColumn;
239 EXPECT_EQ("1:1: End of code found while looking for token.",
/external/llvm/include/llvm/Support/
H A DStreamableMemoryObject.h175 const unsigned char *Start, const unsigned char *End);
/external/chromium_org/third_party/WebKit/Source/platform/animation/
H A DTimingFunction.h176 End enumerator in enum:blink::FINAL::StepAtPosition
188 DEFINE_STATIC_REF(StepsTimingFunction, end, create(1, End));
194 case End:
/external/chromium_org/third_party/freetype/src/sfnt/
H A Dttpost.c523 goto End;
546 goto End;
558 End:
/external/chromium_org/third_party/libwebp/utils/
H A Dthread.c271 static void End(WebPWorker* const worker) { function
291 Init, Reset, Sync, Launch, Execute, End
298 winterface->Execute == NULL || winterface->End == NULL) {
/external/chromium_org/third_party/mesa/src/src/mesa/tnl/
H A Dt_vb_fog.c99 GLfloat end = ctx->Fog.End;
111 if (ctx->Fog.Start == ctx->Fog.End)
114 d = 1.0F / (ctx->Fog.End - ctx->Fog.Start);
/external/clang/lib/Basic/
H A DDiagnostic.cpp480 static unsigned PluralNumber(const char *&Start, const char *End) { argument
483 while (Start != End && *Start >= '0' && *Start <= '9') {
492 static bool TestPluralRange(unsigned Val, const char *&Start, const char *End) { argument
494 unsigned Ref = PluralNumber(Start, End);
499 unsigned Low = PluralNumber(Start, End);
502 unsigned High = PluralNumber(Start, End);
509 static bool EvalPluralExpr(unsigned ValNo, const char *Start, const char *End) { argument
519 unsigned Arg = PluralNumber(Start, End);
523 if (TestPluralRange(ValMod, Start, End))
529 if (TestPluralRange(ValNo, Start, End))
[all...]
/external/clang/lib/Format/
H A DFormatToken.cpp121 // Returns the lengths in code points between Begin and End (both included),
124 const FormatToken *End) {
125 assert(End->TotalLength >= Begin->TotalLength);
126 return End->TotalLength - Begin->TotalLength + Begin->ColumnWidth;
123 CodePointsBetween(const FormatToken *Begin, const FormatToken *End) argument
/external/clang/lib/Sema/
H A DSemaFixItUtils.cpp61 const SourceLocation End = S.PP.getLocForEndOfToken(FullExpr->getSourceRange() local
114 Hints.push_back(FixItHint::CreateInsertion(End, ")"));
148 Hints.push_back(FixItHint::CreateInsertion(End, ")"));
/external/freetype/src/sfnt/
H A Dttpost.c523 goto End;
546 goto End;
558 End:

Completed in 790 milliseconds

1234567891011>>