/aosp_15_r20/external/doclava/res/assets/templates-sdk/ |
H A D | footer.cs | 3 <div class="dac-footer<?cs if:fullpage ?> dac-landing<?cs /if ?>"> 4 <div class="cols dac-footer-main"> 5 <div class="col-1of2"> 6 …<a class="dac-footer-getnews" id="newsletter" data-modal-toggle="newsletter" href="javascript:;">G… 7 class="dac-fab dac-primary"><i class="dac-sprite dac-mail"></i></span></a> 9 <div class="col-1of2 dac-footer-reachout"> 10 <div class="dac-footer-contact"> 11 <a class="dac-footer-contact-link" href="http://android-developers.blogspot.com/">Blog</a> 12 <a class="dac-footer-contact-link" href="/support.html">Support</a> 14 <div class="dac-footer-social"> [all …]
|
/aosp_15_r20/external/python/cpython3/Lib/test/ |
D | test_cgi.py | 44 fp = BytesIO(buf.encode('latin-1')) # FieldStorage expects bytes 46 env['CONTENT_TYPE'] = 'application/x-www-form-urlencoded' 75 ("x=1&y=2.0&z=2-3.%2b0", {'x': ['1'], 'y': ['2.0'], 'z': ['2-3.+0']}), 76 …ustomer&order_id=0bb2e248638833d48cb7fed300000f1b&expire=964546263&lobale=en-US&kid=130003.300038&… 81 'lobale': ['en-US'], 106 def gen_result(data, environ): argument 107 encoding = 'latin-1' 108 fake_stdin = BytesIO(data.encode(encoding)) 110 form = cgi.FieldStorage(fp=fake_stdin, environ=environ, encoding=encoding) 113 for k, v in dict(form).items(): [all …]
|
/aosp_15_r20/external/jsoup/src/test/java/org/jsoup/nodes/ |
H A D | FormElementTest.java | 31 …String html = "<form id=1><button id=1><fieldset id=2 /><input id=3><keygen id=4><object id=5><out… in hasAssociatedControls() 35 FormElement form = (FormElement) doc.select("form").first(); in hasAssociatedControls() local 36 assertEquals(8, form.elements().size()); in hasAssociatedControls() 40 … String html = "<form><input name='one' value='two'><select name='three'><option value='not'>" + in createsFormData() 47 "</form>"; in createsFormData() 49 FormElement form = (FormElement) doc.select("form").first(); in createsFormData() local 50 List<Connection.KeyVal> data = form.formData(); in createsFormData() local 52 assertEquals(6, data.size()); in createsFormData() 53 assertEquals("one=two", data.get(0).toString()); in createsFormData() 54 assertEquals("three=four", data.get(1).toString()); in createsFormData() [all …]
|
/aosp_15_r20/external/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/DWARF/ |
H A D | DWARFFormValue.cpp | 1 //===- DWARFFormValue.cpp -------------------------------------------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 36 // --- These can be FC_SectionOffset in DWARF3 and below: 39 // --- 80 DWARFFormValue DWARFFormValue::createFromSValue(dwarf::Form F, int64_t V) { in createFromSValue() 84 DWARFFormValue DWARFFormValue::createFromUValue(dwarf::Form F, uint64_t V) { in createFromUValue() 88 DWARFFormValue DWARFFormValue::createFromPValue(dwarf::Form F, const char *V) { in createFromPValue() 92 DWARFFormValue DWARFFormValue::createFromBlockValue(dwarf::Form F, in createFromBlockValue() 96 V.data = D.data(); in createFromBlockValue() [all …]
|
/aosp_15_r20/external/swiftshader/third_party/llvm-16.0/llvm/lib/DebugInfo/DWARF/ |
H A D | DWARFFormValue.cpp | 1 //===- DWARFFormValue.cpp -------------------------------------------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 38 // --- These can be FC_SectionOffset in DWARF3 and below: 41 // --- 82 DWARFFormValue DWARFFormValue::createFromSValue(dwarf::Form F, int64_t V) { in createFromSValue() 86 DWARFFormValue DWARFFormValue::createFromUValue(dwarf::Form F, uint64_t V) { in createFromUValue() 90 DWARFFormValue DWARFFormValue::createFromPValue(dwarf::Form F, const char *V) { in createFromPValue() 94 DWARFFormValue DWARFFormValue::createFromBlockValue(dwarf::Form F, in createFromBlockValue() 98 V.data = D.data(); in createFromBlockValue() [all …]
|
/aosp_15_r20/external/libcups/cgi-bin/ |
H A D | var.c | 2 * CGI form variable and array functions for CUPS. 4 * Copyright © 2007-2020 by Apple Inc. 5 * Copyright © 1997-2005 by Easy Software Products. 16 #include "cgi-private.h" 28 * Data structure to hold all the CGI form variables and arrays... 31 typedef struct /**** Form variable structure ****/ 46 static int form_count = 0, /* Form variable count */ 49 /* Form variables */ 67 static int cgi_initialize_string(const char *data); 75 * 'cgiCheckVariables()' - Check for the presence of "required" variables. [all …]
|
/aosp_15_r20/external/libbrillo/brillo/http/ |
H A D | http_form_data.h | 2 // Use of this source code is governed by a BSD-style license that can be 26 // An abstract base class for all types of form fields used by FormData class. 27 // This class represents basic information about a form part in 28 // multipart/form-data and multipart/mixed content. 35 // The constructor that takes the basic data part information common to 38 // Content-Disposition: form-data; name="field1" 39 // Content-Type: text/plain;charset=windows-1250 40 // Content-Transfer-Encoding: quoted-printable 43 // |name| = the part name ("name" parameter of Content-Disposition header; 45 // |content_disposition| = the part disposition ("form-data" in the example) [all …]
|
/aosp_15_r20/external/google-breakpad/src/common/dwarf/ |
H A D | dwarf2reader.h | 1 // -*- mode: C++ -*- 11 // * Redistributions in binary form must reproduce the above 26 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 31 // CFI reader author: Jim Blandy <[email protected]> <jimb@red-bean.com> 66 // the data for the section, and the size of the section. 69 // Abstract away the difference between elf and mach-o section names. 70 // Elf-names use ".section_name, mach-o uses "__section_name". Pass "name" in 71 // the elf form, ".section_name". 75 // Most of the time, this struct functions as a simple attribute and form pair. 76 // However, Dwarf5 DW_FORM_implicit_const means that a form may have its value [all …]
|
/aosp_15_r20/external/llvm/lib/DebugInfo/DWARF/ |
H A D | DWARFFormValue.cpp | 1 //===-- DWARFFormValue.cpp ------------------------------------------------===// 8 //===----------------------------------------------------------------------===// 87 // --- These can be FC_SectionOffset in DWARF3 and below: 90 // --- 112 // First, check DWARF4 form classes. in isFormClass() 113 if (Form < makeArrayRef(DWARF4FormClasses).size() && in isFormClass() 114 DWARF4FormClasses[Form] == FC) in isFormClass() 117 switch (Form) { in isFormClass() 130 return (Form == DW_FORM_data4 || Form == DW_FORM_data8) && in isFormClass() 134 bool DWARFFormValue::extractValue(DataExtractor data, uint32_t *offset_ptr, in extractValue() argument [all …]
|
/aosp_15_r20/external/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/AsmPrinter/ |
H A D | DIE.cpp | 1 //===--- lib/CodeGen/DIE.cpp - DWARF Info Entries -------------------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 9 // Data structures for DWARF info entries. 11 //===----------------------------------------------------------------------===// 19 #include "llvm/Config/llvm-config.h" 36 //===----------------------------------------------------------------------===// 38 //===----------------------------------------------------------------------===// 40 /// Profile - Used to gather unique data for the abbreviation folding set. 46 ID.AddInteger(unsigned(Form)); in Profile() [all …]
|
/aosp_15_r20/external/swiftshader/third_party/llvm-16.0/llvm/lib/CodeGen/AsmPrinter/ |
H A D | DIE.cpp | 1 //===--- lib/CodeGen/DIE.cpp - DWARF Info Entries -------------------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 9 // Data structures for DWARF info entries. 11 //===----------------------------------------------------------------------===// 17 #include "llvm/Config/llvm-config.h" 30 //===----------------------------------------------------------------------===// 32 //===----------------------------------------------------------------------===// 34 /// Profile - Used to gather unique data for the abbreviation folding set. 40 ID.AddInteger(unsigned(Form)); in Profile() [all …]
|
/aosp_15_r20/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/DWARF/ |
H A D | DWARFFormValue.h | 1 //===- DWARFFormValue.h -----------------------------------------*- C++ -*-===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 53 const uint8_t *data = nullptr; member 57 dwarf::Form Form; /// Form for this value. variable 58 ValueType Value; /// Contains all data for the form. 62 DWARFFormValue(dwarf::Form F, ValueType V) : Form(F), Value(V) {} in DWARFFormValue() 65 DWARFFormValue(dwarf::Form F = dwarf::Form(0)) : Form(F) {} in Form() function 67 static DWARFFormValue createFromSValue(dwarf::Form F, int64_t V); 68 static DWARFFormValue createFromUValue(dwarf::Form F, uint64_t V); [all …]
|
/aosp_15_r20/external/curl/tests/data/ |
H A D | test650 | 6 FORM 11 # Server-side 13 <data nocheck="yes"> 16 Server: test-server/fake swsclose 18 Content-Type: text/html 22 </data> 26 Server: test-server/fake 27 Content-Length: 6 29 Content-Type: text/html 31 -foo- [all …]
|
/aosp_15_r20/external/python/cpython2/Lib/test/ |
D | test_cgi.py | 32 return -1 50 env['CONTENT_TYPE'] = 'application/x-www-form-urlencoded' 82 ("x=1&y=2.0&z=2-3.%2b0", {'x': ['1'], 'y': ['2.0'], 'z': ['2-3.+0']}), 83 ("x=1;y=2.0&z=2-3.%2b0", {'x': ['1'], 'y': ['2.0'], 'z': ['2-3.+0']}), 84 ("x=1;y=2.0;z=2-3.%2b0", {'x': ['1'], 'y': ['2.0'], 'z': ['2-3.+0']}), 85 …ustomer&order_id=0bb2e248638833d48cb7fed300000f1b&expire=964546263&lobale=en-US&kid=130003.300038&… 90 'lobale': ['en-US'], 112 def gen_result(data, environ): argument 113 fake_stdin = StringIO(data) 115 form = cgi.FieldStorage(fp=fake_stdin, environ=environ) [all …]
|
/aosp_15_r20/prebuilts/go/linux-x86/src/mime/multipart/ |
D | multipart_test.go | 2 // Use of this source code is governed by a BSD-style 21 if !mr.isBoundaryDelimiterLine([]byte("--myBoundary\r\n")) { 24 if !mr.isBoundaryDelimiterLine([]byte("--myBoundary \r\n")) { 27 if !mr.isBoundaryDelimiterLine([]byte("--myBoundary \n")) { 30 if mr.isBoundaryDelimiterLine([]byte("--myBoundary bogus \n")) { 33 if mr.isBoundaryDelimiterLine([]byte("--myBoundary bogus--")) { 53 {`form-data; name="foo"`, "foo", ""}, 54 {` form-data ; name=foo`, "foo", ""}, 55 {`FORM-DATA;name="foo"`, "foo", ""}, 56 {` FORM-DATA ; name="foo"`, "foo", ""}, [all …]
|
D | formdata_test.go | 2 // Use of this source code is governed by a BSD-style 84 t.Fatal("ReadForm(MaxInt64): missing form") 139 --MyBoundary 140 Content-Disposition: form-data; name="hiddenfile"; filename="" 141 Content-Type: text/plain 144 --MyBoundary-- 148 --MyBoundary 149 Content-Disposition: form-data; name="filea"; filename="filea.txt" 150 Content-Type: text/plain 153 --MyBoundary-- [all …]
|
/aosp_15_r20/external/aws-sdk-java-v2/services/amplifyuibuilder/src/main/resources/codegen-resources/ |
H A D | service-2.json | 4 "apiVersion":"2021-08-11", 7 "protocol":"rest-json", 12 "uid":"amplifyuibuilder-2021-08-11" 48 "documentation":"<p>Creates a new form for an Amplify app.</p>", 98 "documentation":"<p>Deletes a form from an Amplify app.</p>", 159 …"documentation":"<p>Exports form configurations to code that is ready to integrate into an Amplify… 180 "requestUri":"/app/{appId}/environment/{environmentName}/codegen-jobs/{id}", 223 "documentation":"<p>Returns an existing form for an Amplify app.</p>" 260 "requestUri":"/app/{appId}/environment/{environmentName}/codegen-jobs", 329 "documentation":"<p>Stores the metadata information about a feature on a form.</p>" [all …]
|
/aosp_15_r20/out/soong/ndk/ |
D | NOTICE | 7 http://www.apache.org/licenses/LICENSE-2.0 22 2. Redistributions in binary form must reproduce the above copyright 34 SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 40 ------------------------------------------------------------------- 42 Copyright (c) 2009-2013 The Linux Foundation. All rights reserved. 48 * Redistributions in binary form must reproduce the above copyright 61 SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 67 ------------------------------------------------------------------- 77 ------------------------------------------------------------------- 87 2. Redistributions in binary form must reproduce the above copyright [all …]
|
/aosp_15_r20/external/llvm/lib/CodeGen/AsmPrinter/ |
H A D | DIE.cpp | 1 //===--- lib/CodeGen/DIE.cpp - DWARF Info Entries -------------------------===// 8 //===----------------------------------------------------------------------===// 10 // Data structures for DWARF info entries. 12 //===----------------------------------------------------------------------===// 34 //===----------------------------------------------------------------------===// 36 //===----------------------------------------------------------------------===// 38 /// Profile - Used to gather unique data for the abbreviation folding set. 44 ID.AddInteger(unsigned(Form)); in Profile() 47 //===----------------------------------------------------------------------===// 49 //===----------------------------------------------------------------------===// [all …]
|
/aosp_15_r20/external/llvm/include/llvm/CodeGen/ |
H A D | DIE.h | 1 //===--- lib/CodeGen/DIE.h - DWARF Info Entries -----------------*- C++ -*-===// 8 //===----------------------------------------------------------------------===// 10 // Data structures for DWARF info entries. 12 //===----------------------------------------------------------------------===// 31 //===--------------------------------------------------------------------===// 32 /// DIEAbbrevData - Dwarf abbreviation data, describes one attribute of a 35 /// Attribute - Dwarf attribute code. 39 /// Form - Dwarf form code. 41 dwarf::Form Form; variable 44 DIEAbbrevData(dwarf::Attribute A, dwarf::Form F) : Attribute(A), Form(F) {} in DIEAbbrevData() [all …]
|
/aosp_15_r20/external/curl/docs/ |
H A D | TheArtOfHttpScripting.md | 1 <!-- 4 SPDX-License-Identifier: curl 5 --> 15 extract information from the web, to fake users, to post or upload data to 21 invoke `curl --help` or `curl --manual` to get basic information about it. 24 the data, it sends data and it retrieves the information. You probably need 30 HTTP is the protocol used to fetch data from web servers. It is a simple 43 is the plain data you requested, like the actual HTML or the image etc. 47 Using curl's option [`--verbose`](https://curl.se/docs/manpage.html#-v) (`-v` 51 `--verbose` is the single most useful option when it comes to debug or even [all …]
|
/aosp_15_r20/external/swiftshader/third_party/llvm-16.0/llvm/include/llvm/DebugInfo/DWARF/ |
H A D | DWARFFormValue.h | 1 //===- DWARFFormValue.h -----------------------------------------*- C++ -*-===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 53 const uint8_t *data = nullptr; member 57 dwarf::Form Form; /// Form for this value. variable 60 ValueType Value; /// Contains all data for the form. 64 DWARFFormValue(dwarf::Form F, ValueType V) : Form(F), Value(V) {} in DWARFFormValue() 67 DWARFFormValue(dwarf::Form F = dwarf::Form(0)) : Form(F) {} in Form() function 69 static DWARFFormValue createFromSValue(dwarf::Form F, int64_t V); 70 static DWARFFormValue createFromUValue(dwarf::Form F, uint64_t V); [all …]
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/include/llvm/DebugInfo/DWARF/ |
D | DWARFFormValue.h | 1 //===- DWARFFormValue.h -----------------------------------------*- C++ -*-===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 52 const uint8_t *data = nullptr; member 57 dwarf::Form Form; /// Form for this value. 60 ValueType Value; /// Contains all data for the form. 64 DWARFFormValue(dwarf::Form F, ValueType V) : Form(F), Value(V) {} in DWARFFormValue() 67 DWARFFormValue(dwarf::Form F = dwarf::Form(0)) : Form(F) {} in Form() function 69 static DWARFFormValue createFromSValue(dwarf::Form F, int64_t V); 70 static DWARFFormValue createFromUValue(dwarf::Form F, uint64_t V); [all …]
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/include/llvm/DebugInfo/DWARF/ |
D | DWARFFormValue.h | 1 //===- DWARFFormValue.h -----------------------------------------*- C++ -*-===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 52 const uint8_t *data = nullptr; member 57 dwarf::Form Form; /// Form for this value. 60 ValueType Value; /// Contains all data for the form. 64 DWARFFormValue(dwarf::Form F, ValueType V) : Form(F), Value(V) {} in DWARFFormValue() 67 DWARFFormValue(dwarf::Form F = dwarf::Form(0)) : Form(F) {} in Form() function 69 static DWARFFormValue createFromSValue(dwarf::Form F, int64_t V); 70 static DWARFFormValue createFromUValue(dwarf::Form F, uint64_t V); [all …]
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/include/llvm/DebugInfo/DWARF/ |
D | DWARFFormValue.h | 1 //===- DWARFFormValue.h -----------------------------------------*- C++ -*-===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 52 const uint8_t *data = nullptr; member 57 dwarf::Form Form; /// Form for this value. 60 ValueType Value; /// Contains all data for the form. 64 DWARFFormValue(dwarf::Form F, ValueType V) : Form(F), Value(V) {} in DWARFFormValue() 67 DWARFFormValue(dwarf::Form F = dwarf::Form(0)) : Form(F) {} in Form() function 69 static DWARFFormValue createFromSValue(dwarf::Form F, int64_t V); 70 static DWARFFormValue createFromUValue(dwarf::Form F, uint64_t V); [all …]
|