HomeSort by relevance Sort by last modified time
    Searched refs:Doc (Results 1 - 19 of 19) sorted by null

  /external/clang/unittests/Tooling/
ReplacementsYamlTest.cpp 22 TranslationUnitReplacements Doc;
24 Doc.MainSourceFile = "/path/to/source.cpp";
25 Doc.Context = "some context";
26 Doc.Replacements
28 Doc.Replacements
35 YAML << Doc;
86 // Make sure a doc can be read without the context field.
  /external/llvm/tools/yaml2obj/
yaml2elf.cpp 113 const ELFYAML::Object &Doc;
141 unsigned getDotSymTabSecNo() const { return Doc.Sections.size() + 1; }
142 unsigned getDotStrTabSecNo() const { return Doc.Sections.size() + 2; }
143 unsigned getDotShStrTabSecNo() const { return Doc.Sections.size() + 3; }
144 unsigned getSectionCount() const { return Doc.Sections.size() + 4; }
146 ELFState(const ELFYAML::Object &D) : Doc(D) {}
149 static int writeELF(raw_ostream &OS, const ELFYAML::Object &Doc);
165 Header.e_ident[EI_OSABI] = Doc.Header.OSABI;
167 Header.e_type = Doc.Header.Type;
168 Header.e_machine = Doc.Header.Machine
    [all...]
yaml2coff.cpp 529 COFFYAML::Object Doc;
530 YIn >> Doc;
536 COFFParser CP(Doc);
  /external/clang/include/clang/Tooling/
ReplacementsYaml.h 67 clang::tooling::TranslationUnitReplacements &Doc) {
68 Io.mapRequired("MainSourceFile", Doc.MainSourceFile);
69 Io.mapOptional("Context", Doc.Context, std::string());
70 Io.mapRequired("Replacements", Doc.Replacements);
  /cts/hostsidetests/appsecurity/test-apps/DocumentProvider/src/com/android/cts/documentprovider/
MyDocumentsProvider.java 76 row.add(Root.COLUMN_DOCUMENT_ID, "doc:local");
82 row.add(Root.COLUMN_DOCUMENT_ID, "doc:create");
87 private Map<String, Doc> mDocs = new HashMap<>();
89 private Doc mLocalRoot;
90 private Doc mCreateRoot;
92 private Doc buildDoc(String docId, String displayName, String mimeType) {
93 final Doc doc = new Doc(); local
94 doc.docId = docId
186 final Doc doc = buildDoc(docId, displayName, mimeType); local
228 final Doc doc = mDocs.get(documentId); local
    [all...]
  /external/llvm/include/llvm/Support/
YAMLParser.h 156 std::unique_ptr<Document> &Doc;
519 document_iterator() : Doc(nullptr) {}
520 document_iterator(std::unique_ptr<Document> &D) : Doc(&D) {}
526 return Doc == Other.Doc;
531 assert(Doc && "incrementing iterator past the end.");
532 if (!(*Doc)->skip()) {
533 Doc->reset(nullptr);
535 Stream &S = (*Doc)->stream;
536 Doc->reset(new Document(S))
    [all...]
  /external/fonttools/
README.md 14 See [install.txt](https://github.com/behdad/fonttools/blob/master/Doc/install.txt) in the 'Doc' subdirectory for instructions on how to build and install TTX/FontTools from the sources.
21 See [documentation.html](https://github.com/behdad/fonttools/blob/master/Doc/documentation.html) in the "Doc" subdirectory for TTX usage instructions and information about the TTX file format.
  /external/chromium-trace/trace-viewer/third_party/webapp2/docs/_themes/webapp2/
pygapp2.py 37 String.Doc: "nobold noitalic #080",
  /external/llvm/lib/Support/
YAMLParser.cpp     [all...]
  /external/skia/experimental/PdfViewer/pdfparser/native/pdfapi/
SkPdfJavascriptDictionary_autogen.cpp 11 bool SkPdfJavascriptDictionary::isBeforeAString(SkPdfNativeDoc* doc) {
13 if (doc) {ret = doc->resolveReference(ret);}
17 SkString SkPdfJavascriptDictionary::getBeforeAsString(SkPdfNativeDoc* doc) {
19 if (doc) {ret = doc->resolveReference(ret);}
20 if ((ret != NULL && ret->isAnyString()) || (doc == NULL && ret != NULL && ret->isReference())) return ret->stringValue2();
25 bool SkPdfJavascriptDictionary::isBeforeAStream(SkPdfNativeDoc* doc) {
27 if (doc) {ret = doc->resolveReference(ret);
    [all...]
SkPdfJavascriptDictionary_autogen.h     [all...]
  /external/clang/utils/TableGen/
ClangAttrEmitter.cpp     [all...]
  /external/jdiff/src/jdiff/
RootDocToXML.java 117 xsdFile.println(" <xsd:element name=\"doc\" type=\"xsd:string\" minOccurs='0' maxOccurs='1'/>");
128 xsdFile.println(" <xsd:element name=\"doc\" type=\"xsd:string\" minOccurs='0' maxOccurs='1'/>");
147 xsdFile.println(" <xsd:element name=\"doc\" type=\"xsd:string\" minOccurs='0' maxOccurs='1'/>");
172 xsdFile.println(" <xsd:element name=\"doc\" type=\"xsd:string\" minOccurs='0' maxOccurs='1'/>");
188 xsdFile.println(" <xsd:element name=\"doc\" type=\"xsd:string\" minOccurs='0' maxOccurs='1'/>");
269 // Check for an exclude tag in the package doc block, but not
383 Tag[] ta = ((Doc)ped).tags("deprecated");
389 System.out.println("Text is: " + ((Doc)ped).getRawCommentText());
651 /* No need for this any longer, since doc block text is in an CDATA element
683 public boolean shownElement(Doc doc, String visLevel)
    [all...]
  /external/doclava/src/com/google/doclava/
Doclava.java     [all...]
  /external/clang/tools/c-index-test/
c-index-test.c 549 xmlDocPtr Doc;
563 Doc = xmlParseDoc((const xmlChar *) Str);
565 if (!Doc) {
572 status = xmlRelaxNGValidateDoc(ValidationCtxt, Doc);
582 xmlFreeDoc(Doc);
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
pydoc.py 82 """Get the doc string or comments for an object."""
86 def splitdoc(doc):
87 """Split a doc string into a synopsis line (if any) and the rest."""
88 lines = split(strip(doc), '\n')
318 class Doc:
416 class HTMLDoc(Doc):
658 doc = self.markup(getdoc(object), self.preformat, fdict, cdict)
659 doc = doc and '<tt>%s</tt>' % doc
1529 def doc(thing, title='Python Library Documentation: %s', forceload=0): function
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
pydoc.py 82 """Get the doc string or comments for an object."""
86 def splitdoc(doc):
87 """Split a doc string into a synopsis line (if any) and the rest."""
88 lines = split(strip(doc), '\n')
318 class Doc:
416 class HTMLDoc(Doc):
658 doc = self.markup(getdoc(object), self.preformat, fdict, cdict)
659 doc = doc and '<tt>%s</tt>' % doc
1529 def doc(thing, title='Python Library Documentation: %s', forceload=0): function
    [all...]
  /external/chromium-trace/trace-viewer/tracing/third_party/mocha/
mocha.js     [all...]
  /prebuilts/tools/common/m2/repository/net/sourceforge/saxon/saxon/9.1.0.8/
saxon-9.1.0.8.jar 

Completed in 1258 milliseconds