HomeSort by relevance Sort by last modified time
    Searched refs:Comment (Results 126 - 150 of 231) sorted by null

1 2 3 4 56 7 8 910

  /external/chromium_org/tools/json_schema_compiler/
cpp_type_generator.py 255 c.Comment(property.description)
  /external/v8/src/ia32/
lithium-codegen-ia32.h 165 void Comment(const char* format, ...);
  /external/v8/src/x64/
lithium-codegen-x64.h 156 void Comment(const char* format, ...);
  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
DTMNodeProxy.java 31 import org.w3c.dom.Comment;
65 ProcessingInstruction, Comment, DocumentFragment
671 public final Comment createComment(String data)
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/serializer/dom3/
DOM3TreeWalker.java 40 import org.w3c.dom.Comment;
412 serializeComment((Comment) node);
566 * Serializes a Comment Node.
568 * @param node The Comment Node to serialize
570 protected void serializeComment(Comment node) throws SAXException {
587 fLexicalHandler.comment(data.toCharArray(), 0, data.length());
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/editing/
MarkupAccumulator.cpp 35 #include "core/dom/Comment.h"
321 void MarkupAccumulator::appendComment(StringBuilder& result, const String& comment)
323 // FIXME: Comment content is not escaped, but XMLSerializer (and possibly other callers) should raise an exception if it includes "-->".
325 result.append(comment);
488 appendComment(result, static_cast<const Comment*>(node)->data());
  /external/chromium_org/v8/src/arm/
lithium-codegen-arm.h 218 void FPRINTF_CHECKING Comment(const char* format, ...);
lithium-codegen-arm.cc 100 void LCodeGen::Comment(const char* format, ...) {
195 Comment(";;; Save clobbered callee double registers");
210 Comment(";;; Allocate local context");
245 Comment(";;; End allocate local context");
271 Comment(";;; <@%d,#%d> %s",
296 Comment(";;; <@%d,#%d> "
303 Comment(";;; Build frame");
311 Comment(";;; Deferred code");
315 Comment(";;; Destroy frame");
347 Comment(";;; -------------------- Jump table --------------------")
    [all...]
  /external/chromium_org/v8/src/ia32/
lithium-codegen-ia32.h 216 void FPRINTF_CHECKING Comment(const char* format, ...);
lithium-codegen-ia32.cc 122 void LCodeGen::Comment(const char* format, ...) {
259 Comment(";;; Store dynamic frame alignment tag for spilled doubles");
271 Comment(";;; Save clobbered callee double registers");
288 Comment(";;; Allocate local context");
322 Comment(";;; End allocate local context");
350 Comment(";;; <@%d,#%d> %s",
376 Comment(";;; -------------------- Jump table --------------------");
384 Comment(";;; jump table entry %d.", i);
386 Comment(";;; jump table entry %d: deoptimization bailout %d.", i, id);
431 Comment(";;; <@%d,#%d>
    [all...]
  /external/chromium_org/v8/src/mips/
lithium-codegen-mips.h 218 void FPRINTF_CHECKING Comment(const char* format, ...);
lithium-codegen-mips.cc 100 void LCodeGen::Comment(const char* format, ...) {
194 Comment(";;; Save clobbered callee double registers");
209 Comment(";;; Allocate local context");
239 Comment(";;; End allocate local context");
265 Comment(";;; <@%d,#%d> %s",
290 Comment(";;; <@%d,#%d> "
297 Comment(";;; Build frame");
305 Comment(";;; Deferred code");
309 Comment(";;; Destroy frame");
337 Comment(";;; -------------------- Jump table --------------------")
    [all...]
  /external/chromium_org/v8/src/x64/
lithium-codegen-x64.h 182 void FPRINTF_CHECKING Comment(const char* format, ...);
lithium-codegen-x64.cc 105 void LCodeGen::Comment(const char* format, ...) {
203 Comment(";;; Save clobbered callee double registers");
219 Comment(";;; Allocate local context");
249 Comment(";;; End allocate local context");
275 Comment(";;; <@%d,#%d> %s",
293 Comment(";;; -------------------- Jump table --------------------");
301 Comment(";;; jump table entry %d.", i);
303 Comment(";;; jump table entry %d: deoptimization bailout %d.", i, id);
340 Comment(";;; <@%d,#%d> "
347 Comment(";;; Build frame")
    [all...]
  /external/clang/include/clang/Sema/
CodeCompleteConsumer.h 236 /// expected, e.g., a comment or string literal.
439 /// \brief A brief documentation comment attached to the declaration of
628 void addBriefComment(StringRef Comment);
    [all...]
  /external/v8/src/arm/
lithium-codegen-arm.h 177 void Comment(const char* format, ...);
  /external/v8/src/mips/
lithium-codegen-mips.h 174 void Comment(const char* format, ...);
  /external/clang/lib/AST/
ASTContext.cpp 19 #include "clang/AST/Comment.h"
103 // decl-specifier-seq of some other declaration, it doesn't get comment
146 // can't find the comment.
150 // Find the comment that occurs just after this declaration.
151 ArrayRef<RawComment *>::iterator Comment;
153 // When searching for comments during parsing, the comment we are looking
168 Comment = MaybeBeforeDecl + 1;
169 assert(Comment == std::lower_bound(RawComments.begin(), RawComments.end(),
173 Comment = std::lower_bound(RawComments.begin(), RawComments.end(),
182 // First check whether we have a trailing comment
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/
Document.idl 35 Comment createComment([Default=Undefined] optional DOMString data);
Document.h 71 class Comment;
315 PassRefPtr<Comment> createComment(const String& data);
    [all...]
  /external/chromium_org/v8/test/mjsunit/
debug-setbreakpoint.js 122 // Set a break point on a line with the comment, and check that actual position
123 // is the next line after the comment.
144 // Comment.
  /external/clang/include/clang/Lex/
Preprocessor.h 192 /// \brief Tracks all of the comment handlers that the client registered
615 /// \brief Add the specified comment handler to the preprocessor.
618 /// \brief Remove the specified comment handler.
752 /// LexNonComment - Lex a token. If it's a comment, keep lexing until we get
753 /// something not a comment. This is useful in -E -C mode where comments
758 while (Result.getKind() == tok::comment);
779 while (Result.getKind() == tok::comment);
    [all...]
  /external/v8/test/mjsunit/
debug-setbreakpoint.js 122 // Set a break point on a line with the comment, and check that actual position
123 // is the next line after the comment.
144 // Comment.
  /external/chromium_org/ppapi/generators/
idl_thunk.py 19 from idl_c_proto import CGen, GetNodeComments, CommentLines, Comment
444 # Wrap the From ... modified ... comment if it would be >80 characters.
  /external/chromium_org/third_party/WebKit/Source/core/xml/parser/
XMLDocumentParser.cpp 45 #include "core/dom/Comment.h"
238 parser->comment(m_text);
1173 void XMLDocumentParser::comment(const String& text) function in class:WebCore::XMLDocumentParser
    [all...]

Completed in 939 milliseconds

1 2 3 4 56 7 8 910