HomeSort by relevance Sort by last modified time
    Searched defs:Doc (Results 1 - 21 of 21) 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/
yaml2obj.cpp 47 yaml::YamlObjectFile Doc;
48 YIn >> Doc;
54 if (Doc.Elf)
55 return yaml2elf(*Doc.Elf, Out);
56 if (Doc.Coff)
57 return yaml2coff(*Doc.Coff, Out);
58 if (Doc.MachO || Doc.FatMachO)
59 return yaml2macho(Doc, Out);
yaml2elf.cpp 115 const ELFYAML::Object &Doc;
146 unsigned getDotSymTabSecNo() const { return Doc.Sections.size() + 1; }
147 unsigned getDotStrTabSecNo() const { return Doc.Sections.size() + 2; }
148 unsigned getDotShStrTabSecNo() const { return Doc.Sections.size() + 3; }
149 unsigned getSectionCount() const { return Doc.Sections.size() + 4; }
151 ELFState(const ELFYAML::Object &D) : Doc(D) {}
154 static int writeELF(raw_ostream &OS, const ELFYAML::Object &Doc);
170 Header.e_ident[EI_OSABI] = Doc.Header.OSABI;
172 Header.e_type = Doc.Header.Type;
173 Header.e_machine = Doc.Header.Machine
    [all...]
  /art/tools/ahat/src/
Doc.java 24 interface Doc extends AutoCloseable {
  /external/llvm/unittests/Support/
YAMLParserTest.cpp 162 yaml::Document &Doc = *Stream.begin();
163 yaml::MappingNode *Map = cast<yaml::MappingNode>(Doc.getRoot());
  /external/llvm/include/llvm/Support/
YAMLParser.h 157 std::unique_ptr<Document> &Doc;
564 document_iterator() : Doc(nullptr) {}
565 document_iterator(std::unique_ptr<Document> &D) : Doc(&D) {}
571 return Doc == Other.Doc;
576 assert(Doc && "incrementing iterator past the end.");
577 if (!(*Doc)->skip()) {
578 Doc->reset(nullptr);
580 Stream &S = (*Doc)->stream;
581 Doc->reset(new Document(S))
    [all...]
  /cts/hostsidetests/appsecurity/test-apps/DocumentProvider/src/com/android/cts/documentprovider/
MyDocumentsProvider.java 92 row.add(Root.COLUMN_DOCUMENT_ID, "doc:local");
98 row.add(Root.COLUMN_DOCUMENT_ID, "doc:create");
106 row.add(Root.COLUMN_DOCUMENT_ID, "doc:local");
112 private Map<String, Doc> mDocs = new HashMap<>();
114 private Doc mLocalRoot;
115 private Doc mCreateRoot;
118 private Doc buildDoc(String docId, String displayName, String mimeType,
120 final Doc doc = new Doc(); local
243 final Doc doc = buildDoc(docId, displayName, mimeType, null); local
258 final Doc doc = mDocs.get(documentId); local
270 final Doc doc = mDocs.get(documentId); local
278 final Doc doc = mDocs.get(sourceDocumentId); local
293 final Doc doc = mDocs.get(sourceDocumentId); local
357 final Doc doc = mDocs.get(documentId); local
430 final Doc doc = mDocs.get(documentId); local
442 final Doc doc = mDocs.get(documentId); local
465 final Doc doc = mDocs.get(documentId); local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/PyMod-2.7.2/Lib/
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
1512 def doc(thing, title='Python Library Documentation: %s', forceload=0): function
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/PyMod-2.7.10/Lib/
pydoc.py 96 """Get the doc string or comments for an object."""
101 def splitdoc(doc):
102 """Split a doc string into a synopsis line (if any) and the rest."""
103 lines = split(strip(doc), '\n')
363 class Doc:
461 class HTMLDoc(Doc):
709 doc = self.markup(getdoc(object), self.preformat, fdict, cdict)
710 doc = doc and '<tt>%s</tt>' % doc
1592 def doc(thing, title='Python Library Documentation: %s', forceload=0): function
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
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
1508 def doc(thing, title='Python Library Documentation: %s', forceload=0): function
    [all...]
  /prebuilts/gdb/darwin-x86/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/gdb/linux-x86/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/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/clang/tools/c-index-test/
c-index-test.c 566 xmlDocPtr Doc;
580 Doc = xmlParseDoc((const xmlChar *) Str);
582 if (!Doc) {
589 status = xmlRelaxNGValidateDoc(ValidationCtxt, Doc);
599 xmlFreeDoc(Doc);
    [all...]
  /external/dagger2/lib/
google-java-format-0.1-20151017.042846-2.jar 
  /prebuilts/tools/common/google-java-format/
google-java-format-1.0-all-deps.jar 
google-java-format-all-deps.jar 
  /prebuilts/tools/common/m2/repository/com/google/dagger/dagger-compiler/2.6/
dagger-compiler-2.6.jar 
  /prebuilts/tools/common/m2/repository/com/google/dagger/dagger-compiler/2.7/
dagger-compiler-2.7.jar 
  /prebuilts/tools/common/m2/repository/net/sourceforge/saxon/saxon/9.1.0.8/
saxon-9.1.0.8.jar 

Completed in 559 milliseconds