HomeSort by: relevance | last modified time | path
    Searched refs:IsStatement (Results 1 - 5 of 5) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/CodeView/
Line.cpp 14 LineInfo::LineInfo(uint32_t StartLine, uint32_t EndLine, bool IsStatement) {
18 if (IsStatement) {
  /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/CodeView/
Line.h 36 LineInfo(uint32_t StartLine, uint32_t EndLine, bool IsStatement);
47 bool isStatement() const { return (LineData & StatementFlag) != 0; }
99 uint16_t StartColumn, uint16_t EndColumn, bool IsStatement)
100 : CodeOffset(CodeOffset), LineInf(StartLine, EndLine, IsStatement),
122 bool isStatement() const { return LineInf.isStatement(); }
  /src/external/apache2/llvm/dist/llvm/include/llvm/ObjectYAML/
CodeViewYAMLDebugSections.h 66 bool IsStatement;
  /src/external/apache2/llvm/dist/llvm/lib/DWARFLinker/
DWARFStreamer.cpp 528 unsigned IsStatement = 1;
576 if (IsStatement != Row.IsStmt) {
577 IsStatement = Row.IsStmt;
622 LastLine = FileNum = IsStatement = 1;
  /src/external/apache2/llvm/dist/llvm/lib/ObjectYAML/
CodeViewYAMLDebugSections.cpp 268 IO.mapRequired("IsStatement", Obj.IsStatement);
429 LineInfo(L.LineStart, LE, L.IsStatement),
435 Result->addLineInfo(L.Offset, LineInfo(L.LineStart, LE, L.IsStatement));
609 SLE.IsStatement = LI.isStatement();

Completed in 22 milliseconds