HomeSort by relevance Sort by last modified time
    Searched refs:form (Results 101 - 125 of 1347) sorted by null

1 2 3 45 6 7 8 91011>>

  /prebuilts/go/linux-x86/test/fixedbugs/
issue5358.go 7 // issue 5358: incorrect error message when using f(g()) form on ... args.
  /prebuilts/misc/common/swig/include/2.0.11/perl5/
noembed.h 28 #ifdef form
29 #undef form macro
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/pe/
aligncomm-a.d 4 # Test the aligned form of the .comm pseudo-op.
  /prebuilts/go/darwin-x86/src/math/big/
floatmarsh.go 26 sz := 1 + 1 + 4 // version + mode|acc|form|neg (3+2+2+1bit) + prec
28 if x.form == finite {
45 b := byte(x.mode&7)<<5 | byte((x.acc+1)&3)<<3 | byte(x.form&3)<<1
52 if x.form == finite {
81 z.form = form((b >> 1) & 3)
85 if z.form == finite {
float.go 62 form form
106 // x form neg mant exp
112 // A form value describes the internal representation.
113 type form byte type
115 // The form value order is relevant - do not change!
117 zero form = iota
163 if z.form == finite {
166 z.form = zero
209 if x.form != finite
    [all...]
  /prebuilts/go/linux-x86/src/math/big/
floatmarsh.go 26 sz := 1 + 1 + 4 // version + mode|acc|form|neg (3+2+2+1bit) + prec
28 if x.form == finite {
45 b := byte(x.mode&7)<<5 | byte((x.acc+1)&3)<<3 | byte(x.form&3)<<1
52 if x.form == finite {
81 z.form = form((b >> 1) & 3)
85 if z.form == finite {
float.go 62 form form
106 // x form neg mant exp
112 // A form value describes the internal representation.
113 type form byte type
115 // The form value order is relevant - do not change!
117 zero form = iota
163 if z.form == finite {
166 z.form = zero
209 if x.form != finite
    [all...]
  /external/autotest/tko/
retrieve_logs.cgi 35 form = cgi.FieldStorage(keep_blank_values=True) variable
39 _is_json_request = form.has_key('callback')
43 _local_only = form.has_key('localonly')
48 request_data = form['request'].value
53 return form['job'].value
  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfAccelTable.h 111 // The HeaderData describes the form of each set of data. In general this
113 // (AtomType type) of data, and an encoding form (form). In the case of
117 // When written to disk this will have the form:
127 uint16_t form; // DWARF DW_FORM_ defines member in struct:llvm::DwarfAccelTable::Atom
129 LLVM_CONSTEXPR Atom(uint16_t type, uint16_t form)
130 : type(type), form(form) {}
134 << "Form: " << dwarf::FormEncodingString(form) << "\n"
    [all...]
  /external/lzma/CPP/Common/
CommandLineParser.cpp 115 const CSwitchForm &form = switchForms[switchIndex]; local
117 if (!form.Multi && sw.ThereIs)
126 if (rem < form.MinLen)
135 switch (form.Type)
154 sw.PostCharIndex = FindCharPosInString(form.PostCharSet, (char)c);
  /prebuilts/go/darwin-x86/src/encoding/
encoding.go 15 // marshal itself into a binary form.
17 // MarshalBinary encodes the receiver into a binary form and returns the result.
25 // UnmarshalBinary must be able to decode the form generated by MarshalBinary.
33 // marshal itself into a textual form.
43 // UnmarshalText must be able to decode the form generated by MarshalText.
  /prebuilts/go/darwin-x86/src/mime/multipart/
formdata_test.go 72 Content-Disposition: form-data; name="filea"; filename="filea.txt"
77 Content-Disposition: form-data; name="fileb"; filename="fileb.txt"
82 Content-Disposition: form-data; name="texta"
86 Content-Disposition: form-data; name="textb"
97 Content-Disposition: form-data; name="version"
formdata.go 20 // a Content-Disposition of "form-data".
23 func (r *Reader) ReadForm(maxMemory int64) (*Form, error) {
27 func (r *Reader) readForm(maxMemory int64) (_ *Form, err error) {
28 form := &Form{make(map[string][]string), make(map[string][]*FileHeader)}
31 form.RemoveAll()
63 form.Value[name] = append(form.Value[name], b.String())
95 form.File[name] = append(form.File[name], fh
    [all...]
  /prebuilts/go/linux-x86/src/encoding/
encoding.go 15 // marshal itself into a binary form.
17 // MarshalBinary encodes the receiver into a binary form and returns the result.
25 // UnmarshalBinary must be able to decode the form generated by MarshalBinary.
33 // marshal itself into a textual form.
43 // UnmarshalText must be able to decode the form generated by MarshalText.
  /prebuilts/go/linux-x86/src/mime/multipart/
formdata_test.go 72 Content-Disposition: form-data; name="filea"; filename="filea.txt"
77 Content-Disposition: form-data; name="fileb"; filename="fileb.txt"
82 Content-Disposition: form-data; name="texta"
86 Content-Disposition: form-data; name="textb"
97 Content-Disposition: form-data; name="version"
formdata.go 20 // a Content-Disposition of "form-data".
23 func (r *Reader) ReadForm(maxMemory int64) (*Form, error) {
27 func (r *Reader) readForm(maxMemory int64) (_ *Form, err error) {
28 form := &Form{make(map[string][]string), make(map[string][]*FileHeader)}
31 form.RemoveAll()
63 form.Value[name] = append(form.Value[name], b.String())
95 form.File[name] = append(form.File[name], fh
    [all...]
  /external/curl/lib/
non-ascii.c 314 * Curl_convert_form() is used from http.c, this converts any form items that
317 CURLcode Curl_convert_form(struct Curl_easy *data, struct FormData *form)
324 while(form) {
325 if(form->type == FORM_DATA) {
326 result = Curl_convert_to_network(data, form->line, form->length);
332 form = form->next;
  /external/oauth/core/src/main/java/net/oauth/
OAuth.java 42 public static final String FORM_ENCODED = "application/x-www-form-urlencoded";
88 * Construct a form-urlencoded document containing the given sequence of
100 * Write a form-urlencoded document into the given stream, containing the
122 /** Parse a form-urlencoded document. */
123 public static List<Parameter> decodeForm(String form) {
125 if (!isEmpty(form)) {
126 for (String nvp : form.split("\\&")) {
289 String form = formEncode(parameters); local
290 if (form == null || form.length() <= 0)
    [all...]
  /external/swiftshader/third_party/LLVM/lib/DebugInfo/
DWARFFormValue.cpp 87 // Read the value for the form into value and follow and DW_FORM_indirect
91 switch (Form) {
141 // Set the string value to also be the data for inlined cstr form
143 // and DW_FORM_strp form values
147 Form = data.getULEB128(offset_ptr);
170 return DWARFFormValue::skipValue(Form, debug_info_data, offset_ptr, cu);
174 DWARFFormValue::skipValue(uint16_t form, DataExtractor debug_info_data,
179 switch (form) {
250 form = debug_info_data.getULEB128(offset_ptr);
265 switch (Form) {
    [all...]
  /external/google-breakpad/src/common/dwarf/
functioninfo.h 9 // * Redistributions in binary form must reproduce the above
142 // beginning of the .debug_info section, has a name of ATTR, a form of
143 // FORM, and the actual data of the attribute is in DATA.
146 enum DwarfForm form,
151 // beginning of the .debug_info section, has a name of ATTR, a form of
152 // FORM, and the offset of the referenced DIE from the start of the
156 enum DwarfForm form,
161 // beginning of the .debug_info section, has a name of ATTR, a form of
162 // FORM, and the actual data of the attribute is in DATA.
165 enum DwarfForm form,
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/pages/
InstrumentationPage.java 34 * Page for instrumentation settings, part of the AndroidManifest form editor.
58 * Creates the content in the form hosted in this page.
60 * @param managedForm the form hosted in this page.
65 ScrolledForm form = managedForm.getForm(); local
66 form.setText("Android Manifest Instrumentation");
67 form.setImage(AdtPlugin.getAndroidLogo());
PermissionPage.java 34 * Page for permissions settings, part of the AndroidManifest form editor.
62 * Creates the content in the form hosted in this page.
64 * @param managedForm the form hosted in this page.
69 ScrolledForm form = managedForm.getForm(); local
70 form.setText("Android Manifest Permissions");
71 form.setImage(AdtPlugin.getAndroidLogo());
  /cts/common/util/tests/src/com/android/compatibility/common/util/
MultipartFormTest.java 51 MultipartForm form = new MultipartForm(SERVER_URL); local
52 form.addFormValue("foo", "bar");
53 form.addFormFile("blah", "blah.xml.gz", "blah".getBytes());
54 byte[] data = form.getContentBody();
  /dalvik/dexgen/src/com/android/dexgen/dex/code/form/
Form10x.java 17 package com.android.dexgen.dex.code.form;
SpecialFormat.java 17 package com.android.dexgen.dex.code.form;

Completed in 663 milliseconds

1 2 3 45 6 7 8 91011>>