HomeSort by relevance Sort by last modified time
    Searched refs:Comments (Results 1 - 25 of 163) sorted by null

1 2 3 4 5 6 7

  /external/llvm/lib/CodeGen/AsmPrinter/
DebugLocStream.cpp 33 Comments.erase(Comments.begin() + Entries.back().CommentOffset,
34 Comments.end());
ByteStreamer.h 77 SmallVectorImpl<std::string> &Comments;
79 /// \brief Only verbose textual output needs comments. This will be set to
80 /// true for that case, and false otherwise. If false, comments passed in to
86 SmallVectorImpl<std::string> &Comments,
88 : Buffer(Buffer), Comments(Comments), GenerateComments(GenerateComments) {}
92 Comments.push_back(Comment.str());
98 Comments.push_back(Comment.str());
104 Comments.push_back(Comment.str());
DebugLocStream.h 56 SmallVector<std::string, 32> Comments;
58 /// \brief Only verbose textual output needs comments. This will be set to
97 Entries.emplace_back(BeginSym, EndSym, DWARFBytes.size(), Comments.size());
105 return BufferByteStreamer(DWARFBytes, Comments, GenerateComments);
121 return makeArrayRef(Comments)
148 return Comments.size() - Entries[EI].CommentOffset;
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/Workspace/
MetaFileCommentParser.py 2 # This file is used to check format of comments
35 def CheckInfComment(SectionType, Comments, InfFile, LineNo, ValueList):
37 CheckUsage(Comments, UsageList, InfFile, LineNo, ValueList[0]+'.'+ValueList[1], ErrorMsgMap[MODEL_PCD_DYNAMIC])
39 CheckUsage(Comments, UsageList, InfFile, LineNo, ValueList[0], ErrorMsgMap[SectionType])
41 CheckUsage(Comments, UsageList + ("TO_START", "BY_START"), InfFile, LineNo, ValueList[0], ErrorMsgMap[SectionType])
43 def CheckUsage(Comments, Usages, InfFile, LineNo, Value, ErrorMsg):
44 for Comment in Comments:
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/PomAdapter/
InfPomAlignmentMisc.py 51 Statement = _GenInfDefineStateMent(EdkReleaseVersion.Comments.GetHeaderComments(),
54 EdkReleaseVersion.Comments.GetTailComments())
60 Statement = _GenInfDefineStateMent(Shadow.Comments.GetHeaderComments(),
63 Shadow.Comments.GetTailComments())
79 Statement = _GenInfDefineStateMent(PciVendorId.Comments.GetHeaderComments(),
82 PciVendorId.Comments.GetTailComments())
88 Statement = _GenInfDefineStateMent(PciDeviceId.Comments.GetHeaderComments(),
91 PciDeviceId.Comments.GetTailComments())
97 Statement = _GenInfDefineStateMent(PciClassCode.Comments.GetHeaderComments(),
100 PciClassCode.Comments.GetTailComments())
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/Object/Parser/
InfDefineObject.py 61 def SetPciVendorId(self, PciVendorId, Comments):
75 self.PciVendorId.Comments = Comments
85 def SetPciDeviceId(self, PciDeviceId, Comments):
99 self.PciDeviceId.Comments = Comments
109 def SetPciClassCode(self, PciClassCode, Comments):
123 self.PciClassCode.Comments = Comments
134 def SetPciRevision(self, PciRevision, Comments):
    [all...]
InfDefineCommonObject.py 27 self.Comments = InfLineCommentObject()
80 self.Comments = InfLineCommentObject()
  /build/blueprint/parser/
