Home
last modified time | relevance | path

Searched full:document (Results 1 – 25 of 14405) sorted by relevance

12345678910>>...577

/external/slf4j/slf4j-site/src/site/pages/templates/
Dleft.js1 document.write('<div class="menuGroup">');
2 document.write(' <p class="menu_header">SLF4J Project</p>');
3 document.write(' <a href="index.html">Introduction</a>');
4 document.write(' <a href="download.html">Download</a>');
5 document.write(' <a href="docs.html">Documentation</a>');
6 document.write(' <a href="license.html">License</a>');
7 document.write(' <a href="news.html">News</a>');
9 document.write(' <p class="menu_header">Support</p>');
11 document.write(' <a href="mailing-lists.html">Mailing Lists</a>');
12 document.write(' <a href="bug-reporting.html">Bug Reporting</a>');
[all …]
Dfooter.js2 document.write('<table class="footer" border="0">')
4 document.write('<tr>')
6 document.write(' <td valign="top" align="left">Copyright &copy; 2004-2015 <a href="http://www.qos…
8 //document.write(' <td rowspan="2">');
9 //document.write(' <a href="http://twitter.com/qos_ch">');
10 //document.write(' <img alt="Follow @qos_ch" src="images/follow_us.png" />');
11 //document.write(' </a>');
12 //document.write(' </td>');
15 document.write('</tr>')
19 document.write('<tr>')
[all …]
/external/armnn/
DLICENSE.spdx3 SPDXID: SPDXRef-DOCUMENT
10 CreatorComment: <text>This document was created automatically using available reuse information con…
11 Relationship: SPDXRef-DOCUMENT describes SPDXRef-6023602810befa9adda44114844d090b
12 Relationship: SPDXRef-DOCUMENT describes SPDXRef-2716bc1ed4229fa725d3289dfebf305f
13 Relationship: SPDXRef-DOCUMENT describes SPDXRef-950af7814f60dff224a7339016ce4409
14 Relationship: SPDXRef-DOCUMENT describes SPDXRef-18a4ee19fb06cc5465a5fcc777a7a952
15 Relationship: SPDXRef-DOCUMENT describes SPDXRef-55f81d8bea83439b3f936bdedcc55a94
16 Relationship: SPDXRef-DOCUMENT describes SPDXRef-d83608cde56b57c282a0a44afa00afca
17 Relationship: SPDXRef-DOCUMENT describes SPDXRef-222d74ae2fe2f2148ce9a94df369b13f
18 Relationship: SPDXRef-DOCUMENT describes SPDXRef-6183423a33583910cd705460e23d1c2c
[all …]
/external/pdfium/fpdfsdk/
Dfpdf_doc_embeddertest.cpp23 CPDF_Document* pDoc = CPDFDocumentFromFPDFDocument(document()); in TEST_F()
28 ref.reset(FPDF_LoadPage(document(), 0)); in TEST_F()
45 EXPECT_EQ(-1, FPDFDest_GetDestPageIndex(document(), nullptr)); in TEST_F()
48 FPDF_DEST dest = FPDF_GetNamedDestByName(document(), "First"); in TEST_F()
50 EXPECT_EQ(1, FPDFDest_GetDestPageIndex(document(), dest)); in TEST_F()
53 dest = FPDF_GetNamedDestByName(document(), "Next"); in TEST_F()
55 EXPECT_EQ(1, FPDFDest_GetDestPageIndex(document(), dest)); in TEST_F()
58 dest = FPDF_GetNamedDestByName(document(), "FirstAlternate"); in TEST_F()
60 EXPECT_EQ(11, FPDFDest_GetDestPageIndex(document(), dest)); in TEST_F()
63 dest = FPDF_GetNamedDestByName(document(), "LastAlternate"); in TEST_F()
[all …]
Dfpdf_ppo_embeddertest.cpp71 EXPECT_FALSE(FPDF_CopyViewerPreferences(output_doc, document())); in TEST_F()
80 EXPECT_TRUE(FPDF_CopyViewerPreferences(output_doc, document())); in TEST_F()
92 EXPECT_TRUE(FPDF_CopyViewerPreferences(output_doc.get(), document())); in TEST_F()
96 output_doc.get(), document(), kPageIndices, std::size(kPageIndices), 0)); in TEST_F()
110 EXPECT_TRUE(FPDF_CopyViewerPreferences(output_doc, document())); in TEST_F()
111 EXPECT_TRUE(FPDF_ImportPages(output_doc, document(), "1", 0)); in TEST_F()
122 FPDF_ImportNPagesToOne(document(), 612, 792, 2, 1)); in TEST_F()
126 FPDF_ImportNPagesToOne(document(), 612, 792, 5, 1)); in TEST_F()
130 FPDF_ImportNPagesToOne(document(), 792, 612, 8, 1)); in TEST_F()
134 FPDF_ImportNPagesToOne(document(), 792, 612, 128, 1)); in TEST_F()
[all …]
/external/pdfium/core/fpdfapi/parser/
Dcpdf_security_handler_embeddertest.cpp71 CPDF_Document* doc = reinterpret_cast<CPDF_Document*>((document())); in RemoveTrailerIdFromDocument()
111 EXPECT_EQ(0xFFFFFFFF, FPDF_GetDocPermissions(document())); in TEST_F()
116 EXPECT_EQ(0xFFFFFFFF, FPDF_GetDocPermissions(document())); in TEST_F()
129 EXPECT_EQ(0xFFFFF2C0, FPDF_GetDocPermissions(document())); in TEST_F()
134 EXPECT_EQ(0xFFFFFFFC, FPDF_GetDocPermissions(document())); in TEST_F()
162 EXPECT_TRUE(FPDF_SaveAsCopy(document(), this, 0)); in TEST_F()
200 EXPECT_EQ(0xFFFFFFFC, FPDF_GetDocPermissions(document())); in TEST_F()
205 EXPECT_EQ(0xFFFFFFFC, FPDF_GetDocPermissions(document())); in TEST_F()
225 EXPECT_EQ(2, FPDF_GetSecurityHandlerRevision(document())); in TEST_F()
226 EXPECT_TRUE(FPDF_SaveAsCopy(document(), this, 0)); in TEST_F()
[all …]
Dcpdf_document_unittest.cpp161 std::unique_ptr<CPDF_TestDocumentForPages> document = in TEST_F() local
164 RetainPtr<const CPDF_Dictionary> page = document->GetPageDictionary(i); in TEST_F()
170 document->GetPageDictionary(kNumTestPages); in TEST_F()
175 auto document = std::make_unique<CPDF_TestDocumentWithPageWithoutPageNum>(); in TEST_F() local
176 RetainPtr<const CPDF_Dictionary> page = document->GetPageDictionary(2); in TEST_F()
178 ASSERT_EQ(document->inlined_page(), page); in TEST_F()
181 document->GetPageDictionary(2); in TEST_F()
187 std::unique_ptr<CPDF_TestDocumentForPages> document = in TEST_F() local
190 RetainPtr<const CPDF_Dictionary> page = document->GetPageDictionary(i); in TEST_F()
196 document->GetPageDictionary(kNumTestPages); in TEST_F()
[all …]
/external/android-nn-driver/
DLICENSE.spdx3 SPDXID: SPDXRef-DOCUMENT
10 CreatorComment: <text>This document was created automatically using available reuse information con…
11 Relationship: SPDXRef-DOCUMENT describes SPDXRef-9f8259108df712c403827fb71c15e65a
12 Relationship: SPDXRef-DOCUMENT describes SPDXRef-a43f0edf0ce5df76c5fa0b729273ea77
13 Relationship: SPDXRef-DOCUMENT describes SPDXRef-bf1cf5f58ec86ae7e11a3c3c8b474034
14 Relationship: SPDXRef-DOCUMENT describes SPDXRef-cecaaa5d4dda56381f9f7a9cd61ff7e9
15 Relationship: SPDXRef-DOCUMENT describes SPDXRef-f143870cf1668a0e1921bc40fdb66f54
16 Relationship: SPDXRef-DOCUMENT describes SPDXRef-00a23dbae66843f432e28118661839d4
17 Relationship: SPDXRef-DOCUMENT describes SPDXRef-3256f8866910230cf6a7a73811af0cf9
18 Relationship: SPDXRef-DOCUMENT describes SPDXRef-2cc451461228edab191f273bf18b1bb3
[all …]
/external/flac/
DCOPYING.FDL8 of this license document, but changing it is not allowed.
14 functional and useful document "free" in the sense of freedom: to
22 works of the document must themselves be free in the same sense. It
41 work under the conditions stated herein. The "Document", below,
47 A "Modified Version" of the Document means any work containing the
48 Document or a portion of it, either copied verbatim, or with
52 the Document that deals exclusively with the relationship of the
53 publishers or authors of the Document to the Document's overall subject
55 within that overall subject. (Thus, if the Document is in part a
64 that says that the Document is released under this License. If a
[all …]
/external/elfutils/doc/
DCOPYING-GFDL13 of this license document, but changing it is not allowed.
18 functional and useful document "free" in the sense of freedom: to
26 works of the document must themselves be free in the same sense. It
45 work under the conditions stated herein. The "Document", below,
51 A "Modified Version" of the Document means any work containing the
52 Document or a portion of it, either copied verbatim, or with
56 the Document that deals exclusively with the relationship of the
57 publishers or authors of the Document to the Document's overall
59 directly within that overall subject. (Thus, if the Document is in
68 that says that the Document is released under this License. If a
[all …]
/external/libcups/examples/
Dipp-everywhere.test30 ATTR mimeMediaType document-format application/octet-stream
39 EXPECT operations-supported WITH-VALUE 0x0006 # Send-Document
52 …EXPECT document-format-supported OF-TYPE mimeMediaType IN-GROUP printer-attributes-tag WITH-VALUE …
53 …EXPECT document-format-supported OF-TYPE mimeMediaType IN-GROUP printer-attributes-tag WITH-VALUE …
54 …EXPECT document-format-supported OF-TYPE mimeMediaType IN-GROUP printer-attributes-tag WITH-VALUE …
99 EXPECT multiple-document-jobs-supported OF-TYPE boolean IN-GROUP printer-attributes-tag COUNT 1
105 …EXPECT overrides-supported OF-TYPE keyword IN-GROUP printer-attributes-tag WITH-VALUE "document-nu…
134 …t-attributes-supported OF-TYPE keyword IN-GROUP printer-attributes-tag WITH-VALUE "document-format"
155 EXPECT pwg-raster-document-resolution-supported OF-TYPE resolution IN-GROUP printer-attributes-tag
156 EXPECT pwg-raster-document-resolution-supported WITH-VALUE 150dpi DEFINE-MATCH HAVE_150DPI
[all …]
/external/spdx-tools/spdxlib/
Ddescribed_elements.go2 // with an SPDX document that has already been created in memory.
16 // in this Document that it "describes," according to SPDX rules:
17 // - If the document has only one Package, its ID is returned.
18 // - If the document has 2+ Packages, it returns the IDs of those that have
19 // a DESCRIBES (or DESCRIBED_BY) relationship to this DOCUMENT.
20 func GetDescribedPackageIDs2_1(doc *v2_1.Document) ([]common.ElementID, error) { argument
26 return nil, fmt.Errorf("no Packages in Document")
36 // find DESCRIBES or DESCRIBED_BY for this DOCUMENT, verify they are
37 // valid IDs in this document's packages, and return them
39 return nil, fmt.Errorf("multiple Packages in Document but Relationships slice is nil")
[all …]
Ddescribed_elements_test.go17 // set up document and some packages and relationships
18 doc := &v2_1.Document{
21 SPDXIdentifier: common.ElementID("DOCUMENT"),
32 RefA: common.MakeDocElementID("", "DOCUMENT"),
37 RefA: common.MakeDocElementID("", "DOCUMENT"),
44 RefB: common.MakeDocElementID("", "DOCUMENT"),
77 // set up document and one package, but no relationships
79 doc := &v2_1.Document{
82 SPDXIdentifier: common.ElementID("DOCUMENT"),
104 // set up document and multiple packages, but no DESCRIBES relationships
[all …]
Ddocuments_test.go17 // set up document and some packages and relationships
18 doc := &v2_1.Document{
21 SPDXIdentifier: common.ElementID("DOCUMENT"),
32 RefA: common.MakeDocElementID("", "DOCUMENT"),
37 RefA: common.MakeDocElementID("", "DOCUMENT"),
44 RefB: common.MakeDocElementID("", "DOCUMENT"),
63 // set up document and some packages and relationships
64 doc := &v2_1.Document{
67 SPDXIdentifier: common.ElementID("DOCUMENT"),
76 RefA: common.MakeDocElementID("", "DOCUMENT"),
[all …]
/external/icing/icing/monkey_test/
Din-memory-icing-search-engine.cc41 bool DoesDocumentMatchQuery(const MonkeyTokenizedDocument &document, in DoesDocumentMatchQuery() argument
53 for (const MonkeyTokenizedSection &section : document.tokenized_sections) { in DoesDocumentMatchQuery()
109 documents_[doc_id].document.namespace_(), in RandomPickDocument()
110 documents_[doc_id].document.uri()}; in RandomPickDocument()
114 // need to find the latest document id, and return the latest DocumentProto. in RandomPickDocument()
117 result.document = documents_[latest_doc_id.ValueOrDie()].document; in RandomPickDocument()
122 void InMemoryIcingSearchEngine::Put(const MonkeyTokenizedDocument &document) { in Put() argument
124 Delete(document.document.namespace_(), document.document.uri()); in Put()
126 namespace_uri_docid_map[document.document.namespace_()] in Put()
127 [document.document.uri()] = documents_.size(); in Put()
[all …]
/external/icing/icing/util/
Ddocument-validator.cc15 #include "icing/util/document-validator.h"
22 #include "icing/proto/document.pb.h"
37 const DocumentProto& document, int depth) { in Validate() argument
38 if (document.namespace_().empty()) { in Validate()
43 if (depth == 0 && document.uri().empty()) { in Validate()
47 if (document.schema().empty()) { in Validate()
50 document.namespace_(), ", ", document.uri(), ").")); in Validate()
53 if (document.score() < 0) { in Validate()
57 if (document.creation_timestamp_ms() < 0) { in Validate()
62 if (document.ttl_ms() < 0) { in Validate()
[all …]
/external/chromium-trace/catapult/third_party/polymer/components/shadycss/tests/
Dscoping.html515 var root = document;
547 var dynamic = document.querySelector('template#dynamic');
552 var dom = document.importNode(dynamic.content, true);
559 var template = document.querySelector('template#svg');
562 var dom = document.importNode(template.content, true);
572 el = document.createElement('x-scoped');
574 document.body.appendChild(el);
579 document.body.removeChild(el);
588 var el2 = document.createElement('x-scoped');
590 document.body.appendChild(el2);
[all …]
/external/python/google-api-python-client/docs/dyn/
Ddfareporting_v3_4.orderDocuments.html82 <p class="firstline">Gets one order document by ID.</p>
97 <pre>Gets one order document by ID.
102 id: string, Order document ID. (required)
111 { # Contains properties of a Planning order document.
112 &quot;accountId&quot;: &quot;A String&quot;, # Account ID of this order document.
113 &quot;advertiserId&quot;: &quot;A String&quot;, # Advertiser ID of this order document.
114 … The amended order document ID of this order document. An order document can be created by optiona…
115 &quot;approvedByUserProfileIds&quot;: [ # IDs of users who have approved this order document.
118 &quot;cancelled&quot;: True or False, # Whether this order document is cancelled.
119 …tedInfo&quot;: { # Modification timestamp. # Information about the creation of this order document.
[all …]
Ddfareporting_v3_3.orderDocuments.html82 <p class="firstline">Gets one order document by ID.</p>
97 <pre>Gets one order document by ID.
102 id: string, Order document ID. (required)
111 { # Contains properties of a Planning order document.
112 &quot;accountId&quot;: &quot;A String&quot;, # Account ID of this order document.
113 &quot;advertiserId&quot;: &quot;A String&quot;, # Advertiser ID of this order document.
114 … The amended order document ID of this order document. An order document can be created by optiona…
115 &quot;approvedByUserProfileIds&quot;: [ # IDs of users who have approved this order document.
118 &quot;cancelled&quot;: True or False, # Whether this order document is cancelled.
119 …tedInfo&quot;: { # Modification timestamp. # Information about the creation of this order document.
[all …]
Ddfareporting_v3_5.orderDocuments.html82 <p class="firstline">Gets one order document by ID.</p>
97 <pre>Gets one order document by ID.
102 id: string, Order document ID. (required)
111 { # Contains properties of a Planning order document.
112 &quot;accountId&quot;: &quot;A String&quot;, # Account ID of this order document.
113 &quot;advertiserId&quot;: &quot;A String&quot;, # Advertiser ID of this order document.
114 … The amended order document ID of this order document. An order document can be created by optiona…
115 &quot;approvedByUserProfileIds&quot;: [ # IDs of users who have approved this order document.
118 &quot;cancelled&quot;: True or False, # Whether this order document is cancelled.
119 …tedInfo&quot;: { # Modification timestamp. # Information about the creation of this order document.
[all …]
Ddialogflow_v2.projects.knowledgeBases.documents.html82document. This method is a [long-running operation](https://cloud.google.com/dialogflow/cx/docs/ho…
85 <p class="firstline">Deletes the specified document. This method is a [long-running operation](http…
88 <p class="firstline">Retrieves the specified document.</p>
97document. This method is a [long-running operation](https://cloud.google.com/dialogflow/cx/docs/ho…
100document from its specified source, content_uri or content. The previously loaded content of the d…
109document. This method is a [long-running operation](https://cloud.google.com/dialogflow/cx/docs/ho…
112 …parent: string, Required. The knowledge base to create a document for. Format: `projects//location…
116 { # A knowledge document to be used by a KnowledgeBase. For more information, see the [knowledge ba…
118 …&quot;displayName&quot;: &quot;A String&quot;, # Required. The display name of the document. The n…
119document every day (at a time picked by the system). If false or unspecified, we don&#x27;t try to…
[all …]
/external/icing/icing/store/
Ddocument-store.h31 #include "icing/proto/document.pb.h"
42 #include "icing/store/document-associated-score-data.h"
43 #include "icing/store/document-filter-data.h"
44 #include "icing/store/document-id.h"
52 #include "icing/util/document-validator.h"
79 // size of each document, so we estimate by taking the size of the entire
81 // So we end up with an average document size.
101 // A successfully initialized document store.
107 // document store may need to be regenerated.
119 // directory is used to persist document store files. If document store was
[all …]
/external/pdfium/testing/resources/javascript/
Ddocument_properties_expected.txt45 Alert: ERROR: Document.documentFileName: Cannot assign to readonly property.
47 Alert: ERROR: Document.filesize: Cannot assign to readonly property.
48 Alert: ERROR: Document.icons: Cannot assign to readonly property.
49 Alert: ERROR: Document.info: Cannot assign to readonly property.
56 Alert: ERROR: Document.numFields: Cannot assign to readonly property.
57 Alert: ERROR: Document.numPages: Cannot assign to readonly property.
61 Alert: ERROR: Document.path: Cannot assign to readonly property.
65 Alert: ERROR: Document.URL: Cannot assign to readonly property.
79 Alert: ERROR: Document.documentFileName: Cannot assign to readonly property.
81 Alert: ERROR: Document.filesize: Cannot assign to readonly property.
[all …]
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/BinaryFormat/
DMsgPackDocument.h1 //===-- MsgPackDocument.h - MsgPack Document --------------------*- C++ -*-===//
10 /// of a document of MsgPack objects, that can be read from MsgPack, written to
27 class Document; variable
30 /// The kind of a DocNode and its owning Document.
32 Document *Doc;
36 /// A node in a MsgPack Document. This is a simple copyable and
39 friend Document; variable
47 // owning Document into the same word. Having a pointer to the owning
48 // Document makes the API of DocNode more convenient, and allows its use in
76 Document *getDocument() const { return KindAndDoc->Doc; } in getDocument()
[all …]
/external/icing/icing/result/
Dresult-retriever-v2_group-result-limiter_test.cc19 #include "icing/document-builder.h"
22 #include "icing/proto/document.pb.h"
30 #include "icing/scoring/priority-queue-scored-document-hits-ranker.h"
31 #include "icing/scoring/scored-document-hit.h"
32 #include "icing/store/document-id.h"
83 schema.add_types()->set_schema_type("Document"); in SetUp()
125 // Creates 2 documents and ensures the relationship in terms of document in TEST_F()
129 .SetSchema("Document") in TEST_F()
138 .SetSchema("Document") in TEST_F()
172 // Only the top ranked document in "namespace" (document2), should be in TEST_F()
[all …]

12345678910>>...577