HomeSort by relevance Sort by last modified time
    Searched defs:doc (Results 1226 - 1250 of 2335) sorted by null

<<41424344454647484950>>

  /packages/apps/UnifiedEmail/src/com/google/android/mail/common/html/parser/
HtmlDocument.java 1168 private HtmlDocument doc; field in class:HtmlDocument.Builder
1204 doc = new HtmlDocument(nodes);
1209 return doc;
    [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...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/
LayoutEditorDelegate.java 308 /* (non-java doc)
805 Document doc = null; local
807 doc = mUiDocRootNode.getXmlDocument();
835 onDescriptorsChanged(doc);
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
ChangeLayoutRefactoring.java 255 IStructuredDocument doc = model.getStructuredDocument(); local
256 if (doc != null) {
257 List<TextEdit> replaceIds = replaceIds(getAndroidNamespacePrefix(), doc,
  /prebuilts/tools/common/m2/repository/org/apache/maven/doxia/doxia-site-renderer/1.0/
doxia-site-renderer-1.0.jar 
  /prebuilts/tools/common/m2/repository/jdom/jdom/1.0/
jdom-1.0.jar 
  /prebuilts/tools/common/bazel/formc-deps/
jdom.jar 
  /cts/hostsidetests/security/src/android/security/cts/
SELinuxHostTest.java 279 Document doc = db.parse(vendorManifestFile); local
280 Element root = doc.getDocumentElement();
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
_testcapimodule.c 1628 char *doc = NULL; local
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/sax2dtm/
SAX2DTM.java 1693 int doc = addNode(DTM.DOCUMENT_NODE, local
    [all...]
SAX2DTM2.java 2285 int doc = addNode(DTM.DOCUMENT_NODE, local
    [all...]
  /external/curl/tests/server/
sws.c 465 static char doc[MAXDOCNAMELEN]; local
490 doc,
498 ptr = strrchr(doc, '/');
502 if((strlen(doc) + strlen(request)) < 400)
504 request, doc, prot_major, prot_minor);
556 doc, &prot_major, &prot_minor) == 3) {
562 doc, prot_major, prot_minor);
570 if(doc[0] == '[') {
571 char *p = &doc[1];
592 portp = strchr(doc, ':')
    [all...]
  /external/elfutils/src/
nm.c 105 static const char doc[] = N_("List symbols from FILEs (a.out by default)."); variable
123 options, parse_opt, args_doc, doc, argp_children, NULL, NULL
    [all...]
  /external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/localeconverter/
XLIFF2ICUConverter.java 376 Document doc = null; local
419 doc = docBuilder.parse(new InputSource(urls));
421 NodeList nlist = doc.getElementsByTagName(FILES);
427 String sourceLang = getLanguageName(doc, SOURCELANGUAGE);
429 String targetLang = getLanguageName(doc, TARGETLANGUAGE);
432 NodeList sourceList = doc.getElementsByTagName(SOURCE);
434 NodeList targetList = doc.getElementsByTagName(TARGET);
479 NodeList altTrans = doc.getElementsByTagName(ALTTRANS);
485 NodeList list = doc.getElementsByTagName(GROUPS);
541 private String getLanguageName(Document doc, String lang)
    [all...]
  /external/libxml2/
catalog.c 537 * @doc: the containing document
545 xmlDocPtr doc, xmlNsPtr ns, xmlCatalogEntryPtr cgroup) {
565 node = xmlNewDocNode(doc, ns, BAD_CAST "nextCatalog", NULL);
572 node = xmlNewDocNode(doc, ns, BAD_CAST "group", NULL);
576 xns = xmlSearchNsByHref(doc, node, XML_XML_NAMESPACE);
591 xmlDumpXMLCatalogNode(cur->next, node, doc, ns, cur);
595 node = xmlNewDocNode(doc, ns, BAD_CAST "public", NULL);
601 node = xmlNewDocNode(doc, ns, BAD_CAST "system", NULL);
607 node = xmlNewDocNode(doc, ns, BAD_CAST "rewriteSystem", NULL);
613 node = xmlNewDocNode(doc, ns, BAD_CAST "delegatePublic", NULL)
664 xmlDocPtr doc; local
1347 xmlDocPtr doc; local
1415 xmlCatalogEntryPtr doc; local
    [all...]
xmllint.c 2161 xmlDocPtr doc = NULL; local
    [all...]
xmlwriter.c 102 xmlDocPtr doc; member in struct:_xmlTextWriter
225 ret->doc = xmlNewDoc(NULL);
352 * @doc: address of a xmlDocPtr to hold the new XML document tree
355 * Create a new xmlNewTextWriter structure with @*doc as output
360 xmlNewTextWriterDoc(xmlDocPtr * doc, int compression)
403 if (doc != NULL) {
404 *doc = ctxt->myDoc;
413 * @doc: xmlDocPtr
414 * @node: xmlNodePtr or NULL for doc->children
417 * Create a new xmlNewTextWriter structure with @doc as outpu
4512 xmlDocPtr doc; local
    [all...]
  /external/libxml2/include/libxml/
tree.h 262 struct _xmlDoc *doc; /* the containing document */ member in struct:_xmlAttribute
355 struct _xmlDoc *doc; /* the containing document */ member in struct:_xmlElement
415 struct _xmlDoc *doc; /* the containing document */ member in struct:_xmlDtd
443 struct _xmlDoc *doc; /* the containing document */ member in struct:_xmlAttr
463 struct _xmlDoc *doc; /* The document holding the ID */ member in struct:_xmlID
498 struct _xmlDoc *doc; /* the containing document */ member in struct:_xmlNode
560 struct _xmlDoc *doc; /* autoreference to itself */ member in struct:_xmlDoc
752 xmlCreateIntSubset (xmlDocPtr doc,
757 xmlNewDtd (xmlDocPtr doc,
762 xmlGetIntSubset (const xmlDoc *doc);
    [all...]
  /external/libxml2/os400/iconv/bldcsndfa/
bldcsndfa.c 379 xmlDocPtr doc; local
409 doc = xmlParseMemory((xmlChar *) databuf, i);
411 return doc;
872 xmlDocPtr doc; local
882 doc = loadXMLFile(filename);
884 if (!doc) {
889 ctxt = xmlXPathNewContext(doc);
988 xmlFreeDoc(doc);
1017 xmlDocPtr doc; local
1031 doc = loadXMLFile(filename)
    [all...]
  /external/libxml2/python/
libxml.c 2442 xmlDocPtr doc = (xmlDocPtr) cur; local
2946 xmlDocPtr doc; local
3020 xmlDocPtr doc; local
3618 xmlDocPtr doc; local
3694 xmlDocPtr doc; local
    [all...]
  /external/llvm/unittests/Support/
YAMLIOTest.cpp 76 FooBar doc; local
79 yin >> doc; local
82 EXPECT_EQ(doc.foo, 3);
83 EXPECT_EQ(doc.bar, 5);
88 yin >> doc; local
91 EXPECT_EQ(doc.foo, 3);
92 EXPECT_EQ(doc.bar, 5);
97 FooBar doc; local
99 yin >> doc; local
984 MultilineStringType doc; local
1010 MultilineStringType doc; local
1015 yout << doc; local
1019 MultilineStringType doc; local
1020 yin >> doc; local
1442 FooBarMap doc; local
1444 yin >> doc; local
1664 FlowFooBarDoc doc; local
1672 yout << doc; local
2080 FooBar doc; local
2085 yin >> doc; local
2091 yin >> doc; local
2161 FooBar doc; local
2163 yin >> doc; local
2168 OptionalTest doc; local
2170 yin >> doc; local
    [all...]
  /external/parameter-framework/upstream/parameter/
ParameterMgr.cpp 434 _xmlDoc *doc = local
436 if (doc == NULL) {
440 if (!xmlParse(elementSerializingContext, getFrameworkConfiguration(), doc, _xmlConfigurationUri,
519 _xmlDoc *doc = CXmlDocSource::mkXmlDoc(structureUri, true, true, parameterBuildContext); local
520 if (doc == NULL) {
524 if (!xmlParse(parameterBuildContext, pSystemClass, doc, structureUri,
609 _xmlDoc *doc = local
611 if (doc == NULL) {
615 return xmlParse(xmlDomainImportContext, pConfigurableDomains, doc, _xmlConfigurationUri,
621 CElement *pRootElement, _xmlDoc *doc, const string &baseUri
1558 _xmlDoc *doc = CXmlDocSource::mkXmlDoc(settings, false, false, xmlParameterContext); local
2605 _xmlDoc *doc = CXmlDocSource::mkXmlDoc(xmlSource, fromFile, false, xmlDomainImportContext); local
    [all...]

Completed in 1644 milliseconds

<<41424344454647484950>>