Home
last modified time | relevance | path

Searched refs:Comment (Results 1 – 25 of 711) sorted by relevance

12345678910>>...29

/external/llvm-project/clang/include/clang-c/
DDocumentation.h217 CINDEX_LINKAGE enum CXCommentKind clang_Comment_getKind(CXComment Comment);
224 CINDEX_LINKAGE unsigned clang_Comment_getNumChildren(CXComment Comment);
234 CXComment clang_Comment_getChild(CXComment Comment, unsigned ChildIdx);
245 CINDEX_LINKAGE unsigned clang_Comment_isWhitespace(CXComment Comment);
253 unsigned clang_InlineContentComment_hasTrailingNewline(CXComment Comment);
260 CINDEX_LINKAGE CXString clang_TextComment_getText(CXComment Comment);
268 CXString clang_InlineCommandComment_getCommandName(CXComment Comment);
277 clang_InlineCommandComment_getRenderKind(CXComment Comment);
285 unsigned clang_InlineCommandComment_getNumArgs(CXComment Comment);
295 CXString clang_InlineCommandComment_getArgText(CXComment Comment,
[all …]
/external/clang/include/clang-c/
DDocumentation.h213 CINDEX_LINKAGE enum CXCommentKind clang_Comment_getKind(CXComment Comment);
220 CINDEX_LINKAGE unsigned clang_Comment_getNumChildren(CXComment Comment);
230 CXComment clang_Comment_getChild(CXComment Comment, unsigned ChildIdx);
241 CINDEX_LINKAGE unsigned clang_Comment_isWhitespace(CXComment Comment);
249 unsigned clang_InlineContentComment_hasTrailingNewline(CXComment Comment);
256 CINDEX_LINKAGE CXString clang_TextComment_getText(CXComment Comment);
264 CXString clang_InlineCommandComment_getCommandName(CXComment Comment);
273 clang_InlineCommandComment_getRenderKind(CXComment Comment);
281 unsigned clang_InlineCommandComment_getNumArgs(CXComment Comment);
291 CXString clang_InlineCommandComment_getArgText(CXComment Comment,
[all …]
/external/libcups/desktop/
Dcups.desktop.in9 Comment=CUPS Web Interface
11 Comment[af]=CUPS Web Interface
13 Comment[ar]=الكؤوس واجهة الويب
15 Comment[az]=CUPS Web Interface
17 Comment[bn-IN]=CUPS ওয়েব ইন্টারফেস
19 Comment[ca]=Interfície web de CUPS
21 Comment[cs]=Webové rozhraní CUPS
23 Comment[da]=CUPS-webgrænseflade
25 Comment[de]=CUPS Webinterface
27 Comment[en_US]=CUPS Web Interface
[all …]
/external/selinux/gui/
Dsystem-config-selinux.desktop31 Comment=Configure SELinux in a graphical setting
32 Comment[bn_IN]=গ্রাফিক্যাল পরিবেশে SELinux কনফিগার করুন
33 Comment[ca]=Configura SELinuc an mode de preferències gràfiques
34 Comment[da]=Konfigurér SELinux i et grafisk miljø
35 Comment[de]=SELinux in einer grafischen Einstellung konfigurieren
36 Comment[es]=Defina SELinux en una configuración de interfaz gráfica
37 Comment[fi]=Tee SELinuxin asetukset graafisesti
38 Comment[fr]=Configure SELinux dans un environnement graphique
39 Comment[gu]=ગ્રાફિકલ સુયોજનમાં SELinux ને રૂપરેખાંકિત કરો
40 Comment[hi]=SELinux को आलेखी सेटिंग में विन्यस्त करें
[all …]
Dselinux-polgengui.desktop31 Comment=Generate SELinux policy modules
32 Comment[bn_IN]=SELinux নিয়মনীতির মডিউল নির্মাণ করুন
33 Comment[ca]=Genera els mòduls de les polítiques de SELinux
34 Comment[da]=Generér SELinux-regelsætmodul
35 Comment[de]=Tool zur Erstellung von SELinux-Richtlinien
36 Comment[es]=Generar módulos de política de SELinux
37 Comment[fi]=Generoi SELinuxin käytäntömoduuleja
38 Comment[fr]=Génére des modules de stratégie SELinux
39 Comment[gu]=SELinux પોલિસી મોડ્યુલોને ઉત્પન્ન કરો
40 Comment[hi]=नया पॉलिसी मॉड्यूल उत्पन्न करें
[all …]
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/visitor/
DModifierVisitor.java26 import com.github.javaparser.ast.comments.Comment;
59 Comment comment = n.getComment().map(s -> (Comment) s.accept(this, arg)).orElse(null); in visit()
77 Comment comment = n.getComment().map(s -> (Comment) s.accept(this, arg)).orElse(null); in visit()
93 Comment comment = n.getComment().map(s -> (Comment) s.accept(this, arg)).orElse(null); in visit()
107 Comment comment = n.getComment().map(s -> (Comment) s.accept(this, arg)).orElse(null); in visit()
120 Comment comment = n.getComment().map(s -> (Comment) s.accept(this, arg)).orElse(null); in visit()
130 Comment comment = n.getComment().map(s -> (Comment) s.accept(this, arg)).orElse(null); in visit()
143 Comment comment = n.getComment().map(s -> (Comment) s.accept(this, arg)).orElse(null); in visit()
156 Comment comment = n.getComment().map(s -> (Comment) s.accept(this, arg)).orElse(null); in visit()
170 Comment comment = n.getComment().map(s -> (Comment) s.accept(this, arg)).orElse(null); in visit()
[all …]
DCloneVisitor.java26 import com.github.javaparser.ast.comments.Comment;
47 Comment comment = cloneNode(n.getComment(), arg); in visit()
51 n.getOrphanComments().stream().map(Comment::clone).forEach(r::addOrphanComment); in visit()
61 Comment comment = cloneNode(n.getComment(), arg); in visit()
64 n.getOrphanComments().stream().map(Comment::clone).forEach(r::addOrphanComment); in visit()
74 Comment comment = cloneNode(n.getComment(), arg); in visit()
77 n.getOrphanComments().stream().map(Comment::clone).forEach(r::addOrphanComment); in visit()
84 Comment comment = cloneNode(n.getComment(), arg); in visit()
87 n.getOrphanComments().stream().map(Comment::clone).forEach(r::addOrphanComment); in visit()
94 Comment comment = cloneNode(n.getComment(), arg); in visit()
[all …]
/external/llvm/lib/CodeGen/AsmPrinter/
DByteStreamer.h33 virtual void EmitInt8(uint8_t Byte, const Twine &Comment = "") = 0;
34 virtual void EmitSLEB128(uint64_t DWord, const Twine &Comment = "") = 0;
35 virtual void EmitULEB128(uint64_t DWord, const Twine &Comment = "") = 0;
44 void EmitInt8(uint8_t Byte, const Twine &Comment) override { in EmitInt8() argument
45 AP.OutStreamer->AddComment(Comment); in EmitInt8()
48 void EmitSLEB128(uint64_t DWord, const Twine &Comment) override { in EmitSLEB128() argument
49 AP.OutStreamer->AddComment(Comment); in EmitSLEB128()
52 void EmitULEB128(uint64_t DWord, const Twine &Comment) override { in EmitULEB128() argument
53 AP.OutStreamer->AddComment(Comment); in EmitULEB128()
63 void EmitInt8(uint8_t Byte, const Twine &Comment) override { in EmitInt8() argument
[all …]
/external/llvm-project/llvm/tools/llvm-mca/
DCodeRegionGenerator.cpp77 StringRef Comment(CommentText); in HandleComment() local
78 if (Comment.empty()) in HandleComment()
82 unsigned Position = Comment.find_first_not_of(" \t"); in HandleComment()
83 if (Position >= Comment.size()) in HandleComment()
87 Comment = Comment.drop_front(Position); in HandleComment()
88 if (Comment.consume_front("LLVM-MCA-END")) { in HandleComment()
90 Position = Comment.find_first_not_of(" \t"); in HandleComment()
91 if (Position < Comment.size()) in HandleComment()
92 Comment = Comment.drop_front(Position); in HandleComment()
93 Regions.endRegion(Comment, Loc); in HandleComment()
[all …]
/external/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/AsmPrinter/
DByteStreamer.h32 virtual void EmitInt8(uint8_t Byte, const Twine &Comment = "") = 0;
33 virtual void EmitSLEB128(uint64_t DWord, const Twine &Comment = "") = 0;
34 virtual void EmitULEB128(uint64_t DWord, const Twine &Comment = "", unsigned PadTo = 0) = 0;
43 void EmitInt8(uint8_t Byte, const Twine &Comment) override { in EmitInt8() argument
44 AP.OutStreamer->AddComment(Comment); in EmitInt8()
47 void EmitSLEB128(uint64_t DWord, const Twine &Comment) override { in EmitSLEB128() argument
48 AP.OutStreamer->AddComment(Comment); in EmitSLEB128()
51 void EmitULEB128(uint64_t DWord, const Twine &Comment, unsigned PadTo) override { in EmitULEB128() argument
52 AP.OutStreamer->AddComment(Comment); in EmitULEB128()
62 void EmitInt8(uint8_t Byte, const Twine &Comment) override { in EmitInt8() argument
[all …]
/external/llvm-project/llvm/lib/CodeGen/AsmPrinter/
DByteStreamer.h32 virtual void emitInt8(uint8_t Byte, const Twine &Comment = "") = 0;
33 virtual void emitSLEB128(uint64_t DWord, const Twine &Comment = "") = 0;
34 virtual void emitULEB128(uint64_t DWord, const Twine &Comment = "",
44 void emitInt8(uint8_t Byte, const Twine &Comment) override { in emitInt8() argument
45 AP.OutStreamer->AddComment(Comment); in emitInt8()
48 void emitSLEB128(uint64_t DWord, const Twine &Comment) override { in emitSLEB128() argument
49 AP.OutStreamer->AddComment(Comment); in emitSLEB128()
52 void emitULEB128(uint64_t DWord, const Twine &Comment, in emitULEB128() argument
54 AP.OutStreamer->AddComment(Comment); in emitULEB128()
64 void emitInt8(uint8_t Byte, const Twine &Comment) override { in emitInt8() argument
[all …]
/external/llvm-project/llvm/lib/DebugInfo/CodeView/
DCodeViewRecordIO.cpp101 const Twine &Comment) { in mapByteVectorTail() argument
103 emitComment(Comment); in mapByteVectorTail()
117 const Twine &Comment) { in mapByteVectorTail() argument
119 if (auto EC = mapByteVectorTail(BytesRef, Comment)) in mapByteVectorTail()
127 Error CodeViewRecordIO::mapInteger(TypeIndex &TypeInd, const Twine &Comment) { in mapInteger() argument
131 emitComment(Comment + ": " + TypeNameStr); in mapInteger()
133 emitComment(Comment); in mapInteger()
149 const Twine &Comment) { in mapEncodedInteger() argument
152 emitEncodedUnsignedInteger(static_cast<uint64_t>(Value), Comment); in mapEncodedInteger()
154 emitEncodedSignedInteger(Value, Comment); in mapEncodedInteger()
[all …]
/external/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/CodeView/
DCodeViewRecordIO.cpp101 const Twine &Comment) { in mapByteVectorTail() argument
103 emitComment(Comment); in mapByteVectorTail()
117 const Twine &Comment) { in mapByteVectorTail() argument
119 if (auto EC = mapByteVectorTail(BytesRef, Comment)) in mapByteVectorTail()
127 Error CodeViewRecordIO::mapInteger(TypeIndex &TypeInd, const Twine &Comment) { in mapInteger() argument
131 emitComment(Comment + ": " + TypeNameStr); in mapInteger()
133 emitComment(Comment); in mapInteger()
149 const Twine &Comment) { in mapEncodedInteger() argument
152 emitEncodedUnsignedInteger(static_cast<uint64_t>(Value), Comment); in mapEncodedInteger()
154 emitEncodedSignedInteger(Value, Comment); in mapEncodedInteger()
[all …]
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/CodeView/
DCodeViewRecordIO.h66 Error mapInteger(TypeIndex &TypeInd, const Twine &Comment = "");
99 template <typename T> Error mapInteger(T &Value, const Twine &Comment = "") {
101 emitComment(Comment);
113 template <typename T> Error mapEnum(T &Value, const Twine &Comment = "") {
123 if (auto EC = mapInteger(X, Comment))
132 Error mapEncodedInteger(int64_t &Value, const Twine &Comment = "");
133 Error mapEncodedInteger(uint64_t &Value, const Twine &Comment = "");
134 Error mapEncodedInteger(APSInt &Value, const Twine &Comment = "");
135 Error mapStringZ(StringRef &Value, const Twine &Comment = "");
136 Error mapGuid(GUID &Guid, const Twine &Comment = "");
[all …]
/external/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
DCodeViewRecordIO.h67 Error mapInteger(TypeIndex &TypeInd, const Twine &Comment = "");
100 template <typename T> Error mapInteger(T &Value, const Twine &Comment = "") {
102 emitComment(Comment);
114 template <typename T> Error mapEnum(T &Value, const Twine &Comment = "") {
124 if (auto EC = mapInteger(X, Comment))
133 Error mapEncodedInteger(int64_t &Value, const Twine &Comment = "");
134 Error mapEncodedInteger(uint64_t &Value, const Twine &Comment = "");
135 Error mapEncodedInteger(APSInt &Value, const Twine &Comment = "");
136 Error mapStringZ(StringRef &Value, const Twine &Comment = "");
137 Error mapGuid(GUID &Guid, const Twine &Comment = "");
[all …]
/external/clang/include/clang/Basic/
DCommentNodes.td1 class Comment<bit abstract = 0> {
5 class DComment<Comment base, bit abstract = 0> : Comment<abstract> {
6 Comment Base = base;
9 def InlineContentComment : Comment<1>;
16 def BlockContentComment : Comment<1>;
24 def VerbatimBlockLineComment : Comment;
26 def FullComment : Comment;
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_new_src/javaparser-core/com/github/javaparser/
DCommentsInserter.java26 import com.github.javaparser.ast.comments.Comment;
51 private void insertComments(CompilationUnit cu, TreeSet<Comment> comments) { in insertComments()
66 Comment firstComment = comments.iterator().next(); in insertComments()
79 void insertComments(Node node, TreeSet<Comment> commentsToAttribute) { in insertComments()
99 TreeSet<Comment> commentsInsideChild = new TreeSet<>(NODE_BY_BEGIN_POSITION); in insertComments()
100 for (Comment c : commentsToAttribute) { in insertComments()
112 List<Comment> attributedComments = new LinkedList<>(); in insertComments()
113 for (Comment comment : commentsToAttribute) { in insertComments()
127 Comment previousComment = null; in insertComments()
136 if (thing instanceof Comment) { in insertComments()
[all …]
/external/clang/lib/AST/
DRawCommentList.cpp25 std::pair<RawComment::CommentKind, bool> getCommentKind(StringRef Comment, in getCommentKind() argument
28 if ((Comment.size() < MinCommentLength) || Comment[0] != '/') in getCommentKind()
32 if (Comment[1] == '/') { in getCommentKind()
33 if (Comment.size() < 3) in getCommentKind()
36 if (Comment[2] == '/') in getCommentKind()
38 else if (Comment[2] == '!') in getCommentKind()
43 assert(Comment.size() >= 4); in getCommentKind()
47 if (Comment[1] != '*' || in getCommentKind()
48 Comment[Comment.size() - 2] != '*' || in getCommentKind()
49 Comment[Comment.size() - 1] != '/') in getCommentKind()
[all …]
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/
DCommentsInserter.java27 import com.github.javaparser.ast.comments.Comment;
56 private void insertComments(CompilationUnit cu, TreeSet<Comment> comments) { in insertComments()
69 Comment firstComment = comments.iterator().next(); in insertComments()
82 void insertComments(Node node, TreeSet<Comment> commentsToAttribute) { in insertComments()
102 TreeSet<Comment> commentsInsideChild = new TreeSet<>(NODE_BY_BEGIN_POSITION); in insertComments()
116 Comment previousComment = null; in insertComments()
117 final List<Comment> attributedComments = new LinkedList<>(); in insertComments()
128 if (thing instanceof Comment) { in insertComments()
129 previousComment = (Comment) thing; in insertComments()
148 for (Comment c : commentsToAttribute) { in insertComments()
[all …]
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_src/proper_source/com/github/javaparser/ast/
DNode.java28 import com.github.javaparser.ast.comments.Comment;
53 private List<Comment> orphanComments = new LinkedList<Comment>();
60 private Comment comment;
122 public final Comment getComment() { in getComment()
178 public final void setComment(final Comment comment) { in setComment()
179 if (comment != null && (this instanceof Comment)) { in setComment()
273 public void addOrphanComment(Comment comment) { in addOrphanComment()
289 public List<Comment> getOrphanComments() { in getOrphanComments()
299 public List<Comment> getAllContainedComments() { in getAllContainedComments()
300 List<Comment> comments = new LinkedList<Comment>(); in getAllContainedComments()
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_new_src/javaparser-core/com/github/javaparser/ast/comments/
DComment.java35 public abstract class Comment extends Node { class
40 public Comment() { in Comment() method in Comment
43 public Comment(String content) { in Comment() method in Comment
47 public Comment(Range range, String content) { in Comment() method in Comment
67 public Comment setContent(String content) { in setContent()
90 public Comment setCommentedNode(Node commentedNode) in setCommentedNode()
99 if (commentedNode instanceof Comment) { in setCommentedNode()
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_src/expected_output/
Dcom_github_javaparser_JavaParser.txt75 …Line 312) List<Comment> comments = commentsCollection.getAll() ==> java.util.List<com.github.javap…
76 …ine 312) commentsCollection.getAll() ==> java.util.List<com.github.javaparser.ast.comments.Comment>
83 Line 319) comments.remove(0) ==> com.github.javaparser.ast.comments.Comment
104 …Line 369) List<Comment> commentsInsideChild = new LinkedList<Comment>() ==> java.util.List<com.git…
105 …Line 369) new LinkedList<Comment>() ==> java.util.LinkedList<com.github.javaparser.ast.comments.Co…
106 Line 370) Comment c ==> com.github.javaparser.ast.comments.Comment
107 Line 370) commentsToAttribute ==> java.util.List<com.github.javaparser.ast.comments.Comment>
112 …Line 381) List<Comment> attributedComments = new LinkedList<Comment>() ==> java.util.List<com.gith…
113 …Line 381) new LinkedList<Comment>() ==> java.util.LinkedList<com.github.javaparser.ast.comments.Co…
114 Line 382) Comment comment ==> com.github.javaparser.ast.comments.Comment
[all …]
Dcom_github_javaparser_ast_visitor_CloneVisitor.txt16 …Line 76) Comment comment = cloneNodes(_n.getComment(), _arg) ==> com.github.javaparser.ast.comment…
17 Line 76) cloneNodes(_n.getComment(), _arg) ==> com.github.javaparser.ast.comments.Comment
24 …Line 89) Comment comment = cloneNodes(_n.getComment(), _arg) ==> com.github.javaparser.ast.comment…
25 Line 89) cloneNodes(_n.getComment(), _arg) ==> com.github.javaparser.ast.comments.Comment
36 …Line 108) Comment comment = cloneNodes(_n.getComment(), _arg) ==> com.github.javaparser.ast.commen…
37 Line 108) cloneNodes(_n.getComment(), _arg) ==> com.github.javaparser.ast.comments.Comment
54 …Line 131) Comment comment = cloneNodes(_n.getComment(), _arg) ==> com.github.javaparser.ast.commen…
55 Line 131) cloneNodes(_n.getComment(), _arg) ==> com.github.javaparser.ast.comments.Comment
70 …Line 148) Comment comment = cloneNodes(_n.getComment(), _arg) ==> com.github.javaparser.ast.commen…
71 Line 148) cloneNodes(_n.getComment(), _arg) ==> com.github.javaparser.ast.comments.Comment
[all …]
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_new_src/javaparser-core/com/github/javaparser/ast/visitor/
DCloneVisitor.java46 import com.github.javaparser.ast.comments.Comment;
128 Comment comment = cloneNodes(_n.getComment(), _arg); in visit()
141 Comment comment = cloneNodes(_n.getComment(), _arg); in visit()
159 Comment comment = cloneNodes(_n.getComment(), _arg); in visit()
181 Comment comment = cloneNodes(_n.getComment(), _arg); in visit()
197 Comment comment = cloneNodes(_n.getComment(), _arg); in visit()
209 Comment comment = cloneNodes(_n.getComment(), _arg); in visit()
223 Comment comment = cloneNodes(_n.getComment(), _arg); in visit()
237 Comment comment = cloneNodes(_n.getComment(), _arg); in visit()
252 Comment comment = cloneNodes(_n.getComment(), _arg); in visit()
[all …]
/external/llvm-project/clang/lib/AST/
DRawCommentList.cpp25 std::pair<RawComment::CommentKind, bool> getCommentKind(StringRef Comment, in getCommentKind() argument
28 if ((Comment.size() < MinCommentLength) || Comment[0] != '/') in getCommentKind()
32 if (Comment[1] == '/') { in getCommentKind()
33 if (Comment.size() < 3) in getCommentKind()
36 if (Comment[2] == '/') in getCommentKind()
38 else if (Comment[2] == '!') in getCommentKind()
43 assert(Comment.size() >= 4); in getCommentKind()
47 if (Comment[1] != '*' || in getCommentKind()
48 Comment[Comment.size() - 2] != '*' || in getCommentKind()
49 Comment[Comment.size() - 1] != '/') in getCommentKind()
[all …]

12345678910>>...29