Home | History | Annotate | Download | only in Support

Lines Matching refs:Tag

61   /// readFunctionTag - If cursor points to a function tag then increment the
64 StringRef Tag = Buffer->getBuffer().slice(Cursor, Cursor+4);
65 if (Tag.empty() ||
66 Tag[0] != '\0' || Tag[1] != '\0' ||
67 Tag[2] != '\0' || Tag[3] != '\1') {
74 /// readBlockTag - If cursor points to a block tag then increment the
77 StringRef Tag = Buffer->getBuffer().slice(Cursor, Cursor+4);
78 if (Tag.empty() ||
79 Tag[0] != '\0' || Tag[1] != '\0' ||
80 Tag[2] != '\x41' || Tag[3] != '\x01') {
87 /// readEdgeTag - If cursor points to an edge tag then increment the
90 StringRef Tag = Buffer->getBuffer().slice(Cursor, Cursor+4);
91 if (Tag.empty() ||
92 Tag[0] != '\0' || Tag[1] != '\0' ||
93 Tag[2] != '\x43' || Tag[3] != '\x01') {
100 /// readLineTag - If cursor points to a line tag then increment the
103 StringRef Tag = Buffer->getBuffer().slice(Cursor, Cursor+4);
104 if (Tag.empty() ||
105 Tag[0] != '\0' || Tag[1] != '\0' ||
106 Tag[2] != '\x45' || Tag[3] != '\x01') {
113 /// readArcTag - If cursor points to an gcda arc tag then increment the
116 StringRef Tag = Buffer->getBuffer().slice(Cursor, Cursor+4);
117 if (Tag.empty() ||
118 Tag[0] != '\0' || Tag[1] != '\0' ||
119 Tag[2] != '\xa1' || Tag[3] != '\1') {