Home
last modified time | relevance | path

Searched refs:EndLine (Results 1 – 12 of 12) sorted by relevance

/external/tensorflow/tensorflow/java/src/gen/cc/
Dsource_writer_test.cc105 writer.Append("You say goodbye").EndLine().Append("and I say hello!"); in TEST()
114 .EndLine() in TEST()
125 .EndLine() in TEST()
128 .EndLine() in TEST()
139 .EndLine() in TEST()
150 .EndLine() in TEST()
153 .EndLine() in TEST()
164 .EndLine() in TEST()
168 .EndLine() in TEST()
180 .EndLine() in TEST()
[all …]
Dsource_writer.cc50 SourceWriter& SourceWriter::EndLine() { in EndLine() function in tensorflow::SourceWriter
Dsource_writer.h57 SourceWriter& EndLine();
/external/swiftshader/third_party/LLVM/lib/Support/
DMemory.cpp59 const intptr_t EndLine = ((intptr_t) Addr + Len + LineSize - 1) & Mask; in InvalidateInstructionCache()
61 for (intptr_t Line = StartLine; Line < EndLine; Line += LineSize) in InvalidateInstructionCache()
65 for (intptr_t Line = StartLine; Line < EndLine; Line += LineSize) in InvalidateInstructionCache()
/external/llvm/include/llvm/DebugInfo/CodeView/
DLine.h37 LineInfo(uint32_t StartLine, uint32_t EndLine, bool IsStatement);
99 Line(int32_t CodeOffset, uint32_t StartLine, uint32_t EndLine, in Line() argument
101 : CodeOffset(CodeOffset), LineInf(StartLine, EndLine, IsStatement), in Line()
/external/llvm/lib/DebugInfo/CodeView/
DLine.cpp15 LineInfo::LineInfo(uint32_t StartLine, uint32_t EndLine, bool IsStatement) { in LineInfo() argument
17 uint32_t LineDelta = EndLine - StartLine; in LineInfo()
/external/clang/unittests/AST/
DMatchVerifier.h220 unsigned EndLine, unsigned EndColumn) { in expectRange() argument
223 ExpectEndLine = EndLine; in expectRange()
235 unsigned EndLine = Result.SourceManager->getSpellingLineNumber(End); in verify() local
238 EndLine != ExpectEndLine || EndColumn != ExpectEndColumn) { in verify()
/external/clang/unittests/ASTMatchers/Dynamic/
DParserTest.cpp106 unsigned EndLine, unsigned StartColumn, unsigned EndColumn) { in matchesRange() argument
108 EXPECT_EQ(EndLine, Range.End.Line); in matchesRange()
111 return Range.Start.Line == StartLine && Range.End.Line == EndLine && in matchesRange()
/external/clang/tools/libclang/
DCIndexDiagnostic.cpp284 unsigned StartLine, StartColumn, EndLine, EndColumn; in clang_formatDiagnostic() local
289 &EndFile, &EndLine, &EndColumn, nullptr); in clang_formatDiagnostic()
295 << EndLine << ":" << EndColumn << "}"; in clang_formatDiagnostic()
/external/llvm/lib/Support/Unix/
DMemory.inc324 const intptr_t EndLine = ((intptr_t) Addr + Len + LineSize - 1) & Mask;
326 for (intptr_t Line = StartLine; Line < EndLine; Line += LineSize)
330 for (intptr_t Line = StartLine; Line < EndLine; Line += LineSize)
/external/swiftshader/third_party/llvm-subzero/lib/Support/Unix/
DMemory.inc311 const intptr_t EndLine = ((intptr_t) Addr + Len + LineSize - 1) & Mask;
313 for (intptr_t Line = StartLine; Line < EndLine; Line += LineSize)
317 for (intptr_t Line = StartLine; Line < EndLine; Line += LineSize)
/external/clang/lib/AST/
DCommentParser.cpp520 const unsigned EndLine = SourceMgr.getPresumedLineNumber( in parseHTMLStartTag() local
523 if (StartLineInvalid || EndLineInvalid || StartLine == EndLine) in parseHTMLStartTag()