| /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...] |
| /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/ |
| descrobject.c | 336 if (descr->d_member->doc == NULL) {
340 return PyString_FromString(descr->d_member->doc);
351 if (descr->d_getset->doc == NULL) {
355 return PyString_FromString(descr->d_getset->doc);
366 if (descr->d_base->doc == NULL) {
370 return PyString_FromString(descr->d_base->doc);
1217 PyObject *new, *type, *doc; local 1253 PyObject *get = NULL, *set = NULL, *del = NULL, *doc = NULL; local [all...] |
| /external/apache-xml/src/main/java/org/apache/xalan/transformer/ |
| TransformerIdentityImpl.java | 202 Document doc; local 208 doc = (Node.DOCUMENT_NODE == type) 230 doc = db.newDocument(); 237 outputNode = doc; 245 ? new DOMBuilder(doc, (DocumentFragment) outputNode) 246 : new DOMBuilder(doc, outputNode); [all...] |
| /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/dom2dtm/ |
| DOM2DTM.java | 1277 Document doc; local 1308 Document doc; local 1348 Document doc = (m_root.getNodeType() == Node.DOCUMENT_NODE) local 1417 Document doc = (m_root.getNodeType() == Node.DOCUMENT_NODE) local [all...] |
| /external/curl/tests/server/ |
| rtspd.c | 341 static char doc[MAXDOCNAMELEN]; local 358 doc, 379 ptr = strrchr(doc, '/'); 386 if((strlen(doc) + strlen(request)) < 200) 388 request, doc, prot_str, prot_major, prot_minor); 544 doc, &prot_major, &prot_minor) == 3) { 547 doc, prot_major, prot_minor); 553 if(!strncmp(doc, "bad", 3)) 556 else if(!strncmp(doc, "test", 4)) { 559 char *portp = strchr(doc, ':') [all...] |
| /external/elfutils/src/ |
| strip.c | 92 static const char doc[] = N_("Discard symbols from object files."); variable 103 options, parse_opt, args_doc, doc, NULL, NULL, NULL [all...] |
| /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/charsetdet/ |
| TestCharsetDetector.java | 350 Document doc; local 352 doc = builder.parse(is, null); 356 Element root = doc.getDocumentElement(); [all...] |
| /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/charsetdet/ |
| TestCharsetDetector.java | 347 Document doc; local 349 doc = builder.parse(is, null); 353 Element root = doc.getDocumentElement(); [all...] |
| /external/libcups/filter/ |
| pstops.c | 103 int mirror, /* doc->mirror/mirror pages */ 105 number_up_layout, /* doc->number_up_layout of N-up pages */ 107 page_border; /* doc->page_border around pages */ 118 #define is_first_page(p) (doc->number_up == 1 || \ 119 ((p) % doc->number_up) == 1) 120 #define is_last_page(p) (doc->number_up == 1 || \ 121 ((p) % doc->number_up) == 0) 122 #define is_not_last_page(p) (doc->number_up > 1 && \ 123 ((p) % doc->number_up) != 0) 137 static pstops_page_t *add_page(pstops_doc_t *doc, const char *label) 198 pstops_doc_t doc; \/* Document information *\/ local [all...] |
| /external/libxml2/ |
| c14n.c | 55 xmlDocPtr doc; member in struct:_xmlC14NCtx 635 tmp = xmlSearchNs(cur->doc, cur, ns->prefix); 765 ns = xmlSearchNs(cur->doc, cur, prefix); 785 ns = xmlSearchNs(cur->doc, cur, NULL); 965 value = xmlNodeListGetString(ctx->doc, attr->children, 1); 1028 res = xmlNodeListGetString(ctx->doc, xml_base_attr->children, 1); 1040 tmp_str = xmlNodeListGetString(ctx->doc, attr->children, 1); [all...] |
| debugXML.c | 45 xmlDocPtr doc; /* current document */ member in struct:_xmlDebugCtxt 47 xmlDictPtr dict; /* the doc dictionary */ 65 ctxt->doc = NULL; 265 ((ctxt->doc == NULL) || 266 ((ctxt->doc->parseFlags & (XML_PARSE_SAX1 | XML_PARSE_NODICT)) == 0))) { 276 xmlDocPtr doc; local 279 doc = node->doc; 284 if (node->doc == NULL) { 286 "Node has no doc\n") 2461 xmlDocPtr doc; local [all...] |
| rngparser.c | 134 xmlDocPtr doc; /* the resulting doc */ member in struct:_xmlCRelaxNGParserCtxt 433 case CRNG_DOCUMENTATION: printf("doc"); break; [all...] |
| schematron.c | 132 xmlDocPtr doc; /* pointer to the parsed document */ member in struct:_xmlSchematron 184 xmlDocPtr doc; member in struct:_xmlSchematronParserCtxt 185 int preserve; /* Whether the doc should be freed */ 568 if ((schema->doc != NULL) && (!(schema->preserve))) 569 xmlFreeDoc(schema->doc); 663 * @doc: a preparsed document tree 671 xmlSchematronNewDocParserCtxt(xmlDocPtr doc) 675 if (doc == NULL) 687 ret->doc = doc; 1080 xmlDocPtr doc; local [all...] |
| testlimits.c | 1263 xmlDocPtr doc; local 1277 doc = xmlCtxtReadFile(ctxt, filename, NULL, options); 1279 if (doc != NULL) { 1281 xmlFreeDoc(doc); [all...] |
| xinclude.c | 57 xmlDocPtr doc; /* the parsed document */ member in struct:_xmlXIncludeRef 61 int count; /* how many refs use that specific doc */ 67 xmlDocPtr doc; /* the source document */ member in struct:_xmlXIncludeCtxt 92 xmlXIncludeDoProcess(xmlXIncludeCtxtPtr ctxt, xmlDocPtr doc, xmlNodePtr tree); 200 if (ref->doc != NULL) { 202 xmlGenericError(xmlGenericErrorContext, "Freeing doc %s\n", ref->URI); 204 xmlFreeDoc(ref->doc); 244 ret->doc = NULL; 274 * @doc: an XML Document 281 xmlXIncludeNewContext(xmlDocPtr doc) { 1251 xmlDocPtr doc; member in struct:_xmlXIncludeMergeData 1269 xmlDocPtr doc; local 1405 xmlDocPtr doc; local [all...] |
| xmlsave.c | 86 xmlDocPtr doc; member in struct:_xmlSaveCtxt 429 * @doc: the document 443 xmlBufAttrSerializeTxtContent(buf->buffer, attr->doc, 710 xmlDocPtr doc; local 738 if ((dtd->notations != NULL) && ((dtd->doc == NULL) || 739 (dtd->doc->intSubset == dtd))) { 745 doc = ctxt->doc; 748 ctxt->doc = dtd->doc; 847 xmlDocPtr doc; local [all...] |
| /external/libxml2/include/libxml/ |
| xpath.h | 289 xmlDocPtr doc; /* The current document */ member in struct:_xmlXPathContext 498 xmlXPathNewContext (xmlDocPtr doc); 510 xmlXPathOrderDocElems (xmlDocPtr doc);
|
| /external/python/cpython2/Lib/ |
| pydoc.py | 83 """Get the doc string or comments for an object.""" 88 def splitdoc(doc): 89 """Split a doc string into a synopsis line (if any) and the rest.""" 90 lines = split(strip(doc), '\n') 350 class Doc: 449 class HTMLDoc(Doc): 697 doc = self.markup(getdoc(object), self.preformat, fdict, cdict) 698 doc = doc and '<tt>%s</tt>' % doc 1576 def doc(thing, title='Python Library Documentation: %s', forceload=0): function [all...] |
| /external/python/cpython2/Objects/ |
| descrobject.c | 373 if (descr->d_member->doc == NULL) { 377 return PyString_FromString(descr->d_member->doc); 388 if (descr->d_getset->doc == NULL) { 392 return PyString_FromString(descr->d_getset->doc); 403 if (descr->d_base->doc == NULL) { 407 return PyString_FromString(descr->d_base->doc); 1268 PyObject *new, *type, *doc; local 1304 PyObject *get = NULL, *set = NULL, *del = NULL, *doc = NULL; local [all...] |
| /external/python/cpython3/Lib/ |
| pydoc.py | 90 """Get the doc string or comments for an object.""" 94 def splitdoc(doc): 95 """Split a doc string into a synopsis line (if any) and the rest.""" 96 lines = doc.strip().split('\n') 366 class Doc: 470 class HTMLDoc(Doc): 719 doc = self.markup(getdoc(object), self.preformat, fdict, cdict) 720 doc = doc and '<tt>%s</tt>' % doc 1640 def doc(thing, title='Python Library Documentation: %s', forceload=0, function [all...] |
| /external/python/cpython3/Objects/ |
| descrobject.c | 423 if (descr->d_member->doc == NULL) { 427 return PyUnicode_FromString(descr->d_member->doc); 439 if (descr->d_getset->doc == NULL) { 443 return PyUnicode_FromString(descr->d_getset->doc); 455 return _PyType_GetDocFromInternalDoc(descr->d_base->name, descr->d_base->doc); 461 return _PyType_GetTextSignatureFromInternalDoc(descr->d_base->name, descr->d_base->doc); 1430 PyObject *new, *type, *doc; local 1466 PyObject *get = NULL, *set = NULL, *del = NULL, *doc = NULL; local [all...] |
| /frameworks/base/core/java/com/android/internal/content/ |
| FileSystemProvider.java | 112 final File doc = getFileForDocId(docId).getCanonicalFile(); local 113 return FileUtils.contains(parent, doc); 158 protected final List<String> findDocumentPath(File parent, File doc) 161 if (!doc.exists()) { 162 throw new FileNotFoundException(doc + " is not found."); 165 if (!FileUtils.contains(parent, doc)) { 166 throw new FileNotFoundException(doc + " is not found under " + parent); 170 while (doc != null && FileUtils.contains(parent, doc)) { 171 path.addFirst(getDocIdForFile(doc)); [all...] |
| /frameworks/data-binding/compilerCommon/src/main/java/android/databinding/tool/store/ |
| LayoutFileParser.java | 394 Document doc = builder.parse(xml); local 407 boolean changed = isBindingLayout(doc, xPath); 415 private boolean isBindingLayout(Document doc, XPath xPath) throws XPathExpressionException { 416 return !get(doc, xPath, XPATH_BINDING_LAYOUT).isEmpty(); 419 private List<Node> get(Document doc, XPath xPath, String pattern) 422 return toList((NodeList) expr.evaluate(doc, XPathConstants.NODESET));
|
| /packages/apps/DocumentsUI/src/com/android/documentsui/ |
| AbstractActionHandler.java | 195 public void refreshDocument(DocumentInfo doc, BooleanConsumer callback) { 199 doc, 204 task.executeOnExecutor(mExecutors.lookup(doc == null ? null : doc.authority)); 230 public boolean openItem(ItemDetails doc, @ViewType int type, @ViewType int fallback) { 235 public void showInspector(DocumentInfo doc) { 240 public void springOpenDirectory(DocumentInfo doc) { 316 public void showChooserForDoc(DocumentInfo doc) { 317 throw new UnsupportedOperationException("Show chooser for doc not supported!"); 333 public void openContainerDocument(DocumentInfo doc) { [all...] |