Searched refs:Comment (Results 76 - 100 of 229) sorted by relevance

12345678910

/external/clang/test/Misc/
H A Dast-dump-decl.cpp489 namespace Comment { namespace
/external/apache-xml/src/main/java/org/apache/xml/serializer/
H A DTreeWalker.java27 import org.w3c.dom.Comment;
289 String data = ((Comment) node).getData();
/external/apache-xml/src/main/java/org/apache/xml/utils/
H A DTreeWalker.java25 import org.w3c.dom.Comment;
315 String data = ((Comment) node).getData();
H A DUnImplNode.java28 import org.w3c.dom.Comment;
860 public Comment createComment(String data)
/external/chromium_org/third_party/WebKit/Source/core/html/parser/
H A DHTMLConstructionSite.cpp32 #include "core/dom/Comment.h"
579 ASSERT(token->type() == HTMLToken::Comment);
580 attachLater(currentNode(), Comment::create(ownerDocumentForCurrentNode(), token->comment()));
585 ASSERT(token->type() == HTMLToken::Comment);
587 attachLater(m_attachmentRoot, Comment::create(*m_document, token->comment()));
592 ASSERT(token->type() == HTMLToken::Comment);
594 attachLater(parent, Comment::create(parent->document(), token->comment()));
/external/clang/lib/Frontend/
H A DVerifyDiagnosticConsumer.cpp526 SourceRange Comment) {
533 SourceLocation CommentBegin = Comment.getBegin();
536 StringRef C(CommentRaw, SM.getCharacterData(Comment.getEnd()) - CommentRaw);
605 std::string Comment = RawLex.getSpelling(Tok, SM, LangOpts); local
606 if (Comment.empty()) continue;
609 if (ParseDirective(Comment, nullptr, SM, nullptr, Tok.getLocation(),
525 HandleComment(Preprocessor &PP, SourceRange Comment) argument
/external/doclava/src/com/google/doclava/
H A DComment.java23 public class Comment { class
43 public Comment(String text, ContainerInfo base, SourcePositionInfo sp) { method in class:Comment
338 Comment c = tag.description();
/external/chromium_org/third_party/WebKit/Source/core/editing/
H A Dmarkup.cpp41 #include "core/dom/Comment.h"
675 static bool findNodesSurroundingContext(Document* document, RefPtrWillBeRawPtr<Comment>& nodeBeforeContext, RefPtrWillBeRawPtr<Comment>& nodeAfterContext)
690 static void trimFragment(DocumentFragment* fragment, Comment* nodeBeforeContext, Comment* nodeAfterContext)
732 RefPtrWillBeRawPtr<Comment> nodeBeforeContext = nullptr;
733 RefPtrWillBeRawPtr<Comment> nodeAfterContext = nullptr;
/external/clang/lib/Sema/
H A DSema.cpp1159 void Sema::ActOnComment(SourceRange Comment) { argument
1161 SourceMgr.isInSystemHeader(Comment.getBegin()))
1163 RawComment RC(SourceMgr, Comment, false,
1166 SourceRange MagicMarkerRange(Comment.getBegin(),
1167 Comment.getBegin().getLocWithOffset(3));
1180 Diag(Comment.getBegin(), diag::warn_not_a_doxygen_trailing_member_comment) <<
H A DCodeCompleteConsumer.cpp394 void CodeCompletionBuilder::addBriefComment(StringRef Comment) { argument
395 BriefComment = Allocator.CopyString(Comment);
/external/chromium_org/ppapi/generators/
H A Didl_c_header.py19 from idl_c_proto import CGen, GetNodeComments, CommentLines, Comment namespace
226 assert(fileinfo.IsA('Comment'))
324 out.Write('%s\n' % Comment(fileinfo, prefix='*\n @file'))
H A Didl_c_proto.py43 def Comment(node, prefix=None, tabs=0): function
44 # Generate a comment block from the provided Comment node.
64 for doc in node.GetListOf('Comment'):
65 comment_txt += Comment(doc, tabs=tabs)
659 # Copyright and Comment
762 instr = node.GetOneOf('Comment')
/external/chromium_org/content/test/
H A Dmock_webclipboard_impl.cc112 std::vector<gfx::PNGCodec::Comment>(),
/external/chromium_org/third_party/mesa/src/src/mesa/program/
H A Dprog_instruction.h411 const char *Comment; member in struct:prog_instruction
/external/mesa3d/src/mesa/program/
H A Dprog_instruction.h411 const char *Comment; member in struct:prog_instruction
/external/chromium_org/chrome/browser/printing/
H A Dprint_preview_pdf_generated_browsertest.cc560 gfx::PNGCodec::Comment hash_comment(comment_title,
562 std::vector<gfx::PNGCodec::Comment> comments;
/external/chromium_org/content/shell/browser/
H A Dwebkit_test_controller.cc543 std::vector<gfx::PNGCodec::Comment> comments;
544 comments.push_back(gfx::PNGCodec::Comment("checksum", actual_pixel_hash));
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DDocument.idl37 Comment createComment(DOMString data);
/external/clang/lib/Lex/
H A DPreprocessor.cpp259 llvm::errs() << "\n Comment Handlers: "
797 CommentHandlers.end() && "Comment handler already registered");
804 assert(Pos != CommentHandlers.end() && "Comment handler not registered");
808 bool Preprocessor::HandleComment(Token &result, SourceRange Comment) { argument
813 if ((*H)->HandleComment(*this, Comment))
/external/llvm/lib/MC/
H A DMCELFStreamer.cpp300 const MCSection *Comment = getAssembler().getContext().getELFSection( local
304 SwitchSection(Comment);
/external/llvm/utils/vim/
H A Dllvm.vim93 HiLink llvmComment Comment
/external/protobuf/editors/
H A Dproto.vim100 HiLink pbComment Comment
/external/chromium_org/content/common/gpu/client/
H A Dgl_helper_benchmark.cc100 std::vector<gfx::PNGCodec::Comment>(),
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLViewSourceDocument.cpp114 case HTMLToken::Comment:
/external/chromium_org/tools/json_schema_compiler/
H A Dcpp_type_generator.py252 c.Comment(property.description)

Completed in 5091 milliseconds

12345678910