Home
last modified time | relevance | path

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

12345678910>>...191

/external/v8/
Dgenmakefiles.py36 out.write(_makefileCommonHeader(module_name))
37 out.write('LOCAL_MODULE_CLASS := STATIC_LIBRARIES\n')
39 out.write('LOCAL_SRC_FILES := \\\n')
41 out.write(_makefileSources(sources))
43 out.write('LOCAL_C_INCLUDES := \\\n')
44 out.write('\t$(LOCAL_PATH)/src \\\n')
45 out.write('\t$(LOCAL_PATH)/include\n')
47 out.write('include $(BUILD_STATIC_LIBRARY)\n')
54 out.write(_makefileCommonHeader('v8mkpeephole'))
55 out.write('LOCAL_SRC_FILES := \\\n')
[all …]
/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/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/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/xmlwriter/src/org/jheer/
DXMLWriter.java91 public void write(String s) throws IOException { in write() method in XMLWriter
92 m_out.write(s); in write()
102 m_out.write(s); in writeln()
103 m_out.write("\n"); in writeln()
110 m_out.write("\n"); in writeln()
119 m_out.write("<?xml version=\"1.0\" encoding=\"UTF-8\"?>"); in begin()
133 m_out.write(header); in begin()
144 m_out.write("<!-- "); in comment()
145 m_out.write(comment); in comment()
146 m_out.write(" -->"); in comment()
[all …]
/external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/Format/
DInstructionMethodItem.java84 writer.write("#"); in writeInvalidItemIndex()
85 writer.write(ex.getMessage()); in writeInvalidItemIndex()
86 writer.write("\n"); in writeInvalidItemIndex()
103 writer.write("#was invalid verification error type: "); in writeTo()
105 writer.write("\n"); in writeTo()
126 writer.write("#invalid reference type: "); in writeTo()
144 writer.write("#invalid reference type: "); in writeTo()
184 writer.write("#invalid payload reference\n"); in writeTo()
191 writer.write("#disallowed odex opcode\n"); in writeTo()
197 writer.write("#"); in writeTo()
[all …]
/external/protobuf/python/google/protobuf/internal/
Dencoder.py372 def EncodeVarint(write, value): argument
376 write(six.int2byte(0x80|bits))
379 return write(six.int2byte(bits))
388 def EncodeSignedVarint(write, value): argument
394 write(six.int2byte(0x80|bits))
397 return write(six.int2byte(bits))
440 def EncodePackedField(write, value): argument
441 write(tag_bytes)
445 local_EncodeVarint(write, size)
447 encode_value(write, element)
[all …]
/external/boringssl/src/util/
Dgenerate_build_files.py83 out.write('%s := \\\n' % name)
85 out.write(' %s\\\n' % f)
86 out.write('\n')
91 blueprint.write(self.header.replace('#', '//'))
93 blueprint.write('cc_defaults {\n')
94 blueprint.write(' name: "libcrypto_sources",\n')
95 blueprint.write(' srcs: [\n')
97 blueprint.write(' "%s",\n' % f)
98 blueprint.write(' ],\n')
99 blueprint.write(' target: {\n')
[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/nanopb-c/generator/google/protobuf/internal/
Dencoder.py344 def EncodeVarint(write, value): argument
348 write(local_chr(0x80|bits))
351 return write(local_chr(bits))
361 def EncodeSignedVarint(write, value): argument
367 write(local_chr(0x80|bits))
370 return write(local_chr(bits))
413 def EncodePackedField(write, value): argument
414 write(tag_bytes)
418 local_EncodeVarint(write, size)
420 encode_value(write, element)
[all …]
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/
DInstructionWriter.java106 public void write(@Nonnull Instruction10t instruction) { in write() method in InstructionWriter
108 writer.write(getOpcodeValue(instruction.getOpcode())); in write()
109 writer.write(instruction.getCodeOffset()); in write()
115 public void write(@Nonnull Instruction10x instruction) { in write() method in InstructionWriter
117 writer.write(getOpcodeValue(instruction.getOpcode())); in write()
118 writer.write(0); in write()
124 public void write(@Nonnull Instruction11n instruction) { in write() method in InstructionWriter
126 writer.write(getOpcodeValue(instruction.getOpcode())); in write()
127 writer.write(packNibbles(instruction.getRegisterA(), instruction.getNarrowLiteral())); in write()
133 public void write(@Nonnull Instruction11x instruction) { in write() method in InstructionWriter
[all …]
/external/skia/src/sksl/
DSkSLGLSLCodeGenerator.cpp23 void GLSLCodeGenerator::write(const char* s) { in write() function in SkSL::GLSLCodeGenerator
37 this->write(s); in writeLine()
42 void GLSLCodeGenerator::write(const SkString& s) { in write() function in SkSL::GLSLCodeGenerator
43 this->write(s.c_str()); in write()
63 this->write(type.name()); in writeType()
77 this->write("}"); in writeType()
79 this->write(type.name()); in writeType()
144 this->write("((" + tmpVar1 + " = "); in writeMinAbsHack()
146 this->write(") < (" + tmpVar2 + " = "); in writeMinAbsHack()
148 this->write(") ? " + tmpVar1 + " : " + tmpVar2 + ")"); in writeMinAbsHack()
[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/v8/tools/
Dgen-inlining-tests.py300 write(textwrap.fill(flagsMsgLine, subsequent_indent=' // '))
301 write("")
347 write( " f = function {} () {{".format(fnname(flags)))
348 write( " var local = 888;")
349 write( " deopt = {};".format("true" if deopt else "false"))
351 write( " try {")
352 write( " counter++;")
356 write( " {} 4 + {increaseAndReturn15};".format(resultTo, **fragments))
364 write( " {} 4 + {increaseAndThrow42};".format(resultTo, **fragments))
369 write( " {} 4 + {increaseAndReturn15};".format(resultTo, **fragments))
[all …]
/external/ImageMagick/PerlMagick/
DMANIFEST38 t/bzlib/write.t
49 t/fpx/write.t
54 t/hdf/write.t
106 t/jbig/write.t
120 t/jng/write.t
124 t/jpeg/write.t
142 t/png/write-16.t
143 t/png/write.t
148 t/ps/write.t
151 t/rad/write.t
[all …]
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
DXMPSerializerRDF.java120 write(tailStr); in serialize()
247 write(PACKET_HEADER); in serializeAsRDF()
253 write(RDF_XMPMETA_START); in serializeAsRDF()
257 write(XMPMetaFactory.getVersionInfo().getMessage()); in serializeAsRDF()
259 write("\">"); in serializeAsRDF()
264 write(RDF_RDF_START); in serializeAsRDF()
279 write(RDF_RDF_END); in serializeAsRDF()
284 write(RDF_XMPMETA_END); in serializeAsRDF()
323 write(RDF_SCHEMA_START); // Special case an empty XMP object. in serializePrettyRDFSchemas()
325 write("/>"); in serializePrettyRDFSchemas()
[all …]
/external/libxml2/
Dgentest.py419 test.write("#ifdef %s\n" % (modules_defines[module]))
421 test.write("""
430 test.write("#endif\n\n")
486 test.write(line)
497 test.write("/* CUT HERE: everything below that line is generated */\n")
565 test.write("#ifdef %s\n" % (modules_defines[module]))
567 test.write("#define gen_nb_%s %d\n" % (name, len(vals)))
568 test.write("""static %s gen_%s(int no, int nr ATTRIBUTE_UNUSED) {\n""" %
572 test.write(" if (no == %d) return(%s);\n" % (i, value))
574 test.write(""" return(0);
[all …]
DgenUnicode.py210 header.write(
238 output.write(
284 output.write(',\n')
287 output.write(' {"%s", xmlUCSIs%s}' % (block, name))
288 output.write('};\n\n')
290 output.write('static xmlUnicodeRange xmlUnicodeCats[] = {\n')
294 output.write(',\n')
297 output.write(' {"%s", xmlUCSIsCat%s}' % (name, name))
298 output.write('};\n\n')
323 output.write(pline + " };\n")
[all …]
/external/tpm2/generator/
Dcommand_generator.py421 out_file.write(self._MARSHAL_COMMAND_START % {
425 out_file.write('\n // Marshal response handles.')
431 out_file.write(self._PARAMETERSIZE_CHECK)
433 out_file.write('\n // Marshal response parameters.')
438 out_file.write(self._MARSHAL_END)
452 out_file.write(self._UNMARSHAL_COMMAND_START % {
455 out_file.write('\n // Get request handles from request_handles array.')
457 out_file.write(self._SET_COMMAND_HANDLE % {'field_name': handle['name'],
460 out_file.write('\n // Unmarshal request parameters.')
466 out_file.write(self._UNMARSHAL_END)
[all …]
/external/v8/src/inspector/build/
Dgenerate_protocol_externs.py109 output_file.write(
129 output_file.write("\n\n/**\n * @constructor\n*/\n")
130 output_file.write("Protocol.%sAgent = function(){};\n" % domain_name)
134 output_file.write("\n/**\n")
143 …output_file.write(" * @param {%s=} opt_%s\n" % (param_type(domain_name, in_param), in_param["name"…
146 … output_file.write(" * @param {%s} %s\n" % (param_type(domain_name, in_param), in_param["name"]))
162 …output_file.write(" * @param {function(%s):%s} opt_callback\n" % (", ".join(returns), callback_ret…
164 output_file.write(" * @return {!Promise.<T>}\n")
165 output_file.write(" * @template T\n")
168 output_file.write(" */\n")
[all …]
/external/okhttp/okhttp-ws-tests/src/test/java/com/squareup/okhttp/internal/ws/
DWebSocketReaderTest.java52 data.write(ByteString.decodeHex("0a00")); // Empty ping. in controlFramesMustBeFinal()
62 data.write(ByteString.decodeHex("9a00")); // Empty ping, flag 1 set. in reservedFlagsAreUnsupported()
70 data.write(ByteString.decodeHex("aa00")); // Empty ping, flag 2 set. in reservedFlagsAreUnsupported()
78 data.write(ByteString.decodeHex("ca00")); // Empty ping, flag 3 set. in reservedFlagsAreUnsupported()
88 data.write(ByteString.decodeHex("8100")); in clientSentFramesMustBeMasked()
98 data.write(ByteString.decodeHex("8180")); in serverSentFramesMustNotBeMasked()
108 data.write(ByteString.decodeHex("8a7e007e")); in controlFramePayloadMax()
118 data.write(ByteString.decodeHex("810548656c6c6f")); // Hello in clientSimpleHello()
124 data.write(ByteString.decodeHex("818537fa213d7f9f4d5158")); // Hello in serverSimpleHello()
130 data.write(ByteString.decodeHex("817E000548656c6c6f")); // Hello in clientFramePayloadShort()
[all …]
/external/tagsoup/src/org/ccil/cowan/tagsoup/
DXMLWriter.java506 write("<?xml"); in startDocument()
508 write(" version=\"1.0\""); in startDocument()
510 write(" version=\""); in startDocument()
511 write(version); in startDocument()
512 write("\""); in startDocument()
515 write(" encoding=\""); in startDocument()
516 write(outputEncoding); in startDocument()
517 write("\""); in startDocument()
520 write(" standalone=\"yes\"?>\n"); in startDocument()
522 write(" standalone=\""); in startDocument()
[all …]
/external/okhttp/okio/okio/src/test/java/okio/
DGzipSourceTest.java32 gzipped.write(gzipHeader); in gunzip()
33 gzipped.write(deflated); in gunzip()
34 gzipped.write(gzipTrailer); in gunzip()
44 gzipped.write(gzipHeader); in gunzip_withHCRC()
46 gzipped.write(deflated); in gunzip_withHCRC()
47 gzipped.write(gzipTrailer); in gunzip_withHCRC()
53 gzipped.write(gzipHeaderWithFlags((byte) 0x04)); in gunzip_withExtra()
55 gzipped.write("blubber".getBytes(UTF_8), 0, 7); in gunzip_withExtra()
56 gzipped.write(deflated); in gunzip_withExtra()
57 gzipped.write(gzipTrailer); in gunzip_withExtra()
[all …]
/external/skia/tools/lua/
Dpaths_agg.lua15 io.write("Number of clips: ", clips, "\n");
16 io.write("Number of draws: ", draws, "\n");
17 io.write("Number of clipped paths: ", clipPaths, "\n");
18 io.write("Number of drawn paths: ", drawPaths, "\n");
19 io.write("Number of clipped software paths: ", swClipPaths, "\n");
20 io.write("Number of drawn software paths: ", swDrawPaths, "\n");
22 io.write("\n")
24 io.write("Number of SKPs total: ", skpsTotal, "\n")
25 io.write("Number of SKPs that draw paths: ", skpsWithPath, "\n")
26 io.write("Number of SKPs that draw SW paths: ", skpsWithSWPath, "\n")
[all …]

12345678910>>...191