Home
last modified time | relevance | path

Searched refs:document (Results 1 – 25 of 3079) sorted by relevance

12345678910>>...124

/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…
15 document.write('</tr>')
19 document.write('<tr>')
20 document.write('<td align="left" colspan="1">')
21 document.write('We are actively looking for volunteers to proofread the documentation. Please send …
22 document.write('</td>')
23 document.write('</tr>')
26 document.write('</table>')
/external/libwebsockets/minimal-examples/http-server/minimal-http-server-generic-sessions/mount-origin/
Dlwsgs.js181 if (document.getElementById('password').value.length &&
182 document.getElementById('password').value.length < 8)
185 if (!document.getElementById('username').value ||
186 !document.getElementById('password').value)
189 if (!document.getElementById('username').value ||
190 document.getElementById('password').value)
193 document.getElementById('login').disabled = !en_login;
194 document.getElementById('forgot').disabled = !en_forgot;
197 document.getElementById("curuser").innerHTML = lwsgs_san(lwsgs_user);
200 document.getElementById("dlogin").style.display = "inline";
[all …]
Dlws-common.js18 var h = document.compatMode === "CSS1Compat" &&
20 document.documentElement.clientHeight :
21 document.body.clientHeight;
22 var w = document.compatMode === "CSS1Compat" &&
24 document.documentElement.clientWidth :
25 document.body.clientWidth;
28 if (document.body &&
29 (document.body.scrollWidth || document.body.scrollHeight)) {
30 t = document.body.scrollWidth;
32 t = document.body.scrollHeight;
[all …]
/external/libwebsockets/plugins/generic-sessions/assets/
Dlwsgs.js181 if (document.getElementById('password').value.length &&
182 document.getElementById('password').value.length < 8)
185 if (!document.getElementById('username').value ||
186 !document.getElementById('password').value)
189 if (!document.getElementById('username').value ||
190 document.getElementById('password').value)
193 document.getElementById('login').disabled = !en_login;
194 document.getElementById('forgot').disabled = !en_forgot;
197 document.getElementById("curuser").innerHTML = lwsgs_san(lwsgs_user);
200 document.getElementById("dlogin").style.display = "inline";
[all …]
/external/adhd/scripts/mic_testing/frontend/
Daudio.js22 var canvas_detail = document.getElementsByClassName('canvas_detail');
25 document.getElementById('record_tab').setAttribute('class', '');
26 document.getElementById('record_div').style.display = 'none';
27 document.getElementById('play_div').style.display = 'block';
34 document.getElementById('play_tab').setAttribute('class', '');
35 document.getElementById('play_div').style.display = 'none';
36 document.getElementById('record_div').style.display = 'block';
43 document.getElementById(tabName).setAttribute('class', 'selected');
77 var canvas = document.getElementById('fr_canvas');
89 var sourceTone = document.getElementById('source_tone');
[all …]
/external/pdfium/core/fpdfapi/parser/
Dcpdf_security_handler_embeddertest.cpp70 CPDF_Document* doc = reinterpret_cast<CPDF_Document*>((document())); in RemoveTrailerIdFromDocument()
125 EXPECT_EQ(0xFFFFFFFF, FPDF_GetDocPermissions(document())); in TEST_F()
130 EXPECT_EQ(0xFFFFFFFF, FPDF_GetDocPermissions(document())); in TEST_F()
143 EXPECT_EQ(0xFFFFF2C0, FPDF_GetDocPermissions(document())); in TEST_F()
148 EXPECT_EQ(0xFFFFFFFC, FPDF_GetDocPermissions(document())); in TEST_F()
180 EXPECT_TRUE(FPDF_SaveAsCopy(document(), this, 0)); in TEST_F()
217 EXPECT_EQ(0xFFFFFFFC, FPDF_GetDocPermissions(document())); in TEST_F()
222 EXPECT_EQ(0xFFFFFFFC, FPDF_GetDocPermissions(document())); in TEST_F()
242 EXPECT_EQ(2, FPDF_GetSecurityHandlerRevision(document())); in TEST_F()
243 EXPECT_TRUE(FPDF_SaveAsCopy(document(), this, 0)); in TEST_F()
[all …]
/external/pdfium/fpdfsdk/
Dfpdf_doc_embeddertest.cpp25 CPDF_Document* pDoc = CPDFDocumentFromFPDFDocument(document()); in TEST_F()
30 ref.reset(FPDF_LoadPage(document(), 0)); in TEST_F()
47 EXPECT_EQ(-1, FPDFDest_GetDestPageIndex(document(), nullptr)); in TEST_F()
50 FPDF_DEST dest = FPDF_GetNamedDestByName(document(), "First"); in TEST_F()
52 EXPECT_EQ(1, FPDFDest_GetDestPageIndex(document(), dest)); in TEST_F()
55 dest = FPDF_GetNamedDestByName(document(), "Next"); in TEST_F()
57 EXPECT_EQ(1, FPDFDest_GetDestPageIndex(document(), dest)); in TEST_F()
60 dest = FPDF_GetNamedDestByName(document(), "FirstAlternate"); in TEST_F()
62 EXPECT_EQ(11, FPDFDest_GetDestPageIndex(document(), dest)); in TEST_F()
65 dest = FPDF_GetNamedDestByName(document(), "LastAlternate"); in TEST_F()
[all …]
Dfpdf_ppo_embeddertest.cpp33 EXPECT_FALSE(FPDF_CopyViewerPreferences(output_doc, document())); in TEST_F()
42 EXPECT_TRUE(FPDF_CopyViewerPreferences(output_doc, document())); in TEST_F()
54 EXPECT_TRUE(FPDF_CopyViewerPreferences(output_doc, document())); in TEST_F()
55 EXPECT_TRUE(FPDF_ImportPages(output_doc, document(), "1", 0)); in TEST_F()
66 FPDF_ImportNPagesToOne(document(), 612, 792, 2, 1)); in TEST_F()
70 FPDF_ImportNPagesToOne(document(), 612, 792, 5, 1)); in TEST_F()
74 FPDF_ImportNPagesToOne(document(), 792, 612, 8, 1)); in TEST_F()
78 FPDF_ImportNPagesToOne(document(), 792, 612, 128, 1)); in TEST_F()
87 FPDF_ImportNPagesToOne(document(), 612, 792, 0, 3); in TEST_F()
90 FPDF_ImportNPagesToOne(document(), 612, 792, 2, 0); in TEST_F()
[all …]
/external/icing/icing/util/
Ddocument-validator.cc35 const DocumentProto& document, int depth) { in Validate() argument
36 if (document.namespace_().empty()) { in Validate()
41 if (depth == 0 && document.uri().empty()) { in Validate()
45 if (document.schema().empty()) { in Validate()
48 document.namespace_(), ", ", document.uri(), ").")); in Validate()
51 if (document.score() < 0) { in Validate()
55 if (document.creation_timestamp_ms() < 0) { in Validate()
60 if (document.ttl_ms() < 0) { in Validate()
66 auto type_config_or = schema_store_->GetSchemaTypeConfig(document.schema()); in Validate()
70 << document.namespace_() << ", " << document.uri() << ")"; in Validate()
[all …]
/external/testng/doc/
Dbanner.js15 document.write(' <td')
16 document.write(pCurrentPage == pHRef ? ' class="current"' : '')
17 document.write('><a href="')
18 document.write(pHRef)
19 document.write('">')
20 document.write(pValue)
21 document.writeln('</a></td>')
29 document.writeln('<div id="topmenu">')
30 document.writeln(' <table width="100%">')
31 document.writeln(' <tr>')
[all …]
/external/libwebsockets/minimal-examples/ws-server/minimal-ws-server-pmd/mount-origin/
Dexample.js5 var u = document.URL;
33 document.addEventListener("DOMContentLoaded", function() {
38 document.getElementById("m").disabled = 0;
39 document.getElementById("b").disabled = 0;
40 document.getElementById("status").textContent = "ws open "+ ws.extensions;
44 document.getElementById("r").value =
45 document.getElementById("r").value + msg.data + "\n";
46 document.getElementById("r").scrollTop =
47 document.getElementById("r").scrollHeight;
51 document.getElementById("m").disabled = 1;
[all …]
/external/libwebsockets/minimal-examples/http-server/minimal-http-server-eventlib-demos/mount-origin/
Dtest.js4 var f = document.getElementById("file").files[0];
11 document.getElementById("file_info").innerHTML =
15 document.getElementById("file_info").innerHTML =
20 document.getElementById("upload").disabled = dis;
162 var u = document.URL;
211 document.getElementById("wsdi_statustd").style.backgroundColor =
213 document.getElementById("wsdi_status").innerHTML =
219 document.getElementById("number").textContent = msg.data + "\n";
223 document.getElementById("wsdi_statustd").style.backgroundColor =
225 document.getElementById("wsdi_status").textContent =
[all …]
Dlws-common.js18 var h = document.compatMode === "CSS1Compat" &&
20 document.documentElement.clientHeight :
21 document.body.clientHeight;
22 var w = document.compatMode === "CSS1Compat" &&
24 document.documentElement.clientWidth :
25 document.body.clientWidth;
28 if (document.body &&
29 (document.body.scrollWidth || document.body.scrollHeight)) {
30 t = document.body.scrollWidth;
32 t = document.body.scrollHeight;
[all …]
/external/libwebsockets/test-apps/
Dtest.js4 var f = document.getElementById("file").files[0];
11 document.getElementById("file_info").innerHTML =
15 document.getElementById("file_info").innerHTML =
20 document.getElementById("upload").disabled = dis;
162 var u = document.URL;
211 document.getElementById("wsdi_statustd").style.backgroundColor =
213 document.getElementById("wsdi_status").innerHTML =
219 document.getElementById("number").textContent = msg.data + "\n";
223 document.getElementById("wsdi_statustd").style.backgroundColor =
225 document.getElementById("wsdi_status").textContent =
[all …]
Dlws-common.js18 var h = document.compatMode === "CSS1Compat" &&
20 document.documentElement.clientHeight :
21 document.body.clientHeight;
22 var w = document.compatMode === "CSS1Compat" &&
24 document.documentElement.clientWidth :
25 document.body.clientWidth;
28 if (document.body &&
29 (document.body.scrollWidth || document.body.scrollHeight)) {
30 t = document.body.scrollWidth;
32 t = document.body.scrollHeight;
[all …]
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/
DChapter2_3Test.java33 YamlDocument document = new YamlDocument("example2_13.yaml"); in testExample_2_13() local
34 String data = (String) document.getNativeData(); in testExample_2_13()
39 YamlDocument document = new YamlDocument("example2_14.yaml"); in testExample_2_14() local
40 String data = (String) document.getNativeData(); in testExample_2_14()
61 YamlDocument document = new YamlDocument("example2_16.yaml"); in testExample_2_16() local
62 Map<String, String> map = (Map<String, String>) document.getNativeData(); in testExample_2_16()
73 YamlDocument document = new YamlDocument("example2_17.yaml", false); in testExample_2_17() local
74 Map<String, String> map = (Map<String, String>) document.getNativeData(); in testExample_2_17()
86 YamlDocument document = new YamlDocument("example2_17_unicode.yaml"); in testExample_2_17_unicode() local
87 Map<String, String> map = (Map<String, String>) document.getNativeData(); in testExample_2_17_unicode()
[all …]
/external/icing/icing/result/
Dsnippet-retriever_test.cc167 DocumentProto document = in TEST_F() local
182 query_terms, MATCH_EXACT, snippet_spec_, document, section_mask); in TEST_F()
187 GetString(&document, snippet.entries(0).property_name()); in TEST_F()
193 DocumentProto document = in TEST_F() local
208 query_terms, MATCH_EXACT, snippet_spec_, document, section_mask); in TEST_F()
213 GetString(&document, snippet.entries(0).property_name()); in TEST_F()
219 DocumentProto document = in TEST_F() local
234 query_terms, MATCH_EXACT, snippet_spec_, document, section_mask); in TEST_F()
239 GetString(&document, snippet.entries(0).property_name()); in TEST_F()
244 DocumentProto document = in TEST_F() local
[all …]
/external/libwebsockets/minimal-examples/ws-server/minimal-ws-server-ring/mount-origin/
Dexample.js4 var u = document.URL;
32 document.addEventListener("DOMContentLoaded", function() {
37 document.getElementById("m").disabled = 0;
38 document.getElementById("b").disabled = 0;
42 document.getElementById("r").value =
43 document.getElementById("r").value + msg.data + "\n";
44 document.getElementById("r").scrollTop =
45 document.getElementById("r").scrollHeight;
49 document.getElementById("m").disabled = 1;
50 document.getElementById("b").disabled = 1;
[all …]
/external/libwebsockets/minimal-examples/ws-server/minimal-ws-server-timer/mount-origin/
Dexample.js5 var u = document.URL;
33 document.addEventListener("DOMContentLoaded", function() {
38 document.getElementById("m").disabled = 0;
39 document.getElementById("b").disabled = 0;
43 document.getElementById("r").value =
44 document.getElementById("r").value + msg.data + "\n";
45 document.getElementById("r").scrollTop =
46 document.getElementById("r").scrollHeight;
50 document.getElementById("m").disabled = 1;
51 document.getElementById("b").disabled = 1;
[all …]
/external/libwebsockets/minimal-examples/ws-server/minimal-ws-server/mount-origin/
Dexample.js5 var u = document.URL;
33 document.addEventListener("DOMContentLoaded", function() {
38 document.getElementById("m").disabled = 0;
39 document.getElementById("b").disabled = 0;
43 document.getElementById("r").value =
44 document.getElementById("r").value + msg.data + "\n";
45 document.getElementById("r").scrollTop =
46 document.getElementById("r").scrollHeight;
50 document.getElementById("m").disabled = 1;
51 document.getElementById("b").disabled = 1;
[all …]
/external/libwebsockets/minimal-examples/ws-server/minimal-ws-broker/mount-origin/
Dexample.js5 var u = document.URL;
33 document.addEventListener("DOMContentLoaded", function() {
38 document.getElementById("b").disabled = 0;
42 document.getElementById("r").value =
43 document.getElementById("r").value + msg.data + "\n";
44 document.getElementById("r").scrollTop =
45 document.getElementById("r").scrollHeight;
49 document.getElementById("b").disabled = 1;
58 document.getElementById("m").disabled = 0;
65 document.getElementById("m").disabled = 1;
[all …]
/external/google-styleguide/include/
Dstyleguide.js9 var toc = document.getElementById(tocElement);
36 var headings = document.querySelectorAll(headingLevels);
39 var tocHeadingDiv = document.createElement('div');
42 var tocHeading = document.createElement('h3');
46 var tocText = document.createTextNode('Table of Contents');
50 var tocTable = document.createElement('table');
56 var tbody_element = document.createElement('tbody');
118 var toc_tr = document.createElement('tr');
121 var toc_tr_td = document.createElement('td');
123 var toc_category = document.createElement('div');
[all …]
/external/libwebsockets/minimal-examples/http-server/minimal-http-server-fulltext-search/mount-origin/
Dlws-fts.js40 var sr = document.getElementById("searchresults");
41 var ac = document.getElementById("acomplete");
42 var inp = document.getElementById("lws_fts");
50 var sr = document.getElementById("searchresults");
51 var inp = document.getElementById("lws_fts");
82 xhr.open("GET", "../fts/r/" + document.getElementById("lws_fts").value);
92 document.getElementById("lws_fts").value =
104 var ac = document.getElementById("acomplete"),
105 sb = document.getElementById("lws_fts");
128 var inp = document.getElementById("lws_fts");
[all …]
/external/protobuf/
Dupdate_version.py65 document = minidom.parse(filename)
66 rewriter(document)
71 content = document.toxml().replace('<?xml version="1.0" ?>', '')
157 lambda document : ReplaceText(
158 Find(Find(document.documentElement, 'PropertyGroup'), 'VersionPrefix'),
163 lambda document : ReplaceText(
164 Find(Find(document.documentElement, 'metadata'), 'version'),
170 lambda document : ReplaceText(
171 Find(document.documentElement, 'version'), GetFullVersion()))
174 lambda document : ReplaceText(
[all …]

12345678910>>...124