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

1 2 34 5 6 7 8 91011>>

  /external/emma/core/java12/com/vladium/emma/report/html/doc/
Text.java 9 package com.vladium.emma.report.html.doc;
  /external/fonttools/MetaTools/
buildTableList.py 13 docFile = os.path.join(fontToolsDir, "Doc", "documentation.html")
47 doc = open(docFile).read() variable
48 beginPos = doc.find(begin)
51 endPos = doc.find(end)
53 doc = doc[:beginPos] + ", ".join(tables[:-1]) + " and " + tables[-1] + "\n" + doc[endPos:] variable
55 open(docFile, "w").write(doc)
  /external/libxml2/doc/examples/
io1.c 105 xmlDocPtr doc; local
124 doc = xmlReadMemory(include, strlen(include), "include.xml", NULL, 0);
125 if (doc == NULL) {
134 if (xmlXIncludeProcess(doc) <= 0) {
143 xmlDocDump(stdout, doc);
149 xmlFreeDoc(doc);
xpath1.c 86 xmlDocPtr doc; local
94 doc = xmlParseFile(filename);
95 if (doc == NULL) {
101 xpathCtx = xmlXPathNewContext(doc);
104 xmlFreeDoc(doc);
112 xmlFreeDoc(doc);
121 xmlFreeDoc(doc);
131 xmlFreeDoc(doc);
  /external/libxml2/include/libxml/
debugXML.h 53 xmlDocPtr doc);
56 xmlDocPtr doc);
62 xmlDocPtr doc);
72 xmlDocPtr doc);
115 xmlDocPtr doc; member in struct:_xmlShellCtxt
205 xmlShell (xmlDocPtr doc,
  /external/libxml2/
testRelax.c 135 xmlDocPtr doc; local
137 doc = xmlReadFile(argv[i],NULL,0);
139 if (doc == NULL) {
150 ret = xmlRelaxNGValidateDoc(ctxt, doc);
160 xmlFreeDoc(doc);
testSchemas.c 126 xmlDocPtr doc; local
128 doc = xmlReadFile(argv[i],NULL,0);
130 if (doc == NULL) {
141 ret = xmlSchemaValidateDoc(ctxt, doc);
151 xmlFreeDoc(doc);
  /external/parameter-framework/upstream/parameter/
XmlFileIncluderElement.cpp 64 _xmlDoc *doc = CXmlDocSource::mkXmlDoc(strPath, true, true, elementSerializingContext); local
66 CXmlDocSource docSource(doc, _bValidateSchemasOnStart, strIncludedElementType);
100 // Use a doc sink that instantiate the structure from the doc source
  /external/python/cpython2/Include/
structseq.h 12 char *doc; member in struct:PyStructSequence_Field
17 char *doc; member in struct:PyStructSequence_Desc
  /external/python/cpython3/Include/
structseq.h 12 char *doc; member in struct:PyStructSequence_Field
17 char *doc; member in struct:PyStructSequence_Desc
  /external/skia/tests/
PDFMetadataAttributeTest.cpp 28 sk_sp<SkDocument> doc = SkDocument::MakePDF(&pdf, metadata); local
29 doc->beginPage(612.0f, 792.0f);
30 doc->close();
  /external/skqp/tests/
PDFMetadataAttributeTest.cpp 28 sk_sp<SkDocument> doc = SkDocument::MakePDF(&pdf, metadata); local
29 doc->beginPage(612.0f, 792.0f);
30 doc->close();
  /external/snakeyaml/src/test/java/examples/
AnyObjectExampleTest.java 29 String doc = Util.getLocalResource("examples/any-object-example.yaml"); local
31 Map<String, Object> object = (Map<String, Object>) yaml.load(doc);
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue188/
ErrorMessageTest.java 28 String doc = "templates:\n" + " master:\n" + " type: Compute : invalid123"; local
29 yaml.load(doc);
  /external/tagsoup/src/org/ccil/cowan/tagsoup/jaxp/
JAXPTest.java 50 Document doc = DocumentBuilderFactory.newInstance().newDocumentBuilder().parse(f); local
52 System.out.println("Succesfully built DOM tree from '"+f+"', -> "+doc);
  /hardware/interfaces/audio/common/all-versions/test/utility/include/utility/
Documentation.h 29 namespace doc { namespace in namespace:android::hardware::audio::common::test::utility
37 * Eg: calling `doc::test("Dump the state of the hal")` in the "debugDump" test
61 } // namespace doc
  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
documentgetelementsbytagnamelength.java 64 Document doc; local
66 doc = (Document) load("staff", false);
67 nameList = doc.getElementsByTagName("name");
documentgetelementsbytagnametotallength.java 59 Document doc; local
61 doc = (Document) load("staff", false);
62 nameList = doc.getElementsByTagName("*");
documentgetimplementation.java 63 Document doc; local
66 doc = (Document) load("staff", false);
67 docImpl = doc.getImplementation();
documentgetrootnode.java 63 Document doc; local
66 doc = (Document) load("staff", false);
67 root = doc.getDocumentElement();
documentinvalidcharacterexceptioncreateattribute.java 69 Document doc; local
71 doc = (Document) load("staff", true);
76 createdAttr = doc.createAttribute("invalid^Name");
documentinvalidcharacterexceptioncreateelement.java 69 Document doc; local
71 doc = (Document) load("staff", true);
76 badElement = doc.createElement("invalid^Name");
documentinvalidcharacterexceptioncreateentref.java 66 Document doc; local
68 doc = (Document) load("hc_staff", true);
75 badEntityRef = doc.createEntityReference("foo");
86 badEntityRef = doc.createEntityReference("invalid^Name");
documentinvalidcharacterexceptioncreateentref1.java 63 Document doc; local
65 doc = (Document) load("hc_staff", true);
72 badEntityRef = doc.createEntityReference("foo");
83 badEntityRef = doc.createEntityReference("");
documentinvalidcharacterexceptioncreatepi.java 66 Document doc; local
68 doc = (Document) load("hc_staff", true);
75 badPI = doc.createProcessingInstruction("foo", "data");
86 badPI = doc.createProcessingInstruction("invalid^Name", "data");

Completed in 723 milliseconds

1 2 34 5 6 7 8 91011>>