HomeSort by relevance Sort by last modified time
    Searched defs:AddComment (Results 1 - 5 of 5) sorted by null

  /external/llvm/include/llvm/MC/
MCStreamer.h 118 /// AddComment - Add a comment that can be emitted to the generated .s
125 virtual void AddComment(const Twine &T) {}
128 /// Unlike AddComment, you are required to terminate comments with \n if you
  /external/jhead/
jhead.c 97 static char * AddComment = NULL; // Add this tag.
246 if (AddComment){
248 if (!memcmp(Line, AddComment, l+1)){
250 strncpy(Line, AddComment, sizeof(Line));
268 if (AddComment && TagExists == FALSE){
269 strncat(OutComment, AddComment, MAX_COMMENT_SIZE-5-strlen(OutComment));
941 AddComment || RemComment ||
    [all...]
  /external/llvm/lib/MC/
MCLoggingStreamer.cpp 41 virtual void AddComment(const Twine &T) {
42 LogCall("AddComment", T);
43 return Child->AddComment(T);
MCAsmStreamer.cpp 96 /// AddComment - Add a comment that can be emitted to the generated .s
100 virtual void AddComment(const Twine &T);
106 /// Unlike AddComment, you are required to terminate comments with \n if you
258 /// AddComment - Add a comment that can be emitted to the generated .s
262 void MCAsmStreamer::AddComment(const Twine &T) {
    [all...]
  /external/llvm/lib/Target/PTX/
PTXMCAsmStreamer.cpp 76 /// AddComment - Add a comment that can be emitted to the generated .s
80 virtual void AddComment(const Twine &T);
86 /// Unlike AddComment, you are required to terminate comments with \n if you
185 void PTXMCAsmStreamer::AddComment(const Twine &T) {

Completed in 299 milliseconds