Searched refs:Write (Results 1 - 25 of 490) sorted by relevance

1234567891011>>

/external/ImageMagick/PerlMagick/demo/
H A Dsteganography.pl17 $image->Write('model.png');
18 $image->Write('win:');
25 $stegano->Write('stegano.gif');
26 $stegano->Write('win:');
H A Dbutton.pl14 $q->Write('button.gif');
15 $q->Write('win:');
H A Dshadow-text.pl14 $image->Write('shadow.gif');
15 $image->Write('win:');
H A Dpixel-fx.pl51 $dest->Write('win:');
52 $dest->Write('pixel-fx.gif');
H A Dsingle-pixels.pl46 $im->Write('win:');
47 $im->Write('single-pixels.gif');
/external/sfntly/cpp/src/sfntly/port/
H A Doutput_stream.h32 virtual void Write(ByteVector* buffer) = 0;
33 virtual void Write(byte_t b) = 0;
35 // Note: C++ port offered both versions of Write() here. The first one is
38 virtual void Write(ByteVector* buffer, int32_t offset, int32_t length) = 0;
41 virtual void Write(byte_t* buffer, int32_t offset, int32_t length) = 0;
H A Dmemory_output_stream.h37 virtual void Write(ByteVector* buffer);
38 virtual void Write(ByteVector* buffer, int32_t offset, int32_t length);
39 virtual void Write(byte_t* buffer, int32_t offset, int32_t length);
40 virtual void Write(byte_t b);
/external/sfntly/cpp/src/sfntly/data/
H A Dfont_output_stream.cc32 void FontOutputStream::Write(byte_t b) { function in class:sfntly::FontOutputStream
34 stream_->Write(b);
39 void FontOutputStream::Write(ByteVector* b) { function in class:sfntly::FontOutputStream
41 Write(b, 0, b->size());
46 void FontOutputStream::Write(ByteVector* b, int32_t off, int32_t len) { function in class:sfntly::FontOutputStream
58 stream_->Write(b, off, len);
62 void FontOutputStream::Write(byte_t* b, int32_t off, int32_t len) { function in class:sfntly::FontOutputStream
73 stream_->Write(b, off, len);
78 Write(c);
82 Write((byte_
[all...]
/external/compiler-rt/test/asan/TestCases/Darwin/
H A Dsegv_read_write.c10 __attribute__((noinline)) void Write(int *ptr) { *ptr = 0; } function
21 Write((int *)p);
/external/compiler-rt/test/asan/TestCases/Linux/
H A Dsegv_read_write.c10 __attribute__((noinline)) void Write(int *ptr) { *ptr = 0; } function
21 Write((int *)p);
H A Dscariness_score_test.cc43 enum ReadOrWrite { Read = 0, Write = 1 }; enumerator in enum:ReadOrWrite
139 case 3: HeapBuferOverflow<short>(0, Write); break;
140 case 4: HeapBuferOverflow<int64_t>(2, Write); break;
141 case 5: HeapBuferOverflow<S32>(4, Write); break;
143 case 7: HeapUseAfterFree<int>(0, Write); break;
145 case 9: HeapUseAfterFree<S32>(0, Write); break;
146 case 10: StackBufferOverflow<char>(0, Write); break;
148 case 12: StackBufferOverflow<int>(4, Write); break;
150 case 14: StackUseAfterReturn<S32>(0, Write); break;
/external/lzma/CPP/7zip/Archive/Common/
H A DDummyOutStream.cpp7 STDMETHODIMP CDummyOutStream::Write(const void *data, UInt32 size, UInt32 *processedSize) function in class:CDummyOutStream
12 res = _stream->Write(data, size, &realProcessedSize);
H A DOutStreamWithCRC.cpp7 STDMETHODIMP COutStreamWithCRC::Write(const void *data, UInt32 size, UInt32 *processedSize) function in class:COutStreamWithCRC
11 result = _stream->Write(data, size, &size);
/external/syslinux/com32/lib/sys/
H A Dline_input.c44 ssize_t(*const Write) (struct file_info *, const void *, size_t) =
61 Write(fp, "\n", 1);
68 Write(fp, "\b \b", 3);
76 Write(fp, "\b \b", 3);
83 Write(fp, buf, 1);
/external/curl/lib/
H A Dmk-ca-bundle.vbs69 ' Write received data to file if enabled
72 myFh.Write myCdData
106 myFh.Write "##" & vbLf
107 myFh.Write "## " & myCaFile & " -- Bundle of CA Root Certificates" & vbLf
108 myFh.Write "##" & vbLf
109 myFh.Write "## Converted at: " & Now & vbLf
110 myFh.Write "##" & vbLf
111 myFh.Write "## This is a bundle of X.509 certificates of public Certificate Authorities" & vbLf
112 myFh.Write "## (CA). These were automatically extracted from Mozilla's root certificates" & vbLf
113 myFh.Write "## fil
[all...]
/external/google-breakpad/src/processor/
H A Dsimple_serializer-inl.h59 static char *Write(bool boolean, char *dest) { function in class:google_breakpad::SimpleSerializer
76 static char *Write(const string &str, char *dest) { function in class:google_breakpad::SimpleSerializer
90 static char *Write(const char *cstring, char *dest) { function in class:google_breakpad::SimpleSerializer
107 static char *Write(const Line &line, char *dest) { function in class:google_breakpad::SimpleSerializer
108 dest = SimpleSerializer<MemAddr>::Write(line.address, dest);
109 dest = SimpleSerializer<MemAddr>::Write(line.size, dest);
110 dest = SimpleSerializer<int32_t>::Write(line.source_file_id, dest);
111 dest = SimpleSerializer<int32_t>::Write(line.line, dest);
126 static char *Write(const PublicSymbol &pubsymbol, char *dest) { function in class:google_breakpad::SimpleSerializer
127 dest = SimpleSerializer<string>::Write(pubsymbo
152 static char *Write(const WindowsFrameInfo &wfi, char *dest) { function in class:google_breakpad::SimpleSerializer
177 static char *Write(const linked_ptr<Line> &lineptr, char *dest) { function in class:google_breakpad::SimpleSerializer
200 static char *Write(const Function &func, char *dest) { function in class:google_breakpad::SimpleSerializer
222 static char *Write(const linked_ptr<Function> &func, char *dest) { function in class:google_breakpad::SimpleSerializer
237 static char *Write(const linked_ptr<PublicSymbol> &pubsymbol, char *dest) { function in class:google_breakpad::SimpleSerializer
251 static char *Write(const linked_ptr<WindowsFrameInfo> &wfi, char *dest) { function in class:google_breakpad::SimpleSerializer
[all...]
H A Dsimple_serializer.h53 // Write 'item' to memory location 'dest', and return to the "end" address of
55 static char *Write(const Type &item, char *dest) { function in class:google_breakpad::SimpleSerializer
/external/compiler-rt/test/profile/
H A Dinstrprof-without-libc.c33 int Write = __llvm_profile_write_buffer(Buffer); local
34 if (Write)
35 return Write;
/external/compiler-rt/test/asan/TestCases/Windows/
H A Dcrash_read_write.cc10 __attribute__((noinline)) void Write(int *ptr) { *ptr = 0; } function
24 Write((int *)p);
/external/webrtc/webrtc/modules/video_processing/test/
H A DwriteYUV420file.m12 % Write luminance
15 % Write U channel
18 % Write V channel
/external/libchrome/base/json/
H A Djson_writer_unittest.cc18 EXPECT_TRUE(JSONWriter::Write(*Value::CreateNullValue(), &output_js));
22 EXPECT_TRUE(JSONWriter::Write(DictionaryValue(), &output_js));
26 EXPECT_TRUE(JSONWriter::Write(ListValue(), &output_js));
30 EXPECT_TRUE(JSONWriter::Write(FundamentalValue(42), &output_js));
34 EXPECT_TRUE(JSONWriter::Write(FundamentalValue(true), &output_js));
38 EXPECT_TRUE(JSONWriter::Write(FundamentalValue(1.0), &output_js));
42 EXPECT_TRUE(JSONWriter::Write(FundamentalValue(0.2), &output_js));
46 EXPECT_TRUE(JSONWriter::Write(FundamentalValue(-0.8), &output_js));
50 EXPECT_TRUE(JSONWriter::Write(StringValue("foo"), &output_js));
69 EXPECT_TRUE(JSONWriter::Write(root_dic
[all...]
/external/protobuf/csharp/src/Google.Protobuf/
H A DJsonFormatter.cs207 writer.Write(customDiagnosticMessage.ToDiagnosticString());
211 writer.Write("{ ");
213 writer.Write(writtenFields ? " }" : "}");
239 writer.Write(PropertySeparator);
243 writer.Write(NameValueSeparator);
331 writer.Write("null");
389 writer.Write((bool)value ? "true" : "false");
394 writer.Write('"');
395 writer.Write(((ByteString)value).ToBase64());
396 writer.Write('"');
[all...]
/external/v8/tools/clang/blink_gc_plugin/
H A DJsonWriter.h22 Write(key);
39 void Write(const size_t val) { function in class:JsonWriter
43 void Write(const std::string& val) { function in class:JsonWriter
47 void Write(const std::string& key, const size_t val) { function in class:JsonWriter
51 void Write(const std::string& key, const std::string& val) { function in class:JsonWriter
/external/protobuf/csharp/src/AddressBook/
H A DAddPerson.cs47 output.Write("Enter person ID: ");
50 output.Write("Enter name: ");
53 output.Write("Enter email address (blank for none): ");
62 output.Write("Enter a phone number (or leave blank to finish): ");
71 output.Write("Is this a mobile, home, or work phone? ");
85 output.Write("Unknown phone type. Using default.");
124 // Write the new address book back to disk.
/external/flatbuffers/python/flatbuffers/
H A Dencode.py25 def Write(packer_type, buf, head, n): function
26 """ Write encodes `n` at buf[head:] using `packer_type`. """

Completed in 566 milliseconds

1234567891011>>