Home
last modified time | relevance | path

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

12345678910>>...15

/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/selinux/policycoreutils/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/llvm/lib/CodeGen/AsmPrinter/
DByteStreamer.h34 virtual void EmitInt8(uint8_t Byte, const Twine &Comment = "") = 0;
35 virtual void EmitSLEB128(uint64_t DWord, const Twine &Comment = "") = 0;
36 virtual void EmitULEB128(uint64_t DWord, const Twine &Comment = "") = 0;
45 void EmitInt8(uint8_t Byte, const Twine &Comment) override { in EmitInt8() argument
46 AP.OutStreamer->AddComment(Comment); in EmitInt8()
49 void EmitSLEB128(uint64_t DWord, const Twine &Comment) override { in EmitSLEB128() argument
50 AP.OutStreamer->AddComment(Comment); in EmitSLEB128()
53 void EmitULEB128(uint64_t DWord, const Twine &Comment) override { in EmitULEB128() argument
54 AP.OutStreamer->AddComment(Comment); in EmitULEB128()
64 void EmitInt8(uint8_t Byte, const Twine &Comment) override { in EmitInt8() argument
[all …]
DDwarfExpression.h44 virtual void EmitOp(uint8_t Op, const char *Comment = nullptr) = 0;
54 void AddReg(int DwarfReg, const char *Comment = nullptr);
115 void EmitOp(uint8_t Op, const char *Comment = nullptr) override;
129 void EmitOp(uint8_t Op, const char *Comment = nullptr) override;
/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 …]
DComment.cpp22 const char *Comment::getCommentKindName() const { in getCommentKindName()
41 good implements_child_begin_end(Comment::child_iterator (T::*)() const) { in implements_child_begin_end()
47 Comment::child_iterator (Comment::*)() const) { in implements_child_begin_end()
69 Comment::child_iterator Comment::child_begin() const { in child_begin()
83 Comment::child_iterator Comment::child_end() const { in child_end()
/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/clang/tools/libclang/
DCXComment.cpp46 const Comment *C = getASTNode(CXC); in clang_Comment_getKind()
51 case Comment::NoCommentKind: in clang_Comment_getKind()
54 case Comment::TextCommentKind: in clang_Comment_getKind()
57 case Comment::InlineCommandCommentKind: in clang_Comment_getKind()
60 case Comment::HTMLStartTagCommentKind: in clang_Comment_getKind()
63 case Comment::HTMLEndTagCommentKind: in clang_Comment_getKind()
66 case Comment::ParagraphCommentKind: in clang_Comment_getKind()
69 case Comment::BlockCommandCommentKind: in clang_Comment_getKind()
72 case Comment::ParamCommandCommentKind: in clang_Comment_getKind()
75 case Comment::TParamCommandCommentKind: in clang_Comment_getKind()
[all …]
DCXComment.h31 static inline CXComment createCXComment(const comments::Comment *C, in createCXComment()
39 static inline const comments::Comment *getASTNode(CXComment CXC) { in getASTNode()
40 return static_cast<const comments::Comment *>(CXC.ASTNode); in getASTNode()
45 const comments::Comment *C = getASTNode(CXC); in getASTNodeAs()
/external/clang/include/clang/AST/
DComment.h53 class Comment {
62 friend class Comment; variable
197 Comment(CommentKind K, in Comment() function
228 typedef Comment * const *child_iterator;
242 class InlineContentComment : public Comment {
247 Comment(K, LocBegin, LocEnd) { in InlineContentComment()
252 static bool classof(const Comment *C) { in classof()
279 static bool classof(const Comment *C) { in classof()
337 static bool classof(const Comment *C) { in classof()
396 static bool classof(const Comment *C) { in classof()
[all …]
/external/chromium-trace/catapult/third_party/vinn/third_party/parse5/test/data/tokenization/
Dtest3.test109 "output":["ParseError", ["Comment", ""]]},
113 "output":["ParseError", ["Comment", "\uFFFD"]]},
117 "output":["ParseError", ["Comment", "\u0009"]]},
121 "output":["ParseError", ["Comment", "\u000A"]]},
125 "output":["ParseError", "ParseError", ["Comment", "\u000B"]]},
129 "output":["ParseError", ["Comment", "\u000C"]]},
133 "output":["ParseError", ["Comment", " "]]},
137 "output":["ParseError", ["Comment", "!"]]},
141 "output":["ParseError", ["Comment", "\""]]},
145 "output":["ParseError", ["Comment", "&"]]},
[all …]
Dtest1.test21 "output":["ParseError", ["Comment", "DOC"]]},
73 "output":[["Comment", "comment"]]},
75 {"description":"Comment, Central dash no space",
77 "output":["ParseError", ["Comment", "-"]]},
79 {"description":"Comment, two central dashes",
81 "output":["ParseError", ["Comment", " --comment "]]},
85 "output":["ParseError", ["Comment", "comment"]]},
89 "output":["ParseError", ["Comment", "-"]]},
93 "output":["ParseError", ["Comment", ""]]},
97 "output":["ParseError", ["Comment", ""]]},
[all …]
/external/doclava/src/com/google/doclava/
DDocInfo.java72 mComment = new Comment(mRawCommentText, parent(), mPosition); in setRawCommentText()
77 public Comment comment() { in comment()
79 mComment = new Comment(mRawCommentText, parent(), mPosition); in comment()
93 mComment = new Comment(mRawCommentText, parent(), mPosition); in setPosition()
137 Comment mComment;
/external/jsoncpp/test/data/
Dtest_comment_01.json4 { "a" : "aaa" }, // Comment for a
5 { "b" : "bbb" }, // Comment for b
6 { "c" : "ccc" } // Comment for c
/external/icu/tools/srcgen/currysrc/src/main/java/com/google/currysrc/processors/
DBaseModifyCommentScanner.java23 import org.eclipse.jdt.core.dom.Comment;
41 List<Comment> comments = cu.getCommentList(); in process()
43 for (Comment comment : Lists.reverse(comments)) { in process()
60 protected abstract String processComment(Reporter reporter, Comment commentNode, in processComment()
/external/icu/icu4j/demos/.settings/
Dorg.eclipse.jdt.ui.prefs6Comment for getter method" enabled\="true" id\="org.eclipse.jdt.ui.text.codetemplates.gettercommen…
/external/icu/icu4j/main/classes/core/.settings/
Dorg.eclipse.jdt.ui.prefs9Comment for getter method" enabled\="true" id\="org.eclipse.jdt.ui.text.codetemplates.gettercommen…
/external/icu/icu4j/main/tests/core/.settings/
Dorg.eclipse.jdt.ui.prefs9Comment for getter method" enabled\="true" id\="org.eclipse.jdt.ui.text.codetemplates.gettercommen…
/external/clang/lib/Index/
DCommentToXML.cpp100 for (Comment::child_iterator I = C->child_begin(), E = C->child_end(); in FullCommentParts()
102 const Comment *Child = *I; in FullCommentParts()
106 case Comment::NoCommentKind: in FullCommentParts()
109 case Comment::ParagraphCommentKind: { in FullCommentParts()
120 case Comment::BlockCommandCommentKind: { in FullCommentParts()
143 case Comment::ParamCommandCommentKind: { in FullCommentParts()
155 case Comment::TParamCommandCommentKind: { in FullCommentParts()
167 case Comment::VerbatimBlockCommentKind: in FullCommentParts()
171 case Comment::VerbatimLineCommentKind: { in FullCommentParts()
179 case Comment::TextCommentKind: in FullCommentParts()
[all …]
/external/icu/icu4j/main/classes/regiondata/.settings/
Dorg.eclipse.jdt.ui.prefs10Comment for getter method" enabled\="true" id\="org.eclipse.jdt.ui.text.codetemplates.gettercommen…
/external/icu/icu4j/main/tests/packaging/.settings/
Dorg.eclipse.jdt.ui.prefs10Comment for getter method" enabled\="true" id\="org.eclipse.jdt.ui.text.codetemplates.gettercommen…
/external/icu/icu4j/tools/build/.settings/
Dorg.eclipse.jdt.ui.prefs10Comment for getter method" enabled\="true" id\="org.eclipse.jdt.ui.text.codetemplates.gettercommen…
/external/icu/icu4j/main/tests/translit/.settings/
Dorg.eclipse.jdt.ui.prefs10Comment for getter method" enabled\="true" id\="org.eclipse.jdt.ui.text.codetemplates.gettercommen…
/external/icu/icu4j/samples/.settings/
Dorg.eclipse.jdt.ui.prefs10Comment for getter method" enabled\="true" id\="org.eclipse.jdt.ui.text.codetemplates.gettercommen…

12345678910>>...15