Searched refs:Doc (Results 1 - 8 of 8) sorted by relevance

/external/llvm/tools/yaml2obj/
H A Dyaml2elf.cpp242 static int writeELF(raw_ostream &OS, const ELFYAML::Object &Doc) { argument
247 const ELFYAML::FileHeader &Hdr = Doc.Header;
273 const std::vector<ELFYAML::Section> &Sections = Doc.Sections;
344 handleSymtabSectionHeader<ELFT>(Doc.Symbols, State, SymtabSHeader);
366 static bool is64Bit(const ELFYAML::Object &Doc) { argument
367 return Doc.Header.Class == ELFYAML::ELF_ELFCLASS(ELF::ELFCLASS64);
370 static bool isLittleEndian(const ELFYAML::Object &Doc) { argument
371 return Doc.Header.Data == ELFYAML::ELF_ELFDATA(ELF::ELFDATA2LSB);
376 ELFYAML::Object Doc; local
377 YIn >> Doc; local
[all...]
H A Dyaml2coff.cpp266 COFFYAML::Object Doc; local
267 YIn >> Doc; local
273 COFFParser CP(Doc);
/external/llvm/include/llvm/Support/
H A DYAMLParser.h151 OwningPtr<Document> &Doc; member in class:llvm::yaml::Node
512 document_iterator() : Doc(0) {}
513 document_iterator(OwningPtr<Document> &D) : Doc(&D) {}
519 return Doc == Other.Doc;
526 assert(Doc != 0 && "incrementing iterator past the end.");
527 if (!(*Doc)->skip()) {
528 Doc->reset(0);
530 Stream &S = (*Doc)->stream;
531 Doc
549 OwningPtr<Document> *Doc; member in class:llvm::yaml::document_iterator
[all...]
/external/llvm/lib/Support/
H A DYAMLParser.cpp1592 : Doc(D)
1600 return Doc->peekNext();
1604 return Doc->getNext();
1608 return Doc->parseBlockNode();
1612 return Doc->NodeAllocator;
1616 Doc->setError(Msg, Tok);
1620 return Doc->failed();
1810 return Key = new (getAllocator()) NullNode(Doc);
1819 return Key = new (getAllocator()) NullNode(Doc);
1831 return Value = new (getAllocator()) NullNode(Doc);
[all...]
/external/jdiff/src/jdiff/
H A DRootDocToXML.java383 Tag[] ta = ((Doc)ped).tags("deprecated");
389 System.out.println("Text is: " + ((Doc)ped).getRawCommentText());
683 public boolean shownElement(Doc doc, String visLevel) {
719 public String stripNonPrintingChars(String s, Doc doc) {
813 String rct = ((Doc)ped).getRawCommentText();
815 rct = stripNonPrintingChars(rct, (Doc)ped);
924 rct = stripNonPrintingChars(rct, (Doc)pd);
/external/doclava/src/com/google/doclava/
H A DDoclava.java1299 private static boolean hasHideAnnotation(Doc doc) {
1307 private static boolean isHidden(Doc doc) {
1355 if ((entry instanceof Doc) && isHidden((Doc) entry)) {
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/cm/
H A Dcodemirror.js69 if (typeof doc == "string") doc = new Doc(options.value, options.mode);
3378 Doc.prototype[name] = func;
4726 var Doc = CodeMirror.Doc = function(text, mode, firstLine) {
4727 if (!(this instanceof Doc)) return new Doc(text, mode, firstLine);
4746 Doc.prototype = createObj(BranchChunk.prototype, {
4747 constructor: Doc,
4915 var doc = new Doc(getLines(this, this.first, this.first + this.size), this.modeOption, this.first);
4931 var copy = new Doc(getLine
[all...]
/external/clang/tools/c-index-test/
H A Dc-index-test.c481 xmlDocPtr Doc; local
498 Doc = xmlParseDoc((const xmlChar *) Str);
500 if (!Doc) {
507 status = xmlRelaxNGValidateDoc(ValidationCtxt, Doc);
517 xmlFreeDoc(Doc);

Completed in 327 milliseconds