Home
last modified time | relevance | path

Searched refs:write (Results 1 – 25 of 8888) sorted by relevance

12345678910>>...356

/external/curl/packages/vms/
Dconfig_h.com88 $ write sys$output "Found existing custom file ''file'."
91 $ write sys$output "Creating new sys$disk:[]config_vms.h for you."
162 $ write sys$output "Can not find sys$disk:config.h.in"
165 $ write/symbol sys$output line_out
168 $ write sys$output "Also looked in PRJ_INCLUDE: for these files."
171 $ write tf ""
172 $ write tf -
174 $ write tf -
176 $ write tf -
180 $ write tf -
[all …]
Dgenerate_config_vms_h_curl.com116 $ write sys$output "NOTICE: A LIBIDN port has been detected."
117 $ write sys$output " This port of curl for VMS has not been tested with it."
124 $ write sys$output " LIBIDN support is not enabled."
125 $ write sys$output "Run with the ""libidn"" parameter to attempt to use."
127 $ write sys$output " Untested LIBIDN support requested."
135 $ write sys$output "NOTICE: A LIBSSH2 port has been detected."
136 $ write sys$output " This port of curl for VMS has not been tested with it."
143 $ write sys$output " LIBSSH2 support is not enabled."
144 $ write sys$output "Run with the ""libssh2"" parameter to attempt to use."
146 $ write sys$output " Untested LIBSSH2 support requested."
[all …]
/external/freetype/src/tools/
Dglnames.py4922 write = file.write
4923 write( "#ifndef DEFINE_PS_TABLES_DATA\n" )
4924 write( "#ifdef __cplusplus\n" )
4925 write( ' extern "C"\n' )
4926 write( "#else\n" )
4927 write( " extern\n" )
4928 write( "#endif\n" )
4929 write( "#endif\n" )
4930 write( " const char " + self.master_table +
4932 write( "#ifdef DEFINE_PS_TABLES_DATA\n" )
[all …]
/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 …]
/external/llvm-project/llvm/lib/BinaryFormat/
DMsgPackWriter.cpp23 void Writer::writeNil() { EW.write(FirstByte::Nil); } in writeNil()
25 void Writer::write(bool b) { EW.write(b ? FirstByte::True : FirstByte::False); } in write() function in Writer
27 void Writer::write(int64_t i) { in write() function in Writer
29 write(static_cast<uint64_t>(i)); in write()
34 EW.write(static_cast<int8_t>(i)); in write()
39 EW.write(FirstByte::Int8); in write()
40 EW.write(static_cast<int8_t>(i)); in write()
45 EW.write(FirstByte::Int16); in write()
46 EW.write(static_cast<int16_t>(i)); in write()
51 EW.write(FirstByte::Int32); in write()
[all …]
/external/swiftshader/third_party/llvm-10.0/llvm/lib/BinaryFormat/
DMsgPackWriter.cpp23 void Writer::writeNil() { EW.write(FirstByte::Nil); } in writeNil()
25 void Writer::write(bool b) { EW.write(b ? FirstByte::True : FirstByte::False); } in write() function in Writer
27 void Writer::write(int64_t i) { in write() function in Writer
29 write(static_cast<uint64_t>(i)); in write()
34 EW.write(static_cast<int8_t>(i)); in write()
39 EW.write(FirstByte::Int8); in write()
40 EW.write(static_cast<int8_t>(i)); in write()
45 EW.write(FirstByte::Int16); in write()
46 EW.write(static_cast<int16_t>(i)); in write()
51 EW.write(FirstByte::Int32); in write()
[all …]
/external/skia/gn/
Dgn_to_cmake.py62 out.write('set("')
63 out.write(CMakeStringEscape(variable_name))
64 out.write('" "')
65 out.write(CMakeStringEscape(value))
66 out.write('")\n')
75 out.write('list(APPEND "')
76 out.write(CMakeStringEscape(variable_name))
77 out.write('"\n "')
78 out.write('"\n "'.join([CMakeStringEscape(value) for value in values]))
79 out.write('")\n')
[all …]
/external/skqp/gn/
Dgn_to_cmake.py62 out.write('set("')
63 out.write(CMakeStringEscape(variable_name))
64 out.write('" "')
65 out.write(CMakeStringEscape(value))
66 out.write('")\n')
75 out.write('list(APPEND "')
76 out.write(CMakeStringEscape(variable_name))
77 out.write('"\n "')
78 out.write('"\n "'.join([CMakeStringEscape(value) for value in values]))
79 out.write('")\n')
[all …]
/external/rust/crates/grpcio-sys/grpc/tools/release/
Drelease_notes.py182 file.write(content_header.format(version=version, date=date))
183 file.write("PRs with missing release notes label - please fix in Github\n")
184 file.write("---\n")
185 file.write("\n")
188 file.write("\n".join(langs_pr["nolabel"]))
190 file.write("- None")
191 file.write("\n")
192 file.write("\n")
193 file.write("PRs with missing lang label - please fix in Github\n")
194 file.write("---\n")
[all …]
/external/chromium-trace/catapult/common/py_trace_event/third_party/protobuf/
Dencoder.py69 def EncodeVarint(write, value): argument
73 write(six.int2byte(0x80|bits))
76 return write(six.int2byte(bits))
85 def EncodeSignedVarint(write, value): argument
91 write(six.int2byte(0x80|bits))
94 return write(six.int2byte(bits))
133 def EncodePackedField(write, value): argument
134 write(tag_bytes)
138 local_EncodeVarint(write, size)
140 encode_value(write, element)
[all …]
/external/llvm-project/clang/test/OpenMP/
Datomic_write_codegen.c87 #pragma omp atomic write in main()
91 #pragma omp atomic write in main()
95 #pragma omp atomic write release in main()
99 #pragma omp atomic write in main()
103 #pragma omp atomic write in main()
107 #pragma omp atomic write in main()
111 #pragma omp atomic write in main()
115 #pragma omp atomic write in main()
119 #pragma omp atomic write in main()
123 #pragma omp atomic write in main()
[all …]
/external/clang/test/OpenMP/
Datomic_write_codegen.c83 #pragma omp atomic write in main()
87 #pragma omp atomic write in main()
91 #pragma omp atomic write in main()
95 #pragma omp atomic write in main()
99 #pragma omp atomic write in main()
103 #pragma omp atomic write in main()
107 #pragma omp atomic write in main()
111 #pragma omp atomic write in main()
115 #pragma omp atomic write in main()
119 #pragma omp atomic write in main()
[all …]
/external/skqp/src/sksl/
DSkSLMetalCodeGenerator.cpp35 void MetalCodeGenerator::write(const char* s) { in write() function in SkSL::MetalCodeGenerator
49 this->write(s); in writeLine()
54 void MetalCodeGenerator::write(const String& s) { in write() function in SkSL::MetalCodeGenerator
55 this->write(s.c_str()); in write()
76 this->write(type.name()); in writeType()
85 this->write("}"); in writeType()
89 this->write(to_string(type.columns())); in writeType()
93 this->write(to_string(type.columns())); in writeType()
94 this->write("x"); in writeType()
95 this->write(to_string(type.rows())); in writeType()
[all …]
DSkSLGLSLCodeGenerator.cpp24 void GLSLCodeGenerator::write(const char* s) { in write() function in SkSL::GLSLCodeGenerator
38 this->write(s); in writeLine()
43 void GLSLCodeGenerator::write(const String& s) { in write() function in SkSL::GLSLCodeGenerator
44 this->write(s.c_str()); in write()
47 void GLSLCodeGenerator::write(StringFragment s) { in write() function in SkSL::GLSLCodeGenerator
56 fOut->write(s.fChars, s.fLength); in write()
74 fExtensions.write(name.c_str(), name.length()); in writeExtension()
170 this->write(type.fName); in writeType()
175 this->write("struct "); in writeType()
176 this->write(type.fName); in writeType()
[all …]
/external/cbor-java/src/main/java/co/nstant/in/cbor/encoder/
DAbstractEncoder.java30 outputStream.write(symbol); in encodeTypeChunked()
39 write((int) (symbol | length)); in encodeTypeAndLength()
42 write(symbol); in encodeTypeAndLength()
43 write((int) length); in encodeTypeAndLength()
46 write(symbol); in encodeTypeAndLength()
47 write((int) (length >> 8)); in encodeTypeAndLength()
48 write((int) (length & 0xFF)); in encodeTypeAndLength()
51 write(symbol); in encodeTypeAndLength()
52 write((int) ((length >> 24) & 0xFF)); in encodeTypeAndLength()
53 write((int) ((length >> 16) & 0xFF)); in encodeTypeAndLength()
[all …]
/external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/Format/
DInstructionMethodItem.java86 writer.write("#"); in writeInvalidItemIndex()
87 writer.write(ex.getMessage()); in writeInvalidItemIndex()
88 writer.write("\n"); in writeInvalidItemIndex()
109 writer.write("#was invalid verification error type: "); in writeTo()
111 writer.write("\n"); in writeTo()
133 … indentingWriter.write(ReferenceUtil.getReferenceString(reference, classContext)); in writeTo()
140 referenceWritable = indentingWriter -> writer.write(referenceString); in writeTo()
142 writer.write("#invalid reference type: "); in writeTo()
145 referenceWritable = indentingWriter -> writer.write("invalid_reference"); in writeTo()
154 … indentingWriter.write(ReferenceUtil.getReferenceString(reference2, classContext)); in writeTo()
[all …]
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/
DInstructionWriter.java114 public void write(@Nonnull Instruction10t instruction) { in write() method in InstructionWriter
116 writer.write(getOpcodeValue(instruction.getOpcode())); in write()
117 writer.write(instruction.getCodeOffset()); in write()
123 public void write(@Nonnull Instruction10x instruction) { in write() method in InstructionWriter
125 writer.write(getOpcodeValue(instruction.getOpcode())); in write()
126 writer.write(0); in write()
132 public void write(@Nonnull Instruction11n instruction) { in write() method in InstructionWriter
134 writer.write(getOpcodeValue(instruction.getOpcode())); in write()
135 writer.write(packNibbles(instruction.getRegisterA(), instruction.getNarrowLiteral())); in write()
141 public void write(@Nonnull Instruction11x instruction) { in write() method in InstructionWriter
[all …]
/external/python/cpython2/Demo/parser/
Dunparse.py36 self.f.write("")
41 self.f.write("\n"+" "*self._indent + text)
43 def write(self, text): member in Unparser
45 self.f.write(text)
49 self.write(":")
84 interleave(lambda: self.write(", "), self.dispatch, t.names)
92 self.write("." * t.level)
94 self.write(t.module)
95 self.write(" import ")
96 interleave(lambda: self.write(", "), self.dispatch, t.names)
[all …]
/external/protobuf/python/google/protobuf/internal/
Dencoder.py375 def EncodeVarint(write, value, unused_deterministic=None): argument
379 write(six.int2byte(0x80|bits))
382 return write(six.int2byte(bits))
391 def EncodeSignedVarint(write, value, unused_deterministic=None): argument
397 write(six.int2byte(0x80|bits))
400 return write(six.int2byte(bits))
444 def EncodePackedField(write, value, deterministic): argument
445 write(tag_bytes)
449 local_EncodeVarint(write, size, deterministic)
451 encode_value(write, element, deterministic)
[all …]
/external/arm-trusted-firmware/lib/extensions/amu/aarch64/
Damu_helpers.S74 1: write AMEVCNTR00_EL0 /* index 0 */
75 write AMEVCNTR01_EL0 /* index 1 */
76 write AMEVCNTR02_EL0 /* index 2 */
77 write AMEVCNTR03_EL0 /* index 3 */
149 1: write AMEVCNTR10_EL0 /* index 0 */
150 write AMEVCNTR11_EL0 /* index 1 */
151 write AMEVCNTR12_EL0 /* index 2 */
152 write AMEVCNTR13_EL0 /* index 3 */
153 write AMEVCNTR14_EL0 /* index 4 */
154 write AMEVCNTR15_EL0 /* index 5 */
[all …]
/external/tensorflow/tensorflow/lite/testing/
Dgenerate_examples_report.py52 fp.write("<td style='background-color: %s' onclick='%s'>%s</td>\n" % (
55 fp.write("""<html>
70 fp.write("<script> \n")
71 fp.write("""
78 fp.write("var data = \n")
82 fp.write(logs)
83 fp.write(";</script>\n")
86 fp.write("""
98 fp.write("<table>\n")
99 fp.write("<tr><td class='horiz'>\n")
[all …]
/external/skia/src/sksl/codegen/
DSkSLMetalCodeGenerator.cpp47 void MetalCodeGenerator::write(const char* s) { in write() function in SkSL::MetalCodeGenerator
61 this->write(s); in writeLine()
65 void MetalCodeGenerator::write(const String& s) { in write() function in SkSL::MetalCodeGenerator
66 this->write(s.c_str()); in write()
128 this->write(this->typeName(type)); in writeType()
218 this->write(" "); in getOutParamHelper()
219 this->write(name); in getOutParamHelper()
220 this->write("("); in getOutParamHelper()
232 this->write(separator); in getOutParamHelper()
242 this->write("&"); in getOutParamHelper()
[all …]
/external/libxml2/python/
Dgenerator.py455 include.write("#if %s\n" % cond)
456 export.write("#if %s\n" % cond)
457 output.write("#if %s\n" % cond)
459 include.write("PyObject * ")
460 include.write("libxml_%s(PyObject *self, PyObject *args);\n" % (name))
462 export.write(" { (char *)\"%s\", libxml_%s, METH_VARARGS, NULL },\n" %
468 include.write("#endif\n")
469 export.write("#endif\n")
470 output.write("#endif\n")
475 include.write("#endif\n")
[all …]
/external/capstone/suite/
Dautogen_x86imm.py23 f2.write("{2, %s},\n" %name)
25 f2.write("{2, %s},\n" %name)
27 f2.write("{4, %s},\n" %name)
29 f2.write("{4, %s},\n" %name)
31 f2.write("{8, %s},\n" %name)
33 f2.write("{8, %s},\n" %name)
35 f2.write("{8, %s},\n" %name)
37 f2.write("{8, %s},\n" %name)
39 f2.write("{8, %s},\n" %name)
41 f2.write("{2, %s},\n" %name)
[all …]
/external/bouncycastle/repackaged_platform/bcprov/src/main/java/com/android/internal/org/bouncycastle/asn1/
DASN1OutputStream.java59 write((byte)(size | 0x80)); in writeLength()
63 write((byte)(length >> i)); in writeLength()
68 write((byte)length); in writeLength()
72 final void write(int b) in write() method in ASN1OutputStream
75 os.write(b); in write()
78 final void write(byte[] bytes, int off, int len) in write() method in ASN1OutputStream
81 os.write(bytes, off, len); in write()
115 write(tag); in writeEncoded()
118 write(contents); in writeEncoded()
129 write(tag); in writeEncoded()
[all …]

12345678910>>...356