sort.go 32 sort.Sort(commentsByOffset(file.Comments))
110 copyComments := make([]*CommentGroup, len(file.Comments))
111 for i := range file.Comments {
112 cg := *file.Comments[i]
113 cg.Comments = make([]*Comment, len(cg.Comments))
114 for j := range file.Comments[i].Comments {
115 c := *file.Comments[i].Comments[j
    [all...]
  /external/clang/lib/AST/
RawCommentList.cpp 1 //===--- RawCommentList.cpp - Processing raw comments -----------*- C++ -*-===//
186 comments::Lexer L(Allocator, Context.getDiagnostics(),
190 comments::BriefParser P(L, Context.getCommentCommandTraits());
202 comments::FullComment *RawComment::parse(const ASTContext &Context,
208 comments::Lexer L(Context.getAllocator(), Context.getDiagnostics(),
212 comments::Sema S(Context.getAllocator(), Context.getSourceManager(),
217 comments::Parser P(L, S, Context.getAllocator(), Context.getSourceManager(),
277 // Check if the comments are not in source order.
278 while (!Comments.empty() &&
279 !SourceMgr.isBeforeInTranslationUnit(Comments.back()->getLocStart()
    [all...]
  /external/jdiff/src/jdiff/
CommentsHandler.java 14 * Handle the parsing of an XML file and the generation of a Comments object.
16 * All HTML written for the comments sections in the report must
28 /** The Comments object which is populated from the XML file. */
29 public Comments comments_ = null;
44 public CommentsHandler(Comments comments) {
45 comments_ = comments;
62 if (localName.compareTo("comments") == 0) {
66 System.out.println("Error: no identifier found in the comments XML file.");
75 System.out.println("Warning: API identifier in the comments XML file (" + filename2 + ") differs from the name of the file.")
    [all...]
Comments.java 16 * Creates a Comments from an XML file. The Comments object is the internal
17 * representation of the comments for the changes.
18 * All methods in this class for populating a Comments object are static.
23 public class Comments {
26 * All the possible comments known about, accessible by the commentID.
30 /** The old Comments object which is populated from the file read in. */
31 private static Comments oldComments_ = null;
34 public Comments() {
38 // The list of comments elements associated with this object
    [all...]
JDiff.java 85 // Read the file in, but do not add any text to the global comments
91 // Read the file in, and do add any text to the global comments
99 // Read the file where the XML for comments about the changes between
100 // the old API and new API is stored and create a Comments object for
101 // it. The Comments object may be null if no file exists.
112 System.out.println("JDiff: reading the comments in from file '" + commentsFileName + "'...");
113 Comments existingComments = Comments.readFile(commentsFileName);
115 System.out.println(" (the comments file will be created)");
121 // Emit messages about which comments are now unused an
    [all...]
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/arm/
ccs.s 2 ; Comments here
  /external/clang/unittests/Tooling/
CommentHandlerTest.cpp 52 Comments.push_back(Comment(C, CLine, CCol));
65 CommentList Comments;
96 CommentVerifier(const CommentList &Comments, Preprocessor *PP)
97 : Current(Comments.begin()), End(Comments.end()), PP(PP)
129 return CommentVerifier(Comments, PP);
  /prebuilts/go/darwin-x86/src/cmd/vendor/github.com/google/pprof/internal/symbolizer/
symbolizer_test.go 159 sort.Strings(prof.Comments)
160 if got, want := strings.Join(prof.Comments, ":"), tc.wantComment; got != want {
172 p.Comments = append(p.Comments, "symbolz=["+strings.Join(args, ",")+"]")
184 p.Comments = append(p.Comments, "local=["+strings.Join(args, ",")+"]")
190 p.Comments = append(p.Comments, "force")
193 p.Comments = append(p.Comments, "demangle=["+mode+"]"
    [all...]
  /prebuilts/go/linux-x86/src/cmd/vendor/github.com/google/pprof/internal/symbolizer/
symbolizer_test.go 159 sort.Strings(prof.Comments)
160 if got, want := strings.Join(prof.Comments, ":"), tc.wantComment; got != want {
172 p.Comments = append(p.Comments, "symbolz=["+strings.Join(args, ",")+"]")
184 p.Comments = append(p.Comments, "local=["+strings.Join(args, ",")+"]")
190 p.Comments = append(p.Comments, "force")
193 p.Comments = append(p.Comments, "demangle=["+mode+"]"
    [all...]
  /external/llvm/lib/MC/MCDisassembler/
Disassembler.cpp 123 /// \brief Emits the comments that are stored in \p DC comment stream.
128 StringRef Comments = DC->CommentsToEmit.str();
134 while (!Comments.empty()) {
137 // Emit a line of comments.
139 size_t Position = Comments.find('\n');
140 FormattedOS << CommentBegin << ' ' << Comments.substr(0, Position);
142 Comments = Comments.substr(Position+1);
  /external/clang/include/clang/AST/
RawCommentList.h 1 //===--- RawCommentList.h - Classes for processing raw comments -*- C++ -*-===//
24 namespace comments { namespace in namespace:clang
26 } // end namespace comments
32 RCK_OrdinaryBCPL, ///< Any normal BCPL comments
38 RCK_Merged ///< Two or more documentation comments merged together
95 /// Returns whether we are parsing all comments.
122 comments::FullComment *parse(const ASTContext &Context,
142 /// When true, ordinary comments starting with "//" and "/*" will be
143 /// considered as documentation comments.
163 /// \brief Compare comments' source locations
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/AST/
RawCommentList.h 1 //===--- RawCommentList.h - Classes for processing raw comments -*- C++ -*-===//
24 namespace comments { namespace in namespace:clang
26 } // end namespace comments
32 RCK_OrdinaryBCPL, ///< Any normal BCPL comments
38 RCK_Merged ///< Two or more documentation comments merged together
95 /// Returns whether we are parsing all comments.
122 comments::FullComment *parse(const ASTContext &Context,
142 /// When true, ordinary comments starting with "//" and "/*" will be
143 /// considered as documentation comments.
163 /// \brief Compare comments' source locations
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/clang/AST/
RawCommentList.h 1 //===--- RawCommentList.h - Classes for processing raw comments -*- C++ -*-===//
24 namespace comments { namespace in namespace:clang
26 } // end namespace comments
32 RCK_OrdinaryBCPL, ///< Any normal BCPL comments
38 RCK_Merged ///< Two or more documentation comments merged together
95 /// Returns whether we are parsing all comments.
122 comments::FullComment *parse(const ASTContext &Context,
142 /// When true, ordinary comments starting with "//" and "/*" will be
143 /// considered as documentation comments.
163 /// \brief Compare comments' source locations
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/clang/AST/
RawCommentList.h 1 //===--- RawCommentList.h - Classes for processing raw comments -*- C++ -*-===//
24 namespace comments { namespace in namespace:clang
26 } // end namespace comments
32 RCK_OrdinaryBCPL, ///< Any normal BCPL comments
38 RCK_Merged ///< Two or more documentation comments merged together
95 /// Returns whether we are parsing all comments.
122 comments::FullComment *parse(const ASTContext &Context,
142 /// When true, ordinary comments starting with "//" and "/*" will be
143 /// considered as documentation comments.
163 /// \brief Compare comments' source locations
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/clang/AST/
RawCommentList.h 1 //===--- RawCommentList.h - Classes for processing raw comments -*- C++ -*-===//
24 namespace comments { namespace in namespace:clang
26 } // end namespace comments
32 RCK_OrdinaryBCPL, ///< Any normal BCPL comments
38 RCK_Merged ///< Two or more documentation comments merged together
95 /// Returns whether we are parsing all comments.
122 comments::FullComment *parse(const ASTContext &Context,
142 /// When true, ordinary comments starting with "//" and "/*" will be
143 /// considered as documentation comments.
163 /// \brief Compare comments' source locations
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/clang/AST/
RawCommentList.h 1 //===--- RawCommentList.h - Classes for processing raw comments -*- C++ -*-===//
24 namespace comments { namespace in namespace:clang
26 } // end namespace comments
32 RCK_OrdinaryBCPL, ///< Any normal BCPL comments
38 RCK_Merged ///< Two or more documentation comments merged together
95 /// Returns whether we are parsing all comments.
122 comments::FullComment *parse(const ASTContext &Context,
142 /// When true, ordinary comments starting with "//" and "/*" will be
143 /// considered as documentation comments.
163 /// \brief Compare comments' source locations
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/clang/AST/
RawCommentList.h 1 //===--- RawCommentList.h - Classes for processing raw comments -*- C++ -*-===//
24 namespace comments { namespace in namespace:clang
26 } // end namespace comments
32 RCK_OrdinaryBCPL, ///< Any normal BCPL comments
38 RCK_Merged ///< Two or more documentation comments merged together
95 /// Returns whether we are parsing all comments.
122 comments::FullComment *parse(const ASTContext &Context,
142 /// When true, ordinary comments starting with "//" and "/*" will be
143 /// considered as documentation comments.
163 /// \brief Compare comments' source locations
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/clang/AST/
RawCommentList.h 1 //===--- RawCommentList.h - Classes for processing raw comments -*- C++ -*-===//
24 namespace comments { namespace in namespace:clang
26 } // end namespace comments
32 RCK_OrdinaryBCPL, ///< Any normal BCPL comments
38 RCK_Merged ///< Two or more documentation comments merged together
95 /// Returns whether we are parsing all comments.
122 comments::FullComment *parse(const ASTContext &Context,
142 /// When true, ordinary comments starting with "//" and "/*" will be
143 /// considered as documentation comments.
163 /// \brief Compare comments' source locations
    [all...]

Completed in 941 milliseconds

1 2 3 4 5 6 7