HomeSort by relevance Sort by last modified time
    Searched defs:write (Results 226 - 250 of 4398) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /development/tools/mkstubs/src/com/android/mkstubs/sourcer/
Output.java 23 * An {@link Output} objects is an helper to write to a character stream {@link Writer}.
26 * to help them write to the underlying stream.
37 * @param writer The writer to write to. Could be a file, a string, etc.
51 public void write(String format, Object... args) { method in class:Output
53 mWriter.write(String.format(format, args));
62 * @param c The character to write.
64 public void write(char c) { method in class:Output
65 write(Character.toString(c));
71 * @param sb The {@link StringBuilder#toString()} method is used to ge the string to write.
73 public void write(StringBuilder sb) method in class:Output
    [all...]
  /device/google/contexthub/util/common/
file.cpp 81 ssize_t File::write(const void *data, size_t size) { function in class:android::File
82 return ::write(mFd, data, size);
ring.cpp 37 ssize_t RingBuffer::write(const sensors_event_t *ev, size_t size) { function in class:android::RingBuffer
114 void LockfreeBuffer::write(const sensors_event_t *ev, size_t size) { function in class:android::LockfreeBuffer
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
code.py 121 The output is written by self.write(), below.
139 map(self.write, list)
146 The output is written by self.write(), below.
162 map(self.write, list)
164 def write(self, data): member in class:InteractiveInterpreter
165 """Write a string.
171 sys.stderr.write(data)
221 self.write("Python %s on %s\n%s\n(%s)\n" %
225 self.write("%s\n" % str(banner))
240 self.write("\n")
    [all...]
quopri.py 43 """Read 'input', apply quoted-printable encoding, and write to 'output'.
45 'input' and 'output' are files with readline() and write() methods.
56 output.write(odata)
59 def write(s, output=output, lineEnd='\n'): function in function:encode
63 output.write(s[:-1] + quote(s[-1]) + lineEnd)
65 output.write(quote(s) + lineEnd)
67 output.write(s + lineEnd)
88 # First, write out the previous line
90 write(prevline)
97 write(thisline[:MAXLINESIZE-1], lineEnd='=\n')
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_pdb.py 26 def write(x): function
39 ... 'for i in range(5): write(i)',
48 (Pdb) for i in range(5): write(i)
test_print.py 117 def write(self, what): member in class:TestPrint.test_mixed_args.Recorder
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/scripts/
cleanfuture.py 55 sys.stderr.write(msg)
126 ff.write(g)
257 def write(self, f): member in class:FutureFinder
273 f.write(self.therest)
  /external/annotation-tools/scene-lib/test/annotations/tests/executable/
JavapDemo.java 26 IndexFileWriter.write(scene, new OutputStreamWriter(System.out));
RegurgitateDemo.java 22 IndexFileWriter.write(scene, new FileWriter("test2-3.jaif"));
  /external/antlr/antlr-3.4/runtime/Python/antlr3/
main.py 113 self.stdout.write("\nBye.\n")
174 def write(self, options, text): member in class:_Main
176 self.stdout.write(text)
180 self.write(options, text + '\n')
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/io/
DigestOutputStream.java 19 public void write(int b) method in class:DigestOutputStream
25 public void write( method in class:DigestOutputStream
MacOutputStream.java 19 public void write(int b) method in class:MacOutputStream
25 public void write( method in class:MacOutputStream
  /external/caliper/caliper/src/main/java/com/google/caliper/json/
ImmutableListTypeAdatperFactory.java 55 @Override public void write(JsonWriter out, T value) throws IOException {
57 arrayListAdapter.write(out, arrayList);
ImmutableMapTypeAdapterFactory.java 55 @Override public void write(JsonWriter out, T value) throws IOException {
57 hashMapAdapter.write(out, hashMap);
NaturallySortedMapTypeAdapterFactory.java 59 @Override public void write(JsonWriter out, T value) throws IOException {
61 mapAdapter.write(out, treeMap);
  /external/chromium-trace/catapult/common/py_vulcanize/third_party/rcssmin/_setup/py2/term/
_term.py 86 def write(fmt, **kwargs): function
87 """ Write stuff on the terminal """
90 _sys.stdout.write(fmt % parm)
95 """ Write something in green on screen """
100 """ Write something in red on the screen """
105 """ Write something in yellow on the screen """
111 write(fmt, **kwargs)
112 _sys.stdout.write("\n")
  /external/chromium-trace/catapult/common/py_vulcanize/third_party/rcssmin/_setup/py3/term/
_term.py 87 def write(fmt, **kwargs): function
88 """ Write stuff on the terminal """
91 _sys.stdout.write(fmt % parm)
96 """ Write something in green on screen """
101 """ Write something in red on the screen """
106 """ Write something in yellow on the screen """
112 write(fmt, **kwargs)
113 _sys.stdout.write("\n")
  /external/clang/test/OpenMP/
atomic_messages.cpp 102 T write() { function
104 // Test for atomic write
105 #pragma omp atomic write
106 // expected-error@+2 {{the statement for 'atomic write' must be an expression statement of form 'x = expr;', where x is a lvalue expression with scalar type}}
109 // expected-error@+1 {{directive '#pragma omp atomic' cannot contain more than one 'write' clause}}
110 #pragma omp atomic write write
112 #pragma omp atomic write
113 // expected-error@+2 {{the statement for 'atomic write' must be an expression statement of form 'x = expr;', where x is a lvalue expression with scalar type}}
116 #pragma omp atomic write
128 int write() { function
    [all...]
  /external/conscrypt/libcore-stub/src/main/java/libcore/java/io/
NullPrintStream.java 128 public void write(byte[] buffer, int offset, int length) {} method in class:NullPrintStream
131 public void write(int oneByte) {} method in class:NullPrintStream
  /external/dagger2/compiler/src/main/java/dagger/internal/codegen/writer/
ArrayTypeName.java 34 public Appendable write(Appendable appendable, Context context) throws IOException { method in class:ArrayTypeName
35 return componentType.write(appendable, context).append("[]");
WildcardName.java 55 public Appendable write(Appendable appendable, Context context) throws IOException { method in class:WildcardName
59 extendsBound.get().write(appendable, context);
63 superBound.get().write(appendable, context);
  /external/doclava/src/com/google/doclava/
AtLinksNavTree.java 31 * Write a JSON dictionary of Android package/class/member info. The hierarchy will follow this
69 ClearPage.write(data, "at_links_navtree.cs", output_path);
  /external/flac/include/FLAC/
callback.h 76 * or write a wrapper. The same is true for feof() since this is usually
104 /** Signature for the write callback.
108 * \param ptr The address of the write buffer.
172 FLAC__IOCallback_Write write; member in struct:__anon20561
  /external/glide/library/src/main/java/com/bumptech/glide/load/engine/cache/
DiskCache.java 12 * An interface to actually write data to a key in the disk cache.
16 * Writes data to the file and returns true if the write was successful and should be committed, and
17 * false if the write should be aborted.
19 * @param file The File the Writer should write to.
21 boolean write(File file); method in interface:DiskCache.Writer
28 * Note - This is potentially dangerous, someone may write a new value to the file at any point in timeand we
38 * Write to a key in the cache. {@link Writer} is used so that the cache implementation can perform actions after
39 * the write finishes, like commit (via atomic file rename).
41 * @param key The key to write to.
42 * @param writer An interface that will write data given an OutputStream for the key
    [all...]

Completed in 593 milliseconds

1 2 3 4 5 6 7 8 91011>>