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

1 23 4 5 6 7 8 91011>>

  /external/libxml2/python/tests/
validDTD.py 34 doc = libxml2.parseDoc(valid) variable
35 ret = doc.validateDtd(ctxt, dtd)
39 doc.freeDoc()
42 doc = libxml2.parseDoc(invalid) variable
43 ret = doc.validateDtd(ctxt, dtd)
46 doc.freeDoc()
validRNG.py 49 doc = libxml2.parseDoc(valid) variable
50 ret = doc.relaxNGValidateDoc(ctxt)
54 doc.freeDoc()
57 doc = libxml2.parseDoc(invalid) variable
58 ret = doc.relaxNGValidateDoc(ctxt)
62 doc.freeDoc()
validSchemas.py 56 doc = libxml2.parseDoc(valid) variable
57 ret = doc.schemaValidateDoc(ctxt_valid)
61 doc.freeDoc()
64 doc = libxml2.parseDoc(invalid) variable
65 ret = doc.schemaValidateDoc(ctxt_valid)
69 doc.freeDoc()
  /external/snakeyaml/src/test/java/examples/
SafeConstructorExampleTest.java 28 String doc = "- 5\n- Person\n- true"; local
30 List<Object> list = (List<Object>) yaml.load(doc);
38 String doc = "- 5\n- !org.yaml.snakeyaml.constructor.Person\n firstName: Andrey\n age: 99\n- true"; local
41 yaml.load(doc);
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue332/
DataTest.java 36 String doc = "!!org.yaml.snakeyaml.issues.issue332.Data [Voltage, 10, volts]"; local
37 assertEquals("Data{label='Voltage', unit='volts', value=10}", (new Yaml().load(doc)).toString());
  /frameworks/base/tools/aapt2/format/binary/
