Home
last modified time | relevance | path

Searched full:writing (Results 1 – 25 of 14979) sorted by relevance

12345678910>>...600

/external/swiftshader/third_party/llvm-7.0/llvm/docs/
DWritingAnLLVMPass.rst2 Writing an LLVM Pass
21 <writing-an-llvm-pass-ModulePass>` , :ref:`CallGraphSCCPass
22 <writing-an-llvm-pass-CallGraphSCCPass>`, :ref:`FunctionPass
23 <writing-an-llvm-pass-FunctionPass>` , or :ref:`LoopPass
24 <writing-an-llvm-pass-LoopPass>`, or :ref:`RegionPass
25 <writing-an-llvm-pass-RegionPass>`, or :ref:`BasicBlockPass
26 <writing-an-llvm-pass-BasicBlockPass>` classes, which gives the system more
36 Quick Start --- Writing hello world
99 Which are needed because we are writing a `Pass
132 <writing-an-llvm-pass-FunctionPass>`. The different builtin pass subclasses
[all …]
/external/llvm/docs/
DWritingAnLLVMPass.rst2 Writing an LLVM Pass
21 <writing-an-llvm-pass-ModulePass>` , :ref:`CallGraphSCCPass
22 <writing-an-llvm-pass-CallGraphSCCPass>`, :ref:`FunctionPass
23 <writing-an-llvm-pass-FunctionPass>` , or :ref:`LoopPass
24 <writing-an-llvm-pass-LoopPass>`, or :ref:`RegionPass
25 <writing-an-llvm-pass-RegionPass>`, or :ref:`BasicBlockPass
26 <writing-an-llvm-pass-BasicBlockPass>` classes, which gives the system more
36 Quick Start --- Writing hello world
99 Which are needed because we are writing a `Pass
132 <writing-an-llvm-pass-FunctionPass>`. The different builtin pass subclasses
[all …]
/external/skqp/src/sksl/
DSkSLMain.cpp70 printf("error writing '%s'\n", argv[2]); in main()
79 printf("error writing '%s'\n", argv[2]); in main()
86 printf("error writing '%s'\n", argv[2]); in main()
95 printf("error writing '%s'\n", argv[2]); in main()
102 printf("error writing '%s'\n", argv[2]); in main()
111 printf("error writing '%s'\n", argv[2]); in main()
118 printf("error writing '%s'\n", argv[2]); in main()
128 printf("error writing '%s'\n", argv[2]); in main()
135 printf("error writing '%s'\n", argv[2]); in main()
145 printf("error writing '%s'\n", argv[2]); in main()
/external/skia/src/sksl/
DSkSLMain.cpp70 printf("error writing '%s'\n", argv[2]); in main()
79 printf("error writing '%s'\n", argv[2]); in main()
86 printf("error writing '%s'\n", argv[2]); in main()
95 printf("error writing '%s'\n", argv[2]); in main()
102 printf("error writing '%s'\n", argv[2]); in main()
111 printf("error writing '%s'\n", argv[2]); in main()
118 printf("error writing '%s'\n", argv[2]); in main()
128 printf("error writing '%s'\n", argv[2]); in main()
135 printf("error writing '%s'\n", argv[2]); in main()
145 printf("error writing '%s'\n", argv[2]); in main()
/external/libxml2/doc/tutorial/
Dar01s07.html1Writing Attribute</title><meta name="generator" content="DocBook XSL Stylesheets V1.61.2"><link re…
2 Writing an attribute is similar to writing text to a new element. In
30 …08.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">Writing element content�<…
Dar01s06.html1Writing element content</title><meta name="generator" content="DocBook XSL Stylesheets V1.61.2"><l…
2 Writing element content uses many of the same steps we used above
35 …ef="index.html">Home</a></td><td width="40%" align="right" valign="top">�Writing Attribute</td></t…
/external/python/cpython3/Modules/_io/clinic/
D_iomodule.c.h20 "mode. Other common values are \'w\' for writing (truncating the file if\n"
21 "it already exists), \'x\' for creating and writing to a new file, and\n"
26 "current locale encoding. (For reading and writing raw bytes use binary\n"
33 "\'w\' open for writing, truncating the file first\n"
34 "\'x\' create a new file and open it for writing\n"
35 "\'a\' open for writing, appending to the end of the file if it exists\n"
38 "\'+\' open a disk file for updating (reading and writing)\n"
116 "through which the standard file operations such as reading and writing\n"
125 "reading and writing. For strings StringIO can be used like a file\n"
/external/google-breakpad/src/client/mac/handler/
Dexception_handler.h70 // processing of an exception. A FilterCallback is called before writing
76 // will immediately report the exception as unhandled without writing a
93 // This bypasses the minidump file writing and simply gives the client
101 // Creates a new ExceptionHandler instance to handle writing minidumps.
103 // is called after writing the dump file, as described above.
114 // A special constructor if we want to bypass minidump writing and
186 // All minidump writing goes through this one routine.
262 // A mutex for use when writing out a minidump that was requested on a
266 // True, if we're using the mutext to indicate when mindump writing occurs
/external/u-boot/board/freescale/mx53loco/
Dmx53loco.c216 printf("Writing to BUCKCORE_REG failed: %d\n", ret); in power_init()
224 printf("Writing to SUPPLY_REG failed: %d\n", ret); in power_init()
231 printf("Writing to BUCKPRO_REG failed: %d\n", ret); in power_init()
237 printf("Writing to SUPPLY_REG failed: %d\n", ret); in power_init()
260 printf("Writing to REG_SW_0 failed: %d\n", ret); in power_init()
269 printf("Writing to REG_SW_1 failed: %d\n", ret); in power_init()
278 printf("Writing to REG_POWER_CTL2 failed: %d\n", ret); in power_init()
287 printf("Writing to REG_MODE_0 failed: %d\n", ret); in power_init()
295 printf("Writing to SWBST_CTRL failed: %d\n", ret); in power_init()
/external/python/cpython3/Modules/_io/
D_iomodule.c64 "separation between reading and writing to streams; implementations are\n"
68 "writing of raw bytes to a stream. FileIO subclasses RawIOBase to provide\n"
121 mode. Other common values are 'w' for writing (truncating the file if
122 it already exists), 'x' for creating and writing to a new file, and
127 current locale encoding. (For reading and writing raw bytes use binary
134 'w' open for writing, truncating the file first
135 'x' create a new file and open it for writing
136 'a' open for writing, appending to the end of the file if it exists
139 '+' open a disk file for updating (reading and writing)
217 through which the standard file operations such as reading and writing
[all …]
/external/puffin/src/
Dpuff_data.h18 // Used for reading/writing only one literal.
21 // Used for reading/writing literals.
24 // Used for reading/writing length/distance pairs.
27 // Used for reading/writing a buffer as the Huffman table. The
32 // Used for reading/writing an end of block symbol. End of block can
/external/toybox/toys/other/
Ddevmem.c23 int writing = toys.optc == 3, page_size = getpagesize(), bytes = 4, fd; in devmem_main() local
37 if (writing) data = atolx_range(toys.optargs[2], 0, (1ULL<<(8*bytes))-1); in devmem_main()
40 fd = xopen("/dev/mem", (writing ? O_RDWR : O_RDONLY) | O_SYNC); in devmem_main()
43 map = xmmap(NULL, map_len, writing ? PROT_WRITE : PROT_READ, MAP_SHARED, fd, in devmem_main()
49 if (writing) { in devmem_main()
/external/guava/guava/src/com/google/common/io/
DCharSink.java10 * Unless required by applicable law or agreed to in writing, software
57 * Opens a new {@link Writer} for writing to this sink. This method should return a new,
67 * Opens a new buffered {@link Writer} for writing to this sink. The returned stream is not
88 * @throws IOException if an I/O error in the process of writing to this sink
110 * @throws IOException if an I/O error occurs in the process of writing to this sink
120 * @throws IOException if an I/O error occurs in the process of writing to this sink
146 * writing to this sink
/external/python/cpython2/Modules/_io/
D_iomodule.c61 "separation between reading and writing to streams; implementations are\n"
65 "writing of raw bytes to a stream. FileIO subclasses RawIOBase to provide\n"
189 "mode. Other common values are 'w' for writing (truncating the file if\n"
193 "encoding used is platform dependent. (For reading and writing raw\n"
201 "'w' open for writing, truncating the file first\n"
202 "'a' open for writing, appending to the end of the file if it exists\n"
205 "'+' open a disk file for updating (reading and writing)\n"
273 "through which the standard file operations such as reading and writing\n"
282 "reading and writing. For strings StringIO can be used like a file\n"
299 int reading = 0, writing = 0, appending = 0, updating = 0; in io_open() local
[all …]
/external/clang/test/SemaCXX/
Dwarn-thread-safety-analysis.cpp431 … // expected-warning {{writing variable 'pgb_field' requires holding mutex 'sls_mu2' exclusively}} in testFoo()
433 …// expected-warning {{writing the value pointed to by 'pgb_field' requires holding mutex 'sls_mu' … in testFoo()
437 …// expected-warning {{writing the value pointed to by 'pgb_field' requires holding mutex 'sls_mu' … in testFoo()
447 … // expected-warning {{writing variable 'gb_field' requires holding mutex 'sls_mu' exclusively}} in testFoo()
480 // expected-warning{{writing variable 'sls_guard_var' requires holding any mutex exclusively}} in gb_bad_0()
490 …// expected-warning {{writing variable 'sls_guardby_var' requires holding mutex 'sls_mu' exclusive… in gb_bad_2()
500 …// expected-warning {{writing the value pointed to by 'pgb_gvar' requires holding any mutex exclus… in gb_bad_4()
510 …// expected-warning {{writing the value pointed to by 'pgb_var' requires holding mutex 'sls_mu' ex… in gb_bad_6()
521 // expected-warning {{writing variable 'gb_field' requires holding mutex 'sls_mu'}} in gb_bad_8()
526 // expected-warning{{writing variable 'sls_guard_var' requires holding any mutex exclusively}} in gb_bad_9()
[all …]
/external/sl4a/ScriptingLayerForAndroid/src/org/connectbot/transport/
DAbsTransport.java11 * Unless required by applicable law or agreed to in writing, software
47 * where to start writing in the buffer
63 * when there is a problem writing after connection
73 * when there is a problem writing after connection
81 * when there is a problem writing after connection
/external/jacoco/org.jacoco.report/src/org/jacoco/report/csv/
DDelimitedWriter.java18 * Helper class for writing out CSV or tab delimited files.
74 * Error writing to the underlying writer object
90 * Error writing to the underlying writer object
106 * Error writing to the underlying writer object
118 * Error writing to the underlying writer object
131 * Error writing to the underlying writer object
/external/parameter-framework/upstream/test/functional-tests-legacy/PfwTestCase/Types/
DtRAW.py53 - Writing Raw / Reading Hex
54 - Writing Raw / Reading Dec
55 - Writing Real / Reading Hex
57 - Writing Raw / Reading Hex
58 - Writing Raw / Reading Dec
59 - Writing Real / Reading Hex
61 - Writing Raw / Reading Hex
62 - Writing Raw / Reading Dec
63 - Writing Real / Reading Hex
65 - Writing Raw
[all …]
/external/tagsoup/src/org/ccil/cowan/tagsoup/
DXMLWriter.java11 // unless required by applicable law or agreed to in writing, TagSoup
87 * <var>dataElement</var>, designed for writing elements that
121 * is derived from this class -- it is optimized for writing
163 * <p>Before writing a document, the client can also pre-map a prefix
354 * {@link #startDocument startDocument} method before writing
380 * {@link #endDocument endDocument} method after writing a
497 * writing the XML declaration, or if a handler further down
537 * writing the newline, or if a handler further down
569 * writing the start tag, or if a handler further down
611 * writing the end tag, or if a handler further down
[all …]
/external/python/cpython2/Demo/threads/
Dsync.py238 # If no thread is writing or waiting to write, returns immediately.
239 # Else blocks until no thread is writing or waiting to write. So
248 # If no thread is writing (has completed a .write_in, but hasn't yet
251 # the current writer completes writing or all the current readers
258 # writing. Then if some other thread is waiting to write, it's
264 # writing but wants to continue reading without other writers
431 self.nw = 0 # number writers either waiting to write or writing
432 self.writing = 0 # 1 iff some thread is writing
458 while self.writing or self.nr:
460 self.writing = 1
[all …]
/external/apache-commons-compress/src/main/java/org/apache/commons/compress/compressors/pack200/
DPack200CompressorOutputStream.java12 * Unless required by applicable law or agreed to in writing,
47 * @throws IOException if writing fails
60 * @throws IOException if writing fails
74 * @throws IOException if writing fails
89 * @throws IOException if writing fails
/external/protobuf/java/core/src/main/java/com/google/protobuf/
DByteOutput.java38 * writing:
55 * @throws IOException thrown if an error occurred while writing
70 * @throws IOException thrown if an error occurred while writing
85 * @throws IOException thrown if an error occurred while writing
99 * @throws IOException thrown if an error occurred while writing
113 * @throws IOException thrown if an error occurred while writing
/external/proguard/src/proguard/optimize/info/
DReadWriteFieldMarker.java45 private boolean writing = true; field in ReadWriteFieldMarker
64 writing = true; in visitConstantInstruction()
72 writing = false; in visitConstantInstruction()
80 writing = true; in visitConstantInstruction()
120 if (writing) in visitProgramField()
/external/epid-sdk/example/util/
Denvutil.h10 # Unless required by applicable law or agreed to in writing, software
32 This function may add or format the message before writing it out
40 This function may add or format the message before writing it out
48 This function will not add or format the message before writing it out
/external/grpc-grpc/test/core/util/
Dtrickle_endpoint.cc11 * Unless required by applicable law or agreed to in writing, software
45 bool writing; member
137 te->writing = false; in te_finish_write()
165 te->writing = false; in grpc_trickle_endpoint_create()
176 if (!te->writing && te->write_buffer.length > 0) { in grpc_trickle_endpoint_trickle()
185 te->writing = true; in grpc_trickle_endpoint_trickle()

12345678910>>...600