XmlFlattener_test.cpp 58 ::testing::AssertionResult Flatten(xml::XmlResource* doc, android::ResXMLTree* out_tree,
64 if (!flattener.Consume(context_.get(), doc)) {
80 std::unique_ptr<xml::XmlResource> doc = test::BuildXmlDom(R"( local
87 ASSERT_TRUE(Flatten(doc.get(), &tree));
139 std::unique_ptr<xml::XmlResource> doc = test::BuildXmlDom(R"( local
146 ASSERT_TRUE(Flatten(doc.get(), &tree));
160 std::unique_ptr<xml::XmlResource> doc = test::BuildXmlDom(R"( local
167 ASSERT_TRUE(Flatten(doc.get(), &tree));
181 std::unique_ptr<xml::XmlResource> doc = test::BuildXmlDom(R"(<View package="android"/>)");
184 ASSERT_TRUE(Flatten(doc.get(), &tree))
290 std::unique_ptr<xml::XmlResource> doc = test::BuildXmlDom( local
342 std::unique_ptr<xml::XmlResource> doc = test::BuildXmlDom( local
449 std::unique_ptr<xml::XmlResource> doc = test::BuildXmlDom(R"(<element foo="bar" \/>)"); local
470 std::unique_ptr<xml::XmlResource> doc = test::BuildXmlDom(R"(<element foo="bar" \/>)"); local
493 std::unique_ptr<xml::XmlResource> doc = test::BuildXmlDom(R"(<element foo="true" \/>)"); local
513 std::unique_ptr<xml::XmlResource> doc = test::BuildXmlDom(R"(<element foo="true" \/>)"); local
    [all...]
  /frameworks/base/tools/aapt2/link/
ManifestFixer_test.cpp 70 std::unique_ptr<xml::XmlResource> doc = test::BuildXmlDom(str); local
72 if (fixer.Consume(mContext.get(), doc.get())) {
73 return doc;
97 auto doc = Verify(R"EOF( local
111 ASSERT_THAT(doc, NotNull());
119 std::unique_ptr<xml::XmlResource> doc = VerifyWithOptions(R"EOF(
125 ASSERT_THAT(doc, NotNull());
130 el = doc->root.get();
141 doc = VerifyWithOptions(R"EOF(
147 ASSERT_THAT(doc, NotNull())
    [all...]
  /frameworks/base/tools/aapt2/xml/
XmlActionExecutor_test.cpp 43 std::unique_ptr<XmlResource> doc = local
47 ASSERT_TRUE(executor.Execute(XmlActionExecutorPolicy::kNone, &diag, doc.get()));
59 std::unique_ptr<XmlResource> doc; local
62 doc = test::BuildXmlDom("<manifest><application /><activity /></manifest>");
63 ASSERT_FALSE(executor.Execute(XmlActionExecutorPolicy::kWhitelist, &diag, doc.get()));
65 doc = test::BuildXmlDom("<manifest><application><activity /></application></manifest>");
66 ASSERT_FALSE(executor.Execute(XmlActionExecutorPolicy::kWhitelist, &diag, doc.get()));
  /frameworks/support/recyclerview-selection/src/androidTest/java/androidx/recyclerview/selection/testing/
TestItemDetailsLookup.java 39 * any EventDocLookup methods will consult the newly created doc.
42 TestItemDetails doc = new TestItemDetails(); local
43 doc.at(position);
44 mItem = doc;
45 return doc;
  /prebuilts/go/darwin-x86/src/go/doc/
comment_test.go 5 package doc package
doc.go 5 // Package doc extracts source code documentation from a Go AST.
6 package doc package
15 Doc string
35 Doc string
44 Doc string
57 Doc string
100 Doc: r.doc,
example.go 7 package doc package
24 Doc string // example function doc string
71 var doc string
72 if f.Doc != nil {
73 doc = f.Doc.Text()
78 Doc: doc,
248 if c := s.(*ast.ImportSpec).Doc; c != nil
    [all...]
  /prebuilts/go/linux-x86/src/go/doc/
comment_test.go 5 package doc package
doc.go 5 // Package doc extracts source code documentation from a Go AST.
6 package doc package
15 Doc string
35 Doc string
44 Doc string
57 Doc string
100 Doc: r.doc,
example.go 7 package doc package
24 Doc string // example function doc string
71 var doc string
72 if f.Doc != nil {
73 doc = f.Doc.Text()
78 Doc: doc,
248 if c := s.(*ast.ImportSpec).Doc; c != nil
    [all...]
  /art/tools/ahat/src/main/com/android/ahat/
AhatHttpHandler.java 43 HtmlDoc doc = new HtmlDoc(ps, DocString.text("ahat"), DocString.uri("style.css")); local
44 doc.menu(Menu.getMenu());
45 mAhatHandler.handle(doc, new Query(exchange.getRequestURI()));
46 doc.close();
BitmapHandler.java 57 HtmlDoc doc = new HtmlDoc(ps, DocString.text("ahat"), DocString.uri("style.css")); local
58 doc.big(DocString.text("No bitmap found for the given request."));
59 doc.close();
OverviewHandler.java 38 public void handle(Doc doc, Query query) throws IOException {
39 doc.title("Overview");
41 doc.section("General Information");
42 doc.descriptions();
43 doc.description(
46 doc.description(DocString.text("hprof file"), DocString.text(mHprof.toString()));
48 doc.description(DocString.text("baseline hprof file"), DocString.text(mBaseHprof.toString()));
50 doc.end();
52 doc.section("Bytes Retained by Heap")
    [all...]
StaticHandler.java 44 HtmlDoc doc = new HtmlDoc(ps, DocString.text("ahat"), DocString.uri("style.css")); local
45 doc.big(DocString.text("Resource not found."));
46 doc.close();
  /packages/apps/DocumentsUI/tests/unit/com/android/documentsui/base/
DocumentInfoTest.java 28 = createDocInfo("authority.a", "doc.1", "text/plain");
32 assertEquals(TEST_DOC, createDocInfo("authority.a", "doc.1", "text/plain"));
45 assertFalse(TEST_DOC.equals(createDocInfo("authority.b", "doc.1", "text/plain")));
49 assertFalse(TEST_DOC.equals(createDocInfo("authority.a", "doc.2", "text/plain")));
53 assertFalse(TEST_DOC.equals(createDocInfo("authority.a", "doc.1", "image/png")));
57 DocumentInfo doc = new DocumentInfo(); local
58 doc.authority = authority;
59 doc.documentId = docId;
60 doc.mimeType = mimeType;
61 doc.deriveFields()
    [all...]
  /art/tools/ahat/src/test/com/android/ahat/
TestHandler.java 37 HtmlDoc doc = new HtmlDoc(ps, DocString.text("noCrash test"), DocString.uri("style.css")); local
39 handler.handle(doc, query);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
structseq.h 12 char *doc; member in struct:PyStructSequence_Field
17 char *doc; member in struct:PyStructSequence_Desc
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
structseq.h 12 char *doc; member in struct:PyStructSequence_Field
17 char *doc; member in struct:PyStructSequence_Desc
  /external/apache-xml/src/main/java/org/apache/xpath/functions/
FuncUnparsedEntityURI.java 49 int doc = dtm.getDocument(); local
  /external/emma/core/java12/com/vladium/emma/report/html/doc/
ElementList.java 9 package com.vladium.emma.report.html.doc;

Completed in 546 milliseconds

1 23 4 5 6 7 8 91011